-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathble_json_peripheral.py
48 lines (37 loc) · 1.48 KB
/
ble_json_peripheral.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# SPDX-FileCopyrightText: 2020 Mark Raleson
#
# SPDX-License-Identifier: MIT
# Provide readable sensor values and writable settings to connected devices via JSON characteristic.
import time
import random
from ble_json_service import SensorService
from adafruit_ble import BLERadio
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
# Create BLE radio, custom service, and advertisement.
ble = BLERadio()
service = SensorService()
advertisement = ProvideServicesAdvertisement(service)
# Function to get some fake weather sensor readings for this example in the desired unit.
def measure(unit):
temperature = random.uniform(0.0, 10.0)
humidity = random.uniform(0.0, 100.0)
if unit == "fahrenheit":
temperature = (temperature * 9.0 / 5.0) + 32.0
return {"temperature": temperature, "humidity": humidity}
# Advertise until another device connects, when a device connects, provide sensor data.
while True:
print("Advertise services")
ble.stop_advertising() # you need to do this to stop any persistent old advertisement
ble.start_advertising(advertisement)
print("Waiting for connection...")
while not ble.connected:
pass
print("Connected")
while ble.connected:
settings = service.settings
measurement = measure(settings.get("unit", "celsius"))
service.sensors = measurement
print("Settings: ", settings)
print("Sensors: ", measurement)
time.sleep(0.25)
print("Disconnected")