Show Posts
|
|
Pages: [1] 2
|
|
1
|
Using Arduino / Audio / Re: Arduino due - 32 bits ?
|
on: April 14, 2012, 11:15:54 am
|
|
i have seen NOTHING but the other day I saw a BOOK TITLE on amazon for a book called "PRO ARDUINO"
its supposed to be released in July one of the things the books talks about is the new 32 bit arduino.
"You'll learn all about the changes in Arduino 1.0 and the new ARM-based Arduino Due. "
so I guess there must be people getting them!
book=Pro Arduino [Paperback] Rick Anderson (Author), Dan Cervo (Author)
|
|
|
|
|
4
|
Using Arduino / Project Guidance / moving project from Nano to custom pcbs..which chip???
|
on: September 12, 2011, 04:59:03 pm
|
|
I have been developing an open-source synthesizer project that I hope to be releasing as a product soon. Inititally all testing and building was done with a pcb which had a header for an arduino Nano to PLUG into .However for final pcbs, we want to just make a pcb with either an SMT or thru hole arduino chip, a usb to serial chip, a crystal and a regulator...
My question is...to replicate the Nano (version 3) can I just use ANY atmega 328 chip and the schematic which is linked on the Arduino site? (the schematic says ATMEGA 168-20AU for some reason but at the top of the schematic it DOES say NANO 3.0)
I would appreciate ANY advice on which chips to use, or any quirks of getting Arduino to migrate well to a custom pcb.
I figured I would include the ISP header for bootloading.
even after the cost of a pcb, parts and passives, I still see this as being cheaper and more flexible than a 30 dollar Nano.
thanks so much for any help
|
|
|
|
|
6
|
Using Arduino / Programming Questions / Re: TVout.H problems!!
|
on: April 13, 2011, 08:08:05 pm
|
|
sorry i was reffering to other peoples code and i wasnt sure if i could post that
here goes:
#include <TVout.h> #include <fix_fft.h> TVout TV; char im[128], data[128], lastpass[64]; char x=32, ylim=90; int i=0,val; void setup() { TV.begin(_NTSC,128,54); // Initialize TV output, 128x96. TV.print_str(2,2," Realtime Arduino"); // TVout lib uses x,y for print TV.print_str(2,11," Spectrum Analyzer"); // statements. 8x8 default font. analogReference(DEFAULT); // Use default (5v) aref voltage. for (int z=0; z<64; z++) {lastpass[z]=80;}; // fill the lastpass[] array with dummy data }; void loop() { for (i=0; i < 128; i++){ // We don't go for clean timing here, it's val = analogRead(0); // better to get somewhat dirty data fast data = val/4 -128; // than to get data that's lab-accurate im = 0; // but too slow, for this application. };
fix_fft(data,im,7,0); for (i=1; i< 64;i++){ // In the current design, 60Hz and noise data = sqrt(data * data + im * im); // in general are a problem. Future designs TV.draw_line(i+x,lastpass,i+x,ylim,0); // and code may fix this, but for now, I TV.draw_line(i+x,ylim,i+x,ylim-data,1); // skip displaying the 0-500hz band completely. lastpass=ylim-data; // if you insist, initialize the loop with 0 }; // rather than 1. };
|
|
|
|
|
7
|
Using Arduino / Programming Questions / TVout.H problems!!
|
on: April 13, 2011, 12:16:55 pm
|
|
Hello There . I would really like to get the FFT frequency analyzer project working , or the Arduino PONG sketch working but anything with TV Out is giving me problems like:
'class TVout' has no member named 'begin'
'class TVout' has no member named 'vert_res'
etc...
what should I do?
thanks
(i am trying with arudino version 22)
|
|
|
|
|
15
|
Community / Exhibition / Gallery / Re: 8 bit Arduino FFT library on Google Code
|
on: March 29, 2011, 01:47:59 am
|
|
how hard would it be to use this in a real time audio effect? or to create a sketch which read incoming analog values and using the library, could split the frequencies into multiple outputs?
i have never had the chance to use FFT but i have read about it. i just wonder what you can actually do with it! thanks
|
|
|
|
|