#Arduino project
Explore tagged Tumblr posts
richter-ursidae · 2 months ago
Text
medovik
20 notes · View notes
ardujimmy · 4 months ago
Text
youtube
2 notes · View notes
cyrusmehdipour · 1 year ago
Video
youtube
Controlling Plastic Injection Machine Nozzle Movement with a Digital Las...
4 notes · View notes
arduino-diy · 1 year ago
Text
youtube
3D Printed Arduino Halloween Décor
When the full moon is shining and the wolves are howling, it's time for Halloween's spooky spectacle. The snickering grins of jack-o'-lanterns glow from lit porches. Kids skip down the block in spooky costumes, carrying bags full of candy and shouting "Trick or Treat!". The Nightmare Before Christmas is almost here... Do you see dead people???
Alright Enough of that, in this Spooktacular video I am going to create an Arduino based 3D printed Halloween Décor. It's super easy, fun and spooky....
3 notes · View notes
flyrobo · 2 years ago
Text
Tumblr media
5 notes · View notes
codician · 9 months ago
Video
youtube
Arduino Digital Clock #arduinoproject #automation #arduino
1 note · View note
role-of-iot-in-healthcare · 2 years ago
Text
https://www.learnelectronicsindia.com/post/impact-of-iot-on-energy-usage-and-the-potential-for-energy-efficiency-gains
0 notes
zergys · 4 months ago
Text
Нет - это не гирлянда. Заливаю прошивку в умную розетку. Теперь она настолько умная что держит сайт и больше не дружит с китайскими облаками ( да и вообще с любыми кроме моего собстве��ного)
23 notes · View notes
raven6229 · 2 years ago
Text
Anyone wanna see a dope robot my class made?
375 notes · View notes
ordinarymagician2000 · 11 months ago
Text
Today I fixed up my Mini-Hakkero prop for my cosplay!
Tumblr media
Originally made it last year, but bringing it to cons ended up killing my terribly loose solder and crimp jobs for the admittedly janky internal wiring. For my fix I ended up having to skip 3 unreachable LEDs and attach new wires to the LED spiral (the shell stuck too much together and I could not reach under the battery holder anymore). A compromise, but one that ended up looking alright.
Tumblr media Tumblr media
It's not the cleanest thing, but it was my first ever arduino project and with the new pattern i set up, it works decently enough as a cosplay prop :)
41 notes · View notes
richter-ursidae · 2 months ago
Text
Tumblr media Tumblr media
fucking hate my camera
14 notes · View notes
ardujimmy · 2 months ago
Text
See updated info here:
1 note · View note
cyrusmehdipour · 1 year ago
Video
youtube
DIY Digital Laser Ruler Tutorial with VL53L0X GY-53, SSD1306, and Wemos ...
0 notes
quartz-components · 2 months ago
Text
DIY Laser Tripwire Security System Using Arduino
Tumblr media
The project consists of a laser module that continuously emits a beam aimed at a laser receiver sensor. When an object (such as a person) obstructs the laser, the receiver detects the interruption and triggers an alarm via a buzzer. This system is ideal for securing doorways, hallways, or any restricted area.
COMPONENTS REQUIRED
Arduino Uno 
Laser LED Module
Laser Receiver Sensor Module
Buzzer
Jumper wires
Breadboard
Circuit Diagram
Tumblr media
CODE
#define LASER_PIN 7  
#define RECEIVER_PIN 8  
#define BUZZER_PIN 9  
void setup() {
  pinMode(LASER_PIN, OUTPUT);
  pinMode(RECEIVER_PIN, INPUT);
  pinMode(BUZZER_PIN, OUTPUT);
  digitalWrite(LASER_PIN, HIGH); // Laser ON
  Serial.begin(9600);
}
void loop() {
  int status = digitalRead(RECEIVER_PIN);
  if (status == 1) {  // If laser beam is blocked
    Serial.println("⚠️ Intruder Detected!");
    digitalWrite(BUZZER_PIN, HIGH);  
  } else {
    Serial.println("✅ Area Secure");
    digitalWrite(BUZZER_PIN, LOW);  
  }
  delay(500);
}
youtube
7 notes · View notes
numbpill · 4 months ago
Text
need a bit of advice on something rather new to me... i have been DYING to get into some semblance of diy electronics/robotics, specifically regarding the idea of building a flipper zero knockoff with a raspberry pi/esp32/arduino. or a hack rf one ripoff, etc. u get it? i wanna make a lil handheld pwnagotchi pet style device for rolljam rf shit, something that can copy and paste and send and receive rf signals, but homemade by my self....
please if anyone has experience, resources, ideas, anything at all= hit me up right now immediately asap today please.... i am so passionate and ready to do this please help me make device go beepboop
13 notes · View notes
emilnikos · 2 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
really interesting projects ive seen on instructables dot com
6 notes · View notes