The Objective of My System Is To Protect A Three P
The Objective of My System Is To Protect A Three P
4. ESP8266MOD:
- GPIO Pins:Use the GPIO pins of the ESP8266MOD to control the
relays, indicator lights, and the buzzer. For example:
- GPIO for Relays: Connect each relay to a GPIO pin to control
the motor's contactors.
- GPIO for Indicator Lights: Connect the indicator lights to the
GPIO pins so they can be turned on/off based on sensor readings.
- GPIO for Buzzer: Connect the buzzer to one of the GPIO pins to
be triggered in case of faults.
5. Blynk Application:
- Connect the ESP8266MOD to the Blynk app via Wi-Fi. You can
monitor the status of all sensors and control the system remotely
(like turning off the motor).
2. Motor Control:
- The motor is controlled by three relays (each controlled by the
ESP8266MOD).
4. Sensors:
- ZMPT101: Voltage measurement sent to the ESP8266MOD.
- SCR-013: Current measurement sent to the ESP8266MOD.
- DS18B20: Temperature measurement sent to the ESP8266MOD.
Let's break down the wiring and control logic in more detail, step
by step, for your motor protection system.
1. Power Supply:
- AC Power (230V): Connect the three-phase AC supply to the
motor. The power supply will also be used for the relays and
sensors.
- ESP8266MOD Power: Since the ESP8266 runs on 3.3V or 5V,
you will need a voltage regulator or a separate 5V power supply to
provide power to the ESP8266. The relay modules, LCD display,
and other peripherals might require 5V, so ensure proper voltage
regulation.
3. Sensor Wiring:
- Buzzer:
- The buzzer should be connected to one of the ESP8266's GPIO
pins.
- The buzzer is activated if any sensor detects a fault (voltage,
current, or temperature).
- It should be activated by setting the GPIO to HIGH (sending a
3.3V signal) when any fault is detected.
6. Wiring Overview:
- Power:
- AC power to the motor, relays, and sensors.
- 5V DC to ESP8266 from a regulator or dedicated power supply.
- ESP8266 Connections:
- GPIOs for relay control (controlling the three relays).
- ADCs for the voltage (ZMPT101) and current (SCR-013)
sensors.
- GPIO for controlling indicator LEDs.
- GPIO for controlling the buzzer.
- One GPIO for the DS18B20 sensor data line.
- Sensors:
- ZMPT101: Voltage signal connected to ESP8266 ADC.
- SCR-013: Current signal connected to ESP8266 ADC.
- DS18B20: Data pin connected to GPIO with a pull-up resistor.
7. Blynk Integration:
- Connect the ESP8266 to a Wi-Fi network and use the Blynk
library to send sensor data and control the system remotely. You
can create a simple Blynk interface to show voltage, current, and
temperature, as well as the status of the motor and protection
system.
- In the Blynk app, you can add widgets to control the start and
emergency stop buttons remotely, and receive notifications if a
fault is detected.
Simplified Flow:
1. Start Button Pressed:
- ESP8266 checks sensors.
- Relays are energized, motor starts running.
3. Emergency Stop:
- ESP8266 immediately deactivates relays to stop the motor.