Advertisement
orborbson

czujniki_aht20_bmp280_bme280

Mar 14th, 2025
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.79 KB | Source Code | 0 0
  1. from machine import I2C, Pin
  2. import time, ahtx0, bmp280, bme280
  3.  
  4. i2c = I2C(0, sda = Pin(21), scl = Pin(22))
  5. info = {'0x38' : 'AHT20', '0x77' : 'BMP280', '0x76' : 'BME280'}
  6. devs = [f'{info[hex(i)]}({hex(i)})' if hex(i) in info.keys() else f'??? ({hex(i)})' for i in i2c.scan()]
  7.  
  8. print('\nAdres I2C:')
  9. print(*devs, sep = ', ')
  10.  
  11. bmpx, ahtx, bmex = bmp280.BMP280(i2c, addr = 0x77), ahtx0.AHT20(i2c), bme280.BME280(i2c)
  12. print('\nTemperatura/wilgotność/ciśnienie:')
  13.  
  14. try:
  15.     while True:
  16.         time.sleep(1)
  17.         print(f'\rAHT20({ahtx.temperature:6.2f}°C/{ahtx.relative_humidity:5.2f}%), BME280({bmex.getTemp():6.2f}°C/{bmex.getHumi():5.2f}%/{bmex.getPress()/100:6.1f}hPa), BMP280({bmpx.getTemp():6.2f}°C/{bmpx.getPress()/100:6.1f}hPa)', end = '')
  18. except KeyboardInterrupt:
  19.     print('')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement