Public projects 1
Respected projects 17
Zelda Princess Hilda LED Staff Powered by Arduino
Project showcase by Amie DD
- 5,176 views
- 1 comment
- 18 respects
Comments 9
What should I wear outside? about 4 years ago
UNIX Time Clock over 4 years ago
Clever! I love it.
What should I wear outside? about 5 years ago
A simple way to implement persistent state on the particle platform is to use the EEPROM (byte readable and writeable storage).
double value = 5.0; const int address = 0; EEPROM.put(address, value); // at next boot EEPROM.get(address, value);
We talked in the forum about power supplies. Are you good with that for now?
I think it was a 2N2222, but any NPN should work. Note that I used the transistor to switch ground to the servo, not battery. Also try different values for the base resistor to make sure the transistor switches on fully when the microcontroller pin is high.