Jump to content

skyone

Member
  • Posts

    326
  • Joined

  • Last visited

Everything posted by skyone

  1. you can get the code from the arduino e11 topic, there is the download attachment at the bottom of the first post. To read the file you will need the arduino compiler, link on the same topic and it's free of use of course
  2. seems a professional work, it's much better and easier to have a single PCB i see you are going to use an ATMEGA328P mcu, the same used on arduino, maybe also the programming is the same? keep up the good work!
  3. i am building a new set to show at Arduino convention in Rome in October today i soldered the modifications on LED constant current drivers regulators they are ready to be soldered to the RGB Led and to link to Arduino digital outputs
  4. a 9 volts battery would last very short, their amperage is around 200mAh a lithium battery with a minimum amperage of 600mAh is strongly suggested, such as 2x 18650 batteries http://lygte-info.dk/review/batteries2012/Common18650Summary%20UK.html 2 of them can fit inside the blaster pipe
  5. the event ended yesterday, that was a great convention a great party all togheter with the friends of the Rebel Legion and Gotham Shadows (Batman) we also collected about 600$ for the Red Cross here the pictures of the event --------- and the harlem shake clip
  6. some pictures from today published here: -------- also a green screen test to clone our clone
  7. i also received a new set of speakers and they perform well size is 70mm x 30mm, the seller is SourcingMap i am waiting a second set i ordered from the same site, should perform even louder because @ 4 ohm (the mini amp will perform best at this ohm rate) 70mmx30mm Rectangle Shape Aluminum Internal Speaker Loudspeaker 4 Ohm 3W
  8. arduino blaster http://www.whitearmo...laster-effects/ here the boots pictures after 2 full days of trooping as told before the paint was lost where the boots and armor shins touch without any protection inside (foam) -----------
  9. the module works fine while plays mp3 files without problem and with a very good quality; wav files are supported (44.100hz/16bit/stereo) but with issues: the file starts to play only after 1 or 2 seconds of blank sound with a fading-in effect. tried to lower the sampling rate without any change. something odd: if you want to keep the files order, firse must create the mp3 playlist on hard disk (0001.mp3, 0002.mp3, ecc) and when ready copy to the root of the micro-SD card. If you rename or change something on microsd card it will messy the order. I used 2 watt stereo speakers @ 8ohm: if used in mono no problem, when stereo you can hear clipping. With a mini amplifier no problem at all also in stereo mode. The serial code is almost the same of the bigger mp3 sound module (the one i used on my blaster), this one is more basic because doesn't support folders. So if you are going to use this sound module you will need to modify the serial commands in the code i released for this project (very easy) the video test: the code used in the video const int buttonPinFire = 7; // FIRE // variables will change: int buttonState = 0; // variable for reading the pushbutton status void setup() { // initialize the button pin as a input: pinMode(buttonPinFire, INPUT); // initialize serial communication: Serial.begin(9600); Serial.write(0x7E); Serial.write(0x03); Serial.write(0xA7); Serial.write(0x1F); // volume max Serial.write(0x7E); // start sound Serial.write(0x7E); Serial.write(0x04); Serial.write(0xA0); // A0 for SD card Serial.write((byte)0x00); Serial.write(0x02); // track number Serial.write(0x7E); delay(3000); } void loop() { buttonState = digitalRead(buttonPinFire); if (buttonState == HIGH) { Serial.write(0x7E); Serial.write(0x04); Serial.write(0xA0); // A0 for SD card Serial.write((byte)0x00); Serial.write(0x01); // track number Serial.write(0x7E); delay(300); } }
  10. below pictures of my dyed boots walking at Milan Cartoon convention last weekend at the end of full 2 days of walking around i got scratches only on the back part because of armor shins (and hidded by them). Inside the front part of shins i added foam, that protected the boots. So will add foam also on the back side. I will take care of my boots ----------
  11. it was delivered to me last week but i didn't have time to test, cause the weekend comic con. in Milan i will test during this week with arduino nano
  12. ok just scars from the armor did you clean boots with a solvent before apply the angelus paint?
  13. thanks what about your boots? the paint resists?
  14. here my dye work on black jodhpur boots -----------
  15. the name system work as requested by the data sheet of the mp3 sound module. In this case the files and folders must be named 001, 002, 003... you can use one or multiple folders (i used multiple folders). You are welcome to share any contribution about the code and circutit here.
  16. oh i missed this topic very well done! i think you are going to use a smaller version to fit inside the blaster, such as arduino nano or mini arduino pro btw another arduino blaster is coming
  17. they sell the comlink also with R2D2 toy --------- http://www.attoycity.com/792-2651-thickbox/star-wars-remote-control-r2-d2-rc-droid-r2d2-7.jpg
  18. any more information about the gun of the stormtrooper on the right?
  19. looks fine but we can see only 1 side, we can't see if there is any logo to the other side did u look at this? http://www.ebay.com/...d=390420871541
  20. i dont think can be oscured today i just got mine bought from ebay they fit ok. Now i have to remove the sewn circle logo and dye with angelus white leather paint as showed here the light stamped logo will be oscured by the armor ----------
  21. link is missing, and i cant' find in this website too. there is still the google cache up ------------
×
×
  • Create New...