python-bme280/demo.py

17 lines
285 B
Python
Raw Permalink Normal View History

2018-03-14 22:52:10 +01:00
#!/usr/bin/env python
2016-05-30 22:13:05 +02:00
import bme280
def main():
2018-03-14 22:52:10 +01:00
bme = bme280.Bme280()
bme.set_mode(bme280.MODE_FORCED)
t, p, h = bme.get_data()
print("Temperature: %f °C" % t)
print("Pressure: %f P" % p)
print("Humidity: %f %%" % h)
if __name__ == '__main__':
main()