Everything was done before

This commit is contained in:
Andrew 2023-03-26 15:56:15 +07:00
commit 85d4b4f2cb
4 changed files with 418 additions and 0 deletions

26
main.py Normal file
View file

@ -0,0 +1,26 @@
import sys
import time
from machine import Pin, I2C
from ssd1306 import SSD1306_I2C
from bme280 import BME280, BME280_OSAMPLE_16
# OLED
i2c0 = I2C(0, sda=Pin(0), scl=Pin(1), freq=100000)
display = SSD1306_I2C(128, 64, i2c0)
display.fill(0)
display.text("Wait...", 0, 0)
display.show()
# BME280
i2c1 = I2C(1, scl=Pin(15), sda=Pin(14))
bme = BME280(i2c=i2c1, mode=BME280_OSAMPLE_16)
while True:
display.fill(0)
display.text("T&P", 0, 0)
d = bme.values
display.text(d[0], 0, 9)
display.text(d[1], 0, 18)
display.show()
time.sleep(1)