Rukun Islam adalah perintah-perintah Allah SWT yang wajib dilaksanakan oleh seseorang muslim. Lima rukun Islam ini diibaratkan seperti tiang-tiang yang saling melengkapi untuk menegakkan agama Islam yang sempurna.
IoT Beginner Project #2: How to Monitor Temperature Data with LED Alert using BLYNK App About Project: The temperature data and graph can be monitored by using Blynk App through Wi-Fi. The LED will light up if the temperature is equal or higher than 35 degrees celsius. Components: Smart phone with BLYNK App Computer Breadboard ESP32 Sensor LM35 Red LED Resistor 220 Ohm Jumper Male-to-Female Micro USB-B Internet needed Schematic Diagram: Coding using Arduino IDE: #define BLYNK_PRINT Serial #include <WiFi.h> #include <WiFiClient.h> #include <BlynkSimpleEsp32.h> BlynkTimer timer; char auth[] = "__YlX-ijzaSbHG0zdCennMY1SYXoH26A"; // Auth Token in Blynk Application or by email. char ssid[] = "mywifi"; //wifi name char pass[] = "mypassword"; //wifi password int Raw= 0; double Volt = 0; double Celcius = 0; const int ledPin = 22; // Led di pin 22 const int lmPin = 35; // LM...
IoT Beginner Project #1: How to Blink LED using BLYNK App Button with Internet of Things (IoT) via ESP32 Wifi Objective: To blink the LED using BLYNK app button via ESP32 Wifi. Components: Smart phone with BLYNK App Computer Breadboard ESP32 LED Resistor 220 Ohm Jumper Male-to-Female Micro USB-B Internet needed Schematic Diagram: Coding using Arduino IDE: #include <Blynk.h> #define BLYNK_PRINT Serial #include <WiFi.h> #include <WiFiClient.h> #include <BlynkSimpleEsp32.h> char auth[]="3mkKYun-7TmkxAK1x5J9XPD2gXl1QsXH";//Auth. token: char ssid[]="babysharkdudududu"; //wifi name: char pass[]="wifipassword"; // wifi password: int LEDpin= 22; void setup() { Serial.begin(115200); Blynk.begin(auth, ssid, pass); pinMode(LEDpin,OUTPUT); pinMode(LEDpin, LOW); } void loop(){ Blynk.run(); } Watch this project tutori...
Arduino Beginner Project #2: How to Blink RGB (Red Green Blue) LED using Arduino Uno Objective: To produce red, green and blue light continuously with an interval of 1 second. Components: Arduino Uno with USB cable Breadboard Male to male jumper RGB LED (3X) Resistor 220 Ohm Schematic Circuit: Coding using Arduino IDE: #define RED_DIODE 13 #define GREEN_DIODE 11 #define BLUE_DIODE 9 void setup() { pinMode (RED_DIODE,OUTPUT); pinMode (GREEN_DIODE,OUTPUT); pinMode (BLUE_DIODE,OUTPUT); } void loop() { digitalWrite (RED_DIODE,HIGH); digitalWrite (GREEN_DIODE,LOW); digitalWrite (BLUE_DIODE,LOW); delay(1000); digitalWrite (RED_DIODE,LOW); digitalWrite (GREEN_DIODE,HIGH); digitalWrite (BLUE_DIODE,LOW); delay(1000); digitalWrite (RED_DIODE,LOW); digitalWrite (GREEN_DIODE,LOW); digitalWrite (BLUE_DIODE,HIGH); delay(1000); } ...
Comments
Post a Comment