Home

Awesome

SHT15 Logger

Temperature and Humidity Logger using SHT15 written in Python 3 (MicroPython for the PyBoard 1.1).

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Wiring

pyboardSHT15
Y5GND
Y6SCK
Y7DATA
Y8VCC

I recommend to also connect VBACK (P6) to a backup battery. This makes sure that the RTC keeps time when disconnecting the board and connecting it someplace else.

Installing

Copy main.py and lib/sht15.py on a SD-card and plug it into the board or the internal flash (via USB).

The logger uses the RTC to write down when the measurement has been taken. Make sure to set date and time correctly:

from pyb import RTC
rtc = RTC()
rtc.datetime((2019, 6, 12, 3, 8, 49, 20, 0)) # y, m, d, weekday, h, m s, ms
rtc.datetime()

Built With

License

This project is licensed under the MIT License - see the LICENSE file for details