-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpico1_sender.py
60 lines (45 loc) · 1.31 KB
/
pico1_sender.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import network
import time
import socket
import machine
from dht import DHT11
import connect
connected_led = machine.Pin("LED", machine.Pin.OUT)
# Configure Wi-Fi credentials
SSID = connect.SSID
PASSWORD = connect.PASSWORD
# Connect to Wi-Fi
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
wlan.connect(SSID, PASSWORD)
while not wlan.isconnected():
time.sleep(1)
# IP addresses of the two Pico W boards
pico1_ip = connect.PICO1_SENDER
pico2_ip = connect.PICO2_RECIEVER
# Create a socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Connect to Pico W #2
server_address = (pico2_ip, 6969)
sock.connect(server_address)
connected_led.on()
# Configure DHT11 sensor
dht_pin = machine.Pin(16, machine.Pin.OUT)
sensor = DHT11(dht_pin)
while True:
# Read temperature from DHT11 sensor
sensor.measure()
temperature = sensor.temperature()
# Send temperature data to Pico W #2
message = "Temperature: {:.1f} °C".format(temperature)
sock.sendall(message.encode())
print(message)
# Receive response from Pico W #2
response = sock.recv(1024)
print("Received:", response.decode())
# Toggle the onboard LED based on response
connected_led.value(not connected_led.value())
# Add a delay of ten seconds between messages
time.sleep(10)
sock.close()
connected_led.off()