import machine
import network
#import wifi_credentials
import urequests
import dht
import time
# **************************************
# Create objects:
#led = machine.Pin(2,machine.Pin.OUT)
d = dht.DHT22(machine.Pin(5))
# **************************************
# Configure the ESP32 wifi as STAtion
sta = network.WLAN(network.STA_IF)
if not sta.isconnected():
print('connecting to network...')
sta.active(True)
sta.connect('Wokwi-GUEST')
#sta.connect(wifi_credentials.ssid, wifi_credentials.password)
while not sta.isconnected():
pass
print('network config:', sta.ifconfig())
# **************************************
# Constants and variables:
HTTP_HEADERS = {'Content-Type': 'application/json'}
THINGSPEAK_WRITE_API_KEY = '66KT6TMZV2QV5B2F'
UPDATE_TIME_INTERVAL = 5000 # in ms
last_update = time.ticks_ms()
# initially there would be some delays
# before submitting the first update
# but should be enough to stabilize the
# the DHT sensor.
# ****************************
# Main loop:
while True:
if time.ticks_ms() - last_update >= UPDATE_TIME_INTERVAL:
d.measure()
t = d.temperature()
h = d.humidity()
dht_readings = {'field1':t, 'field2':h}
request = urequests.post(
'http://api.thingspeak.com/update?api_key=' +
THINGSPEAK_WRITE_API_KEY,
json = dht_readings,
headers = HTTP_HEADERS )
request.close()
print(dht_readings)
# led.value(not led.value())
# last_update = time.ticks_ms()
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
dht1:VCC
dht1:SDA
dht1:NC
dht1:GND
r1:1
r1:2