13 lines
367 B
Python
13 lines
367 B
Python
# Replace with your Arduino's service and characteristic UUIDs
|
|
SERVICE_UUID = "9f0dfdb2-e978-494c-8f15-68dbe8d28672"
|
|
MILLIS_UUID = "abb92561-a809-453c-8c7c-71d3fff5b86e"
|
|
WEIGHT_UUID = "123e4567-e89b-12d3-a456-426614174000"
|
|
|
|
DEFAULT_CALIB = 307333.83
|
|
|
|
MOV_AVG_DEFAULTS = {
|
|
"window_size": 10,
|
|
"decimals": 1,
|
|
"reset_threshold": 0.5,
|
|
"ignore_samples": 2
|
|
} |