papconst / PZEM-004T-Arduino-ESP8266-soft-serial

Library to connect energy meter PZEM-004T to Arduino/ESP8266 controller through SoftwareSerial
MIT License
7 stars 5 forks source link

schematic for ESP12 #1

Closed budi99ok closed 3 years ago

budi99ok commented 4 years ago

Hi, could you attach schematic ? related to example code..

PZEM_004T pzem(10,11);// Arduino: 10,11 // ESP-01: 0,2 // ESP-12F: 0-5 or 12-15

Thanks

papconst commented 3 years ago

PZEM_004T pzem(10,11);// Arduino: 10,11 Attach new pzem to 10th and 11th pins of Arduino.

// ESP-01: 0,2
// ESP-12F: 0-5 or 12-15

On ESP-01 you can use pins 0 and 2; On ESP-12F you may use pins from 0,1,2,3,4,5 and 12,13,14,15

budi99ok commented 3 years ago

Thank you..