commit 3ca139057b880af1b4d75db1d06bf6560b07ce14
parent 7686588d3edfe88c1e9ac1538e2e357eac954527
Author: gerco <[email protected]>
Date: Fri, 13 May 2022 16:08:35 +0200
small changes to esp files
Diffstat:
5 files changed, 25 insertions(+), 15 deletions(-)
diff --git a/client/boot.py b/client/boot.py
@@ -8,7 +8,6 @@ led2 = Pin(2, Pin.OUT)
connection = network.WLAN(network.STA_IF)
-
def connect():
if connection.isconnected():
diff --git a/client/config.py b/client/config.py
@@ -1,8 +1,17 @@
-WIFI_SSID = "gercowifi"
-WIFI_PASSWORD = "password"
-SERVER = "192.168.137.1"
+where = "laptop"
+if where == "laptop":
+ WIFI_SSID = "gercowifi"
+ WIFI_PASSWORD = "password"
+ SERVER = "192.168.137.1"
+elif where == "pc":
+ WIFI_SSID = "KPN1479E6"
+ WIFI_PASSWORD = "FXR7JX6mfkR2Wbcf"
+ SERVER= "192.168.2.2"
+else:
+ WIFI_SSID = "gercowifi"
+ WIFI_PASSWORD = "password"
+ SERVER = "192.168.137.1"
+
PORT = "5000"
ENDPOINTSTATUS = "/api/update_status"
-ENDPOINTCONNECT = "/api/search_connect"
-MAC_ADDRESS = "0000000000000000"
-SLEEP_TIME = 1 # secound
+ENDPOINTCONNECT = "/api/search_connect"
+\ No newline at end of file
diff --git a/client/firmware/esp32.bin b/client/firmware/esp32.bin
Binary files differ.
diff --git a/client/firmware/readme.txt b/client/firmware/readme.txt
@@ -0,0 +1,2 @@
+https://micropython.org/download/esp32/
+v1.18 (2022-01-17) .bin
diff --git a/client/main.py b/client/main.py
@@ -1,4 +1,5 @@
-from machine import Pin
+import esp32
+from machine import Pin, deepsleep
from time import sleep
import config
import urequests as requests
@@ -6,11 +7,12 @@ import urequests as requests
urlstatus = f"http://{config.SERVER}:{config.PORT}{config.ENDPOINTSTATUS}"
urlconnect = f"http://{config.SERVER}:{config.PORT}{config.ENDPOINTCONNECT}"
+
led = Pin(23, Pin.OUT)
trap = Pin(15, Pin.IN, Pin.PULL_DOWN)
connectbutton = Pin(4, Pin.IN, Pin.PULL_DOWN)
-
state = False
+mac = "0000000000000001"
#esp32.wake_on_ext1(pins = (button, button2), level = esp32.WAKEUP_ANY_HIGH)
while connection.isconnected():
@@ -18,18 +20,15 @@ while connection.isconnected():
print(trap.value())
new_state = trap.value()
led.value(new_state)
-
if state != new_state:
- response = requests.post(urlstatus, json={ "mac": config.MAC_ADDRESS, "state": new_state })
+ response = requests.post(urlstatus, json=new_state)
answer = response.json()
state = new_state
print(answer)
-
if connectbutton.value():
- response = requests.post(urlconnect, json={ "mac": config.MAC_ADDRESS })
+ response = requests.post(urlconnect, json=mac)
answer = response.json()
print(answer)
-
- sleep(config.SLEEP_TIME)
+ sleep(1)
#deepsleep()