For this tutorial, you’ll need: 1 x Arduino UNO 3 x Resistor 330E 3 x BDW93C Jumper Wires 1x RGB Strip LED 1 x Adaptor 12V 5A Watch this full video: Smart Christmas Tree Example Code: const int sampleWindow = 50; // Sample window width in mS (50 mS = […]
Yearly Archives: 2020
For this tutorial, you’ll need: 1 x Arduino UNO 1 x Resistor 330E Jumper Wires 1 x Led 5MM 1 x Voice Recognition Module Watch this full video: Download the library before you start Led Control Example Code: #include <SoftwareSerial.h> #include "VoiceRecognitionV3.h" VR myVR(2,3); // 2:RX 3:TX, you can […]
For this tutorial, you’ll need: 1 x Arduino UNO or a Universal Adaptor 1 x Resistor 330E (and Set of different values) BreadBoard Jumper Wires 1 x Led 5MM 1 x 555 Timer Click to check The 555 modules Watch this full video:
For this tutorial, you’ll need: 2 x Arduino UNO 4 x Resistor 330E BreadBoard Jumper Wires 4 x Led 5MM 2 x DIP Switch 6 pole Watch this full video: First Version of Code: #define Working 12 #define led1 10 #define led2 9 #define led3 8 int led=0; void setup() […]
For this tutorial, you’ll need: Arduino UNO 6 x Resistor 330E BreadBoard Jumper Wires 6 x Led 5MM Watch this full video: First Version of Code: void setup() { Serial.begin(9600); for (int thisPin = 2; thisPin < 7; thisPin++) { […]
For this tutorial, you’ll need: Arduino UNO 1 x Resistor 330E BreadBoard Jumper Wires 1 x Led 5MM 1x TCRT500 Module Watch this full video: First Version of Code: #include <avr/sleep.h>//this AVR library contains the methods that controls the sleep modes #define interruptPin 2 //Pin we are going to use […]
For this tutorial, you’ll need: Arduino UNO 9 x Resistor 330E 1 x Resistor 10K BreadBoard Jumper Wires 9 x Led 5MM 1x Push Button Watch this full video: Full Code: #define led1 4 #define led2 5 #define led3 6 #define led4 7 #define led5 8 #define led6 9 #define […]
For this tutorial, you’ll need: Soil Moisture Sensor with module Arduino UNO 2 x Resistor 330E BreadBoard Jumper Wires Led 5MM BDW93C Water Pump 2x Plastic Tubes Cup of water Watch this full video: Needed Codes and files for this tutorial: Soil Sensor Test: int soilPin = A0; int outputValue […]
For this tutorial, you’ll need: Ultrasonic Sensor HC-SR04 Led 5MM Blue & Yellow Arduino UNO 2 x Resistor 330E BreadBoard Jumper Wires Battery 9V Snap to DC cable Watch this full video: Code: long d; //distance variable long DistanceSensor (int, int); //trigger echo define T 8 // pin 8 is […]
Watch this video, follow all the steps!! This is code: pinMode(8, OUTPUT); digitalWrite(8, LOW); mlx.begin(); //you start the serial connection with the senor delay(500); //wait for 0.5 second digitalWrite(8, HIGH); //When 8 is high it will connect the sensor to the Arduino SCL pin delay (500); //wait for another 0.5 […]