
Glow in the dark Auto-recharge circuit (Photocell not timer)
thingiverse
Glow in the Dark Auto-recharge Circuit Uses Photocell and UV LED's to Flash Charge Filament. I've Set it Up to Only Flash for a Second, So You Can See It Work. The INO Files Are Also Included in the Thing Files. To Use, Simply Place the Model Inside or Behind, as the Circuit Works Off a Photocell, Registering Glow Dimming and Triggering a Brief Charge. https://youtu.be/3gfeLZGnH-Y All Information Needed to Create Below. I Apologize to Those Who Couldn't Wait Five Minutes for Me to Finish the Simple Schematic or Were Overly Concerned with Typo Accuracy. Sorry, I Am Human and Made Mistakes. Code: int ledPin = 13; // Pin Used to Control LED int turnON = 990; // Dim Value That Switches Charge Light Back On (Will Vary Depending on Photocell Placement) int sensorValue; void setup() { pinMode(ledPin, OUTPUT); Serial.begin(9600); } void loop() { sensorValue = analogRead(A0); Serial.println(sensorValue); delay(1); if(sensorValue > turnON) { digitalWrite(ledPin, HIGH); delay(10000); // Duration of Light On (10 Seconds) digitalWrite(ledPin, LOW); } delay(1000); }
With this file you will be able to print Glow in the dark Auto-recharge circuit (Photocell not timer) with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Glow in the dark Auto-recharge circuit (Photocell not timer) .