22 lines
477 B
Python
22 lines
477 B
Python
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import time
|
|
|
|
import board
|
|
|
|
from adafruit_seesaw.seesaw import Seesaw
|
|
|
|
i2c_bus = board.I2C()
|
|
|
|
ss = Seesaw(i2c_bus, addr=0x36)
|
|
|
|
while True:
|
|
# read moisture level through capacitive touch pad
|
|
touch = ss.moisture_read()
|
|
|
|
# read temperature from the temperature sensor
|
|
temp = ss.get_temp()
|
|
|
|
print("temp: " + str(temp) + " moisture: " + str(touch))
|
|
time.sleep(1)
|