wow, a mind controlled robot sounds really cool,
how much does it cost in total? also what is the range of it? (as in is it wireless or not)
how much does it cost in total? also what is the range of it? (as in is it wireless or not)
The headset cost me just under $60, used, from the US.wow, a mind controlled robot sounds really cool,
how much does it cost in total? also what is the range of it? (as in is it wireless or not)
wow 50m. so (i am not trying to be silly) in theory could you put a cup of tea of coffee and tell the robot to bring the coffee to you while in bed?The headset cost me just under $60, used, from the US.
In the case of Spike's project, he bought a Bluetooth receiver to receive the signals from a Neurosky headset. Pretty expensive, he said, as is the Neurosky headset.
The Mindflex that I'll use, (which also uses the Neurosky chipset for processing), also uses 2.4GHz to transmit to the base unit originally, but apparently the headset's micro parses the raw data first, and doesn't send it all on to the base unit, so I'll be tacking into the Nerosky chip directly, then sending all of it's data out by way of a 433MHz APC220 RF transceiver module.
The raw data is then processed by the Arduino, using the Brain Library, and the rest is up to me.
The raw data from the Brain Library looks something like this:-
"signal strength, attention, meditation, delta, theta, low alpha, high alpha, low beta, high beta, low gamma, high gamma"
200,0,0,70022,1415627,296609,25469,7758,19291,6073,220596
200,0,0,156935,1214616,65576,66807,66404,93299,3214,115150
200,0,0,809665,189860,112964,133943,41532,31662,36654,108499
I jsut want to use the Alpha and Beta waves, to control the speed of a small motor, for starters, then go from there.
A couple of links, if you're interested:
This shows the hacking process:-
http://www.frontiernerds.com/brain-hack
And this is a series of short YouTube vids that I'm working my way through right now. There are 8 videos in all. (You'll need to view on YouTube directly to see the links to the other parts, 2 to 8.:-
So, to answer your cost question, the Arduino was $8, the headset was $60, the Arduino Brain Library was free, and the APC220 RF modules are about$20$40 a pair. The rest depends on exactly what you want to do. I'll use a PIC in the headset to send the raw data out via the APC220, then probably a PIC at the other end, after the Arduino, to control a small motor driver. PICs about $5 each.
Edit: I forgot to add - regarding range, the APC220 modules are very reliable at 50 metres, but have been known to work for up to 1km with direct line-of-sight. I use them a lot.
Very unlikely, with this type of system. About the best it could do is turn something on and off, or control speed of a motor. Sort of 1-channel. Also, from what I've seen, achieving the right levels of concentration and relaxation are pretty tricky. That would improve with practice, I imagine.wow 50m. so (i am not trying to be silly) in theory could you put a cup of tea of coffee and tell the robot to bring the coffee to you while in bed?
I don't intend to use the original Arduino UNO board much. I'm well set up for designing and etching my own PCBs, so I'll usually make a board to take an Arduino ATMega chip with a power supply to suit the requirements of the circuit I'm building. Same goes for 'shields'. I don't intend to do much with pre-built 'shields'. I'll incorporate whatever extra components and small modules that I need into my custom PCBs.I use Arduino but the power regulators on the Arduino boards cannot provide much current. If your design based on Arduino baord requires more current then these board will fail.
If your design doesn't require more current then you can use Arduino. mikroElektronika have Arduino UNO Click Shield and Mega Click Shield. These shields have sockets for mikroE Click boards. For example you could stack a Mega Click Shield on Arduino Mega2560 and then it can take 3 click boards and you could put a mikroE mikroSD Click, GSM3 Click and a Relay Click boards into the Mega Click shield's click sockets and make a GSM (SIM800H) based device control. You send a SMS to turn device 1 or 2 ON/OFF and the relays control the devices. The mobile number of the system and the SMS that the device have to send to owner if he/she requests the status of the device(s) can be stored in the SD Card.
You can also use FreeSoC development board with free Cypress softwares. For example if you want to design a 8 channel Tachometer, 2 channels for Low RPM and 6 channels for high RPM then you could implement 2 x 8 bit counters and 6 x 16 bit counters and a 16 bit Timer for generating 1 sec delay for counting the pulses and a UART module for outputting the RPM values and you can assign any function to any pin of the FreeSoC (It is a PSoC 5LP). You would have your own sysytem with the required features.
If you need say, 8 UART channels then you could implement it in FreeSoC.
Wow. It is amazing how much we have improved technology although i think you would need extreamly good concentration, so it wouldnt work very well (i would always crash it) with my adhd brainThis is what could be done, with a sophisticated setup:-
View it directly on YouTube to avoid that annoying black bar through the centre.
Yeah adhd is very annoyingYeah mate, I think I'll have that trouble with my old brain too.
I'd hate to have my life depending on it.
As an aside, I've been giving the Virtronics Arduino Simulator a good workout today. Great learning tool, and very easy to use. Only cost me $18, too.
I can get plenty of practice while waiting for the Arduino to arrive.
No. It's a pretty crude simulator, only really useful for learning the basics of Arduino commands. It clearly shows what output pins are high or low at any given moment, so it would be useful to a degree for diagnosis of that sort, and like any simulator, you can step through or run it in real time.Yeah adhd is very annoying
Anyway with the arduino simulator if for example, you have found or created a sketch to drive a old printer stepper motor (not one of the popular ebay steppers but some only mystery motor) and the sketch has an error, will it tell you what the exact error is and how to correct it?
Also that arduino programming circuit looks very good.
Unlikely, as it seems the pic and atmega architecture differ. What I was going to suggest was using the hex output. I have done that with JAL to a PIC instead of ASM or CThanks Rick, I appreciate the info. Good to hear that there's no loss of speed in that regard, unlike the old Basic Stamps and their tokenised, interpreted language.
Gotta get used to this new term 'sketch', too. I had to look it up yesterday.
I don't quite follow you. What's unlikely? (Sorry, I'm a bit slow today - too many late nights in the last week.)Unlikely, as it seems the pic and atmega architecture differ.
If you mean to the PIC, I always end up with a hex file to program into the PIC. All programs compile from high-level to asm to hex, whether using C or PICBasic.What I was going to suggest was using the hex output. I have done that with JAL to a PIC instead of ASM or C
Hi Steve - I meant that since the architecture of the two chips are different writing code for Arduino - taking that hex and trying to burn it onto a pic would not work.I don't quite follow you. What's unlikely?