
desk lamp
thingiverse
You can find the schematic and Arduino code for making it on the make it with conrad website and in my YouTube video where I show you how to build this project. YouTube video: https://www.youtube.com/watch?v=T0mhxo7__es The written tutorial is available at: https://makeitwithconrad.fr/tutoriel/comment-faire-une-lampe-tactile/ Here is the code that goes into the Arduino: int in = 12; int out = 13; int state = HIGH; int r; int p = LOW; long time = 0; long debounce = 200; void setup() { pinMode(in, INPUT); pinMode(out, OUTPUT); } void loop() { r = digitalRead(in); if (r == HIGH && p == LOW && millis() - time > debounce) { if (state == HIGH) state = LOW; else state = HIGH; time = millis(); } digitalWrite(out, state); p = r; }
With this file you will be able to print desk lamp 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 desk lamp.