Last active
August 31, 2020 21:10
-
-
Save elizabethn119/1f7d02b3b662c1008ab7923a842e1214 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from ISStreamer.Streamer import Streamer | |
from board import SCL, SDA | |
import busio | |
from adafruit_seesaw.seesaw import Seesaw | |
# --------- User Settings --------- | |
SENSOR_LOCATION_NAME = "House Plant" | |
BUCKET_NAME = "House Plant" | |
BUCKET_KEY = "soilsensor" | |
ACCESS_KEY = "ENTER ACCESS KEY HERE" | |
MINUTES_BETWEEN_READS = 0.25 | |
# --------------------------------- | |
i2c_bus = busio.I2C(SCL, SDA) | |
ss = Seesaw(i2c_bus, addr=0x36) | |
streamer = Streamer(bucket_name=BUCKET_NAME, bucket_key=BUCKET_KEY, access_key=ACCESS_KEY) | |
while True: | |
# read moisture level through capacitive touch pad | |
touch = ss.moisture_read() | |
# read temperature from the temperature sensor and convert to F | |
temp = ss.get_temp() | |
temp_f = format(temp * 9.0 / 5.0 + 32, ".2f") | |
streamer.log(SENSOR_LOCATION_NAME + " Moisture", touch) | |
streamer.log(SENSOR_LOCATION_NAME + " Temperature", temp_f) | |
streamer.flush() | |
time.sleep(60*MINUTES_BETWEEN_READS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment