86 lines
2.5 KiB
Python
Executable file
86 lines
2.5 KiB
Python
Executable file
# SPDX-FileCopyrightText: 2023 Trevor Beaton for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
import os
|
|
import time
|
|
import ssl
|
|
import math
|
|
import board
|
|
import microcontroller
|
|
import wifi
|
|
import socketpool
|
|
import adafruit_minimqtt.adafruit_minimqtt as MQTT
|
|
from adafruit_io.adafruit_io import IO_MQTT
|
|
from adafruit_adxl34x import ADXL345
|
|
from adafruit_lc709203f import LC709203F, PackSize
|
|
|
|
aio_username = os.getenv('aio_username')
|
|
aio_key = os.getenv('aio_key')
|
|
|
|
# Wi-Fi
|
|
try:
|
|
print("Connecting to %s" % os.getenv('CIRCUITPY_WIFI_SSID'))
|
|
wifi.radio.connect(os.getenv('CIRCUITPY_WIFI_SSID'), os.getenv('CIRCUITPY_WIFI_PASSWORD'))
|
|
print("Connected to %s!" % os.getenv('CIRCUITPY_WIFI_SSID'))
|
|
# Wi-Fi connectivity fails with error messages, not specific errors, so this except is broad.
|
|
except Exception as e: # pylint: disable=broad-except
|
|
print("Failed to connect to WiFi. Error:", e, "\nBoard will hard reset in 30 seconds.")
|
|
time.sleep(30)
|
|
microcontroller.reset()
|
|
|
|
# Create a socket pool
|
|
pool = socketpool.SocketPool(wifi.radio)
|
|
|
|
# Initialize a new MQTT Client object
|
|
mqtt_client = MQTT.MQTT(
|
|
broker="io.adafruit.com",
|
|
username= aio_username,
|
|
password= aio_key,
|
|
socket_pool=pool,
|
|
ssl_context=ssl.create_default_context(),
|
|
)
|
|
|
|
# Initialize Adafruit IO MQTT "helper"
|
|
io = IO_MQTT(mqtt_client)
|
|
|
|
try:
|
|
if not io.is_connected:
|
|
# Connect the client to the MQTT broker.
|
|
print("Connecting to Adafruit IO...")
|
|
io.connect()
|
|
print("Connected to Adafruit IO!")
|
|
except Exception as e: # pylint: disable=broad-except
|
|
print("Failed to get or send data, or connect. Error:", e,
|
|
"\nBoard will hard reset in 30 seconds./n")
|
|
time.sleep(30)
|
|
microcontroller.reset()
|
|
|
|
threshold = 20 # set threshold value here
|
|
time_interval = 0.5 # set the time interval in seconds
|
|
|
|
# create the I2C bus object
|
|
i2c = board.STEMMA_I2C()
|
|
|
|
# For ADXL345
|
|
accelerometer = ADXL345(i2c)
|
|
|
|
# To monitor the battery
|
|
battery_monitor = LC709203F(i2c)
|
|
battery_monitor.pack_size = PackSize.MAH400
|
|
|
|
t0 = time.monotonic()
|
|
|
|
while True:
|
|
x, y, z = accelerometer.acceleration
|
|
t1 = time.monotonic()
|
|
dt = t1 - t0
|
|
|
|
total_acceleration = math.sqrt(x**2 + y**2 + z**2)
|
|
if total_acceleration >= threshold:
|
|
print("Battery Percent: {:.2f} %".format(battery_monitor.cell_percent))
|
|
print("Collision strength: %.2f" % total_acceleration)
|
|
io.publish("punch-strength", total_acceleration)
|
|
|
|
# add code here to trigger an event or alert the user
|
|
t0 = t1
|
|
time.sleep(time_interval)
|