Gryd3,
You are a gentleman and a scholar. Bless you. This information was truly valuable, and you explained it perfectly to someone who knows nothing about this stuff. After reading your posts I have a bit of a better grasp on things.
Here is the list of items I was considering:
Arduino starter kit (x1)
PIR motion sensor Sensor uses
[email protected] (x1)
Arduino music / sound shield (x1) (also considering
this sound shield instead)
(Note, description states: “The speaker is rated for 1W so if you want you can even stick a small amp between the shield and the speaker to boost up the volume “) would
this amp suffice?
Lithium Ion Battery 3.7V 6600mAh (x1)
This was the biggest battery I could find on aforementioned recommended sites... open to other suggestions here.
5 volt case fan (x2)
5mm red LED's 20mA 3000 mcd (for right eye sockets) (x2)
Sideglow cable: SGS4 4mm or 5/32" (for the left eye glass- see attached drawing). (x1)
I figured the sideglow cable would be better than EL tape or LED's since LEDs might be “spotty” over a large eye lens, and EL tape will be a battery drain. Happy to forgo this solution for something better...
Speaker .5W (8ohm) (x1)
Some questions:
- Is there an Arduino shield I should consider that has multiple capabilities that could consolidate some of these functions? If so, any recommendations?
- How do I know if a component is compatible with Arduino?
- Is there a better battery I should buy?
- Any other components / features you recommend? (on / off switch, etc.?)
I am happy to replace any component on this list. I don't know what I am doing so I just randomly put these on here. Anyway your professional experience is appreciated as always!
If you want to save some money, the Arduino starter kit can be swapped out for just an arduino.
http://www.amazon.com/Arduino-UNO-b...e=UTF8&qid=1464548088&sr=8-1&keywords=arduino
The starter kit will include some additional components and a book to provide you with some lessons into using an Arduino... If this is worth the additional $50, then by all means, jump on it. The difference in price can provide you with a wide range of miscellaneous parts. The most common you will be using to connect the arduino (or other microcontroller) to other devices will be resistors and transistors which you can buy handfuls of for only a couple dollars
Please note that the Arduino UNO is a 5V device... so it needs 5V for power, and for signalling. Some advanced users can actually alter the Arduino to run and provide on 3.3V, but this may not be a very friendly beginner project. The details are here :
https://learn.adafruit.com/arduino-tips-tricks-and-techniques/3-3v-conversion
Alternatively, there are dedicated components that will be able to convert the signalling between 3.3V and 5V, or if there are only a couple pins you can Do-it-Yourself pretty easily.
A pair of resistors setup as a 'voltage divider' can easily knock 5V down to 3.3V for signalling, but this is a onw-way solution. Signals can go from 5V to 3.3V with this setup, but can't go back on the same wire without additional parts!
You could also use a transistor... you can trigger it with a 3.3V device, and in turn, it will provide 5V to the 5V device... again, this is only one-way though.
Both of the simple DIY methods I mentioned are not for 'bi-directional' signals, but is fine for one-way communications.
As far as the PIR motion sensor is concerned, I double-checked. It currently runs on 5V, but can be converted to 3.3V if you bypass a component on it. As-is, this will be fine with the Arduino you linked without requiring any alterations or 'conversions' .
For your audio, I think you should bypass the 'GinSing' product, as it's focused more towards the synth of sounds than playback and would require you to code your arduino to produce the sounds you want instead of simply recording some tracks you want to play back.
Additionally, the audio component you found is out-of-stock, but I linked this one for you instead :
https://www.adafruit.com/product/1788
It's got a stronger amplifier on-board, so you don't need an external/additional amp. (The amp you linked was actually... only an amplified microphone... If you still have any interest for an amplifier by itself... look here :
https://learn.adafruit.com/adafruit-tpa2016-2-8w-agc-stereo-audio-amplifier)
Good find on the battery. It's a 6.6Ah pack at 3.7V .. To put this into perspective, a single AA battery runs at half the voltage and provides at most 2Ah. The same size back made of AA batteries would be 6Ah, but only 1.5V .. That battery pack you found has more than twice the power packed in the same size.
As far as batteries are concerned though... they are usually picked last. The project is first designed and planned with the goal of keeping consumption low. Once the project is designed, the draw is calculated or measured, and a battery that matches the desired performance is then chosen. Considering you have so much spare room inside the helmet though, you have tons of options... Regardless of the method though, if you opt for rechargeable batteries, you should locate a charger for it as well
** You will need a 'boost-converter' if you choose this battery. Most of your parts are all 5V, but your battery won't provide that... A small boost converter will take the 3.7V from the battery and ramp it up to 5V. This conversion is not free though... The converter will draw more current to compensate + additional current to run itself. So a 6600mAh - 3.7V battery will behave more like maybe a 4000mAh or 4500mAh - 5V battery. This is not a problem though. It's just how things work. If you get a battery with a higher than normal voltage, you would use a converter to bring the voltage back down... and if you happen to find/make a 5V battery, you run the risk of the 5V dropping as the battery is used... At least with using a converter or regulator and a battery that is higher or lower, you can make sure that 5V will *always* be provided to your product.
Lighting is entirely up to you
You can't really go wrong with it. Just make sure you can power the inverter for the EL panel, and the LEDs simply require resistors.
The speaker... oh the poor speaker... You found a 1W amp, and plan to connect a little 0.5W speaker to it? You can do this, but if you turn up the volume, you may hurt that little guy
You should oversize the speaker. Remember the rating on an amp is how much it can put out, and the rating on the speaker is how much it can handle.
Great picks to start. I would suggest a couple little tweaks as mentioned in the notes above. Please also note that you can be creative with your power supply and devices power needs...
For example:
You could use a 12V lead-acid battery to power the project. Connect it to a 5V regulator for the arduino, sensors, and LEDs.
At this point... you have 5V *and* 12V available for your audio amp and fans. You simply use your arduino or motion sensor to trigger a transistor which will handle providing the 12V to the fan and amplifier!
Because this is a power concious project, you will most likely design it so that power is *not* provided to anything except the motion sensor and perhaps the arduino. Once triggered, power will be provided to the peripherals, then after a short delay (less than a second ... let them power up... ie, the AMP) you can control them. Then you can shut the parts down after their work is done and wait for the sensor again.