How to make Temperature and Humidity Sensor with DHT11 using Arduino
CODE #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6…
CODE #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6…
Click here and download App CODE #include <AFMotor.h> //initial motors pin AF_…
CODE // Define the pin numbers for the relays const int relay1Pin = 3; const int relay2P…
CODE #include <EEPROM.h> #define Sensor 2 // IR Sensor Pin #define Relay 8 /…
Connection Diagram CODE int but1 = 2; int but2 = 3; int but3 = 4; int but4 = 5…
CODE #include <Servo.h> int pos1 = 0; // Position for the first servo int po…
CODE int Green = 3; int Blue = 4; int Red = 5; void setup() { Serial.begin(9600); …