Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import machine, time, struct, sys, ssd1306
- import network, socket, binascii, hashlib, random
- # ekran
- i2c = machine.I2C(1, sda=machine.Pin(21), scl=machine.Pin(22))
- ekran = ssd1306.SSD1306_I2C(128, 64, i2c)
- ekran.contrast(1)
- # pzem004t
- uart = machine.UART(2, baudrate=9600, bits=8, parity=None, stop=1, tx=16, rx=17)
- # przycisk dotykowy (TTP223)
- przycisk = machine.Pin(27, machine.Pin.IN)
- ssid = "Master-Slave"
- password = "Proste123"
- hotspot = False
- #PRESET = 0xFFFF
- #POLYNOMIAL = 0xA001 # bit reverse of 0x8005
- def crc16(data, preset=0xFFFF, polynomial=0xA001):
- crc = preset
- for c in data:
- crc = crc ^ c
- for j in range(8):
- if crc & 0x01:
- crc = (crc >> 1) ^ polynomial
- else:
- crc = crc >> 1
- return data + crc.to_bytes(2, "little") # ESP32 - little-endian
- def read_all():
- if uart.write(req_crc):
- time.sleep_ms(100)
- payload = uart.read()
- if payload == None:
- raise ValueError("PZEM004T")
- payload = payload[3:-2]
- fmt = ">" + (int(len(payload)/2)) * "H"
- return struct.unpack(fmt, payload)
- def resetuj_licznik_energii():
- uart.write(b'\xF8\x42\xC2\x41')
- def pokaz_mac():
- ekran.fill(0)
- #ekran.contrast(1)
- ekran.text("= Master-Slave =".center(16), 0, 1)
- ekran.text("v0.01".center(16), 0, 12)
- ekran.text("Adres MAC:".center(16), 0, 40)
- ekran.text(binascii.hexlify(network.WLAN().config("mac")).decode().upper().center(16), 0, 55)
- ekran.show()
- def przycisk_konfig(self):
- global hotspot
- hotspot = True
- ekran.fill(0)
- #ekran.contrast(1)
- y = 1
- ekran.text("= Konfiguracja =".center(16), 0, y); y += 16
- ekran.text("HOTSPOT:", 0, y); y += 12
- ekran.text(ssid, 2, y); y += 16
- ekran.text("HASLO:", 0, y); y += 12
- ekran.text(password, 2, y)
- ekran.show()
- def oled_wyswietl(txt):
- ekran.fill(0)
- #ekran.contrast(1)
- licz = 1
- for i in txt:
- ekran.text(i, 1, licz)
- licz += 11
- ekran.show()
- def oled_error(s):
- ekran.fill(0)
- ekran.text("[BLAD]:", 0, 0)
- ekran.text(s, 0, 16)
- ekran.show()
- def generuj_hash():
- hash = hashlib.md5("%.20f" % random.random())
- return str(binascii.hexlify(hash.digest()), "utf-8")
- def hotspotx(ssid, password):
- ap = network.WLAN(network.AP_IF)
- ap.active(True)
- ap.config(essid=ssid, password=password, authmode=network.AUTH_WPA_WPA2_PSK)
- while ap.active() == False:
- pass
- print("AP działa:", str((ap.ifconfig())[0]))
- hash = generuj_hash()
- http_ok = """<html><head>
- <meta charset="UTF-8", name="viewport" content="width=device-width, initial-scale=1">
- <link rel="shortcut icon" href="#" />
- </head>
- <body><h2>%s</h2><hr>
- <p><a href="resetuj_esp-%s">Resetuj ESP</a></p>
- <p><a href="resetuj_licznik-%s">Resetuj licznik energii</a></p>
- <p><a href="wyjdz-%s">Wyjdź</a></p>
- </body></html>"""% (ssid, hash, hash, hash)
- http_404 = """<html><head>
- <meta charset="UTF-8", name="viewport" content="width=device-width, initial-scale=1">
- <link rel="shortcut icon" href="#" />
- <meta http-equiv="refresh" content="2; url=/">
- </head>
- <body><h2>[404] Nie znaleziono!</h2></body></html>"""
- http_licznik = """<html><head>
- <meta charset="UTF-8", name="viewport" content="width=device-width, initial-scale=1">
- <link rel="shortcut icon" href="#" />
- <meta http-equiv="refresh" content="2; url=/">
- </head>
- <body><h2>Zresetowano!</h2></body></html>"""
- s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- s.bind(("", 80))
- s.listen(5)
- while True:
- conn, addr = s.accept()
- print("Otrzymałem połączenie z %s" % str(addr))
- request = conn.recv(1024)
- req = (str(request, "utf-8").splitlines()[0]).split(" ")[1]
- print("Otrzymano zapytanie:", req)
- html_data = ""
- if req == "/" or req == "/index.html" or req == "/favicon.ico":
- print("=====> HTML <======")
- html_data = http_ok
- elif req == ("/resetuj_esp-" + hash):
- print("=====> reset esp <======")
- conn.send(html_data)
- conn.close()
- machine.reset()
- elif req == ("/resetuj_licznik-" + hash):
- print("=====> reset licznika <======")
- html_data = http_licznik
- resetuj_licznik_energii()
- elif req == ("/wyjdz-" + hash):
- print("=====> wyjdź <======")
- html_data = http_ok
- conn.send(html_data)
- conn.close()
- time.sleep(5)
- machine.reset()
- else:
- html_data = http_404
- conn.send(html_data)
- conn.close()
- pokaz_mac()
- przycisk.irq(trigger=machine.Pin.IRQ_RISING, handler=przycisk_konfig)
- time.sleep(5)
- if hotspot:
- hotspotx(ssid, password)
- else:
- #req_crc = crc16(b"\xF8\x04\x00\x03\x00\x02")
- req_crc = crc16(b"\xF8\x04\x00\x00\x00\x0A")
- def fun(self):
- ekran.poweroff()
- tim = machine.Timer(0)
- timEkranOff = machine.Timer(1)
- ekran_wl = False
- #przycisk_licznik = 0
- def przycisk_fun(self):
- ekran.poweron()
- tim.init(period = 5000, mode=machine.Timer.ONE_SHOT, callback=fun)
- przycisk.irq(trigger=machine.Pin.IRQ_RISING, handler=przycisk_fun)
- ekran_wl = True
- while True:
- try:
- data = read_all()
- except KeyboardInterrupt:
- print("Przerwano: Ctrl + C")
- break
- except Exception as e:
- print("[BŁĄD]:", str(e))
- oled_error(str(e))
- break
- else:
- if data:
- volt = data[0]/10.0
- curr = ((data[2]<<16) | (data[1]))/1000.0
- power = ((data[4]<<16) | (data[3]))/10.0
- energy = ((data[6]<<16) | (data[5]))/1000.0
- freq = data[7]/10.0
- pf = data[8]/100.0
- txt = ( "{0:<5}{1:.1f}".format("V:", volt),
- "{0:<5}{1:.3f}".format("A:", curr),
- "{0:<5}{1:.1f}".format("W:", power),
- "{0:<5}{1:.3f}".format("kWh:", energy),
- "{0:<5}{1:.2f}".format("PF:", pf),
- "{0:<5}{1:.1f}".format("Hz:", freq)
- )
- oled_wyswietl(txt)
- if power:
- if not ekran_wl:
- print("Ekran ON")
- ekran.poweron()
- ekran_wl = True
- elif ekran_wl:
- print("Ekran OFF")
- ekran_wl = False
- tim.init(period = 5000, mode=machine.Timer.ONE_SHOT, callback=fun)
- """
- if power == 0 and wyl == False:
- wyl = True
- tim.init(period = 10000, mode=machine.Timer.ONE_SHOT, callback=fun)
- elif power > 0 and wyl == True:
- wyl = False
- ekran.poweron()
- """
- finally:
- time.sleep_ms(800)
- if not ekran_wl:
- ekran.poweron()
- time.sleep(10)
- machine.reset()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement