Online pathshala by Ashish Gupta
Online pathshala by Ashish Gupta
  • 58
  • 10 599
Traffic Light Control (XG5000 & XP-Builder 3.40)
Traffic Light Control (XG5000 & XP-Builder 3.40)....................................
Переглядів: 1

Відео

SCADA Thermal Electric Power Distribution Systems
2 години тому
Supervisory Control and Data Acquisition (SCADA) systems are a key part of the communication infrastructure for power distribution systems. They are used to monitor and control power generation and distribution, manage renewable energy sources, and monitor energy consumption. Here are some components of SCADA systems: Remote terminal units (RTUs) These units are located at generating stations a...
LS HMI To PLC Interface Simulation
Переглядів 12 години тому
Programmable logic controller (PLC) is a general-purpose control device that automatically controls machinery, facilities, and assembly lines by user defined programs. It also has a variety of communication functions for sequence, motion, and process control.
LED Control using PLC (XG5000 & XP-Builder 3.40)
Переглядів 32 години тому
PLC Programming LED Control Design a PLC ladder logic for the following application. We are using three toggle Switches to control three LED’s If Toggle Switch 1 and Toggle Switch 2 are ON, then LED 1 and LED 2 will be ON. If Toggle Switch 2 and Toggle Switch 3 are ON, then LED 2 will be OFF, and LED 3 will be ON.
How to controlling LED ON OFF with Python GUI and Arduino
Переглядів 74 години тому
How to controlling LED ON/OFF with Python and Arduino python module - Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language. In this tutorial, we have explained to use python code with arduino using basic example of LED blinking. Software Required: -Arduino IDE -Python To complete this project you need to install three Python modules: - pySer...
Bluetooth smart LED Control
Переглядів 416 годин тому
Code- #include "SoftwareSerial.h" #define r1 5 int relay1 = LOW; #define r2 6 int relay2 = LOW; #define r3 7 int relay3 = LOW; #define r4 8 int relay4 = LOW; int BluetoothData; SoftwareSerial HC05(2,3); // TX, RX void setup() { pinMode( r1 ,OUTPUT); pinMode( r2 ,OUTPUT); pinMode( r3 ,OUTPUT); pinMode( r4 ,OUTPUT); Serial.begin(9600); HC05.begin(9600); } void loop() { if (HC05.available()) { Blu...
Web Server Controlled LED
Переглядів 1216 годин тому
Under the same local area network, different devices can achieve simple communication through the HTTP protocol. The following article introduces a project, that ESP32 realizes remote control by web browser, to control local LED On/Off, by building web server. The status of the LED is displayed on the OLED (Driver: SSD1306). The web server built by ESP32 plays the following roles: Enter the IP ...
Project 1
Переглядів 216 годин тому
A project description is a high-level overview of why you're doing a project. The document explains a project's objectives and its essential qualities. Think of it as the elevator pitch that focuses on what and why without delving into how.
RFID Module
Переглядів 2219 годин тому
he RFID system is comprised of two components: the RFID reader and the tags. They are also called PCD (Proximity Coupling Device) and PICC (Proximity Integrated Circuit Card). The RFID reader consists of an antenna to emit high-frequency EM waves and a reader/writer. MFRC522 from NXP is an example of such an integrated circuit. Since we are using high-frequency waves in the megahertz range, the...
Sound Sensor
Переглядів 7119 годин тому
In this project, we will connect Arduino with Vibration sensor and LED. When no vibration is detected, Vibration sensor output is 0 (low voltage),otherwise its output is 1(high voltage)。 If Arduino get 0 (no vibration) from vibration sensor it will turn on green LED and turn off Red LED. If Arduino get 1 from vibration sensor, it will turn on Red LED and turn off green LED. Code- int vib_pin=7;...
Vibration Sensor
Переглядів 419 годин тому
In this project, we will connect Arduino with Vibration sensor and LED. When no vibration is detected, Vibration sensor output is 0 (low voltage),otherwise its output is 1(high voltage)。 If Arduino get 0 (no vibration) from vibration sensor it will turn on green LED and turn off Red LED. If Arduino get 1 from vibration sensor, it will turn on Red LED and turn off green LED. Code- int vib_pin=7;...
OLED Display
Переглядів 1719 годин тому
We sure would want to display some data present on our micro-controllers, from sensors or simply display some message, so here is a quick tutorial about OLED displays, in which we will learn how to wire and program a 0.96inch OLED Display with Arduino Microcontroller. so follow up this instructable to understand and display your own Message on a OLED Display.
OLED with Arduino
Переглядів 919 годин тому
We sure would want to display some data present on our micro-controllers, from sensors or simply display some message, so here is a quick tutorial about OLED displays, in which we will learn how to wire and program a 0.96inch OLED Display with Arduino Microcontroller. so follow up this instructable to understand and display your own Message on a OLED Display.
Relay on off
Переглядів 119 годин тому
Code- // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(2, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(2, HIGH); // turn the LED on (HIGH is the voltage level) delay(500); // wait for a second digitalWrite(2, LOW); // turn the LED off by making the vol...
Relay on off
19 годин тому
Code- // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(2, OUTPUT); pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); Serial.begin(9600); } // the loop function runs over and over again forever void loop() { digitalWrite(2, HIGH); // turn the LED on (HIGH is the voltage level) delay(1); //...
4 Channel Relay on off with 4 LED
Переглядів 319 годин тому
4 Channel Relay on off with 4 LED
Relay on off
Переглядів 119 годин тому
Relay on off
Relay on off
19 годин тому
Relay on off
Motor On Off using Button
Переглядів 3121 годину тому
Motor On Off using Button
Motor On Off
Переглядів 1821 годину тому
Motor On Off
Ultrasonic Sensor
Переглядів 1421 годину тому
Ultrasonic Sensor
LM 35 Temperature Sensor
Переглядів 1321 годину тому
LM 35 Temperature Sensor
LDR Sensor
Переглядів 421 годину тому
LDR Sensor
IOT based IR Sensor-1 using Arduino Uno
Переглядів 1121 день тому
IOT based IR Sensor-1 using Arduino Uno
IOT based IR Sensor using Arduino Uno
Переглядів 621 день тому
IOT based IR Sensor using Arduino Uno
IOT based DHT11 using Arduino Uno
Переглядів 2021 день тому
IOT based DHT11 using Arduino Uno
IOT based Buzzer using Arduino Uno
Переглядів 1621 день тому
IOT based Buzzer using Arduino Uno
LED Blanking using Button
Переглядів 2721 день тому
LED Blanking using Button
LED Blink-2
Переглядів 3321 день тому
LED Blink-2
LED Blink-1
Переглядів 1321 день тому
LED Blink-1

КОМЕНТАРІ