-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskybeacon.py
More file actions
195 lines (160 loc) · 5.98 KB
/
Copy pathskybeacon.py
File metadata and controls
195 lines (160 loc) · 5.98 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
"""
Support for SKYBEACON temperature/humidity Bluetooth LE sensor.
These are inexpensive CR2477-powered ibeacon/eddystone sensors
that come with temperature/sensor module.
More information: http://cnsky9.en.alibaba.com
example:
sensor:
- platform: skybeacon
mac: 'F7:BE:12:02:47:31'
name: 'living room'
"""
import logging
import threading
import voluptuous as vol
from uuid import UUID
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import (CONF_NAME,
CONF_MAC,
TEMP_CELSIUS,
STATE_UNKNOWN,
EVENT_HOMEASSISTANT_STOP)
REQUIREMENTS = ['pygatt==3.0.0']
CONNECT_LOCK = threading.Lock()
_LOGGER = logging.getLogger(__name__)
ATTR_DEVICE = 'device'
ATTR_MODEL = 'model'
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_MAC): cv.string,
vol.Optional(CONF_NAME, default=""): cv.string,
})
BLE_TEMP_UUID = '0000ff92-0000-1000-8000-00805f9b34fb'
BLE_TEMP_HANDLE = 0x24
SKIP_HANDLE_LOOKUP = True
CONNECT_TIMEOUT = 30
# pylint: disable=unused-argument
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Setup the sensor."""
name = config.get(CONF_NAME)
mac = config.get(CONF_MAC)
_LOGGER.error("setting up..")
mon = Monitor(hass, mac, name)
add_devices([SkybeaconTemp(name, mon)])
add_devices([SkybeaconHumid(name, mon)])
def monitor_stop(_service_or_event):
"""Stop the monitor thread"""
_LOGGER.info("skybeacon: stopping monitor for %s ", name)
mon.terminate()
hass.bus.listen_once(EVENT_HOMEASSISTANT_STOP, monitor_stop)
mon.start()
class SkybeaconHumid(Entity):
"""Representation of a humidity sensor."""
def __init__(self, name, mon):
"""Initialize a sensor."""
self.mon = mon
self._name = name
@property
def name(self):
"""Return the name of the sensor."""
return self._name
@property
def state(self):
"""Return the state of the device."""
return self.mon.data['humid']
@property
def unit_of_measurement(self):
"""Return the unit the value is expressed in."""
return "%"
@property
def device_state_attributes(self):
"""Return the state attributes of the sensor."""
return {
ATTR_DEVICE: "SKYBEACON",
ATTR_MODEL: 1,
}
class SkybeaconTemp(Entity):
"""Representation of a temperature sensor."""
def __init__(self, name, mon):
"""Initialize a sensor."""
self.mon = mon
self._name = name
@property
def name(self):
"""Return the name of the sensor."""
return self._name
@property
def state(self):
"""Return the state of the device."""
return self.mon.data['temp']
@property
def unit_of_measurement(self):
"""Return the unit the value is expressed in."""
return TEMP_CELSIUS
@property
def device_state_attributes(self):
"""Return the state attributes of the sensor."""
return {
ATTR_DEVICE: "SKYBEACON",
ATTR_MODEL: 1,
}
class Monitor(threading.Thread):
"""Connection handling."""
def __init__(self, hass, mac, name):
"""Construct interface object."""
threading.Thread.__init__(self)
self.daemon = False
self.hass = hass
self.mac = mac
self.name = name
self.data = {'temp': STATE_UNKNOWN, 'humid': STATE_UNKNOWN}
self.keep_going = True
self.event = threading.Event()
def run(self):
"""Thread that keeps connection alive."""
import pygatt
from pygatt.backends import Characteristic
from pygatt.exceptions import (BLEError,
NotConnectedError,
NotificationTimeout)
cached_char = Characteristic(BLE_TEMP_UUID, BLE_TEMP_HANDLE)
adapter = pygatt.backends.GATTToolBackend()
while True:
try:
_LOGGER.info("connecting to %s", self.name)
# we need concurrent connect, so lets not reset the device
adapter.start(reset_on_start=False)
# seems only one connection can be initiated at a time
with CONNECT_LOCK:
device = adapter.connect(self.mac,
CONNECT_TIMEOUT,
pygatt.BLEAddressType.random)
if SKIP_HANDLE_LOOKUP:
# HACK: inject handle mapping collected offline
# pylint: disable=protected-access
device._characteristics[UUID(BLE_TEMP_UUID)] = cached_char
# magic: writing this makes device happy
device.char_write_handle(0x1b, bytearray([255]), False)
device.subscribe(BLE_TEMP_UUID, self._update)
_LOGGER.info("subscribed to %s", self.name)
while self.keep_going:
# protect against stale connections, just read temperature
device.char_read(BLE_TEMP_UUID, timeout=CONNECT_TIMEOUT)
self.event.wait(60)
break
except (BLEError, NotConnectedError, NotificationTimeout) as ex:
_LOGGER.error("Exception: %s ", str(ex))
finally:
adapter.stop()
def _update(self, handle, value):
"""Notification callback from pygatt."""
_LOGGER.info("%s: %15s temperature = %-2d.%-2d, humidity = %3d",
handle, self.name, value[0], value[2], value[1])
self.data['temp'] = float(("%d.%d" % (value[0], value[2])))
self.data['humid'] = value[1]
def terminate(self):
"""Terminate"""
self.keep_going = False
self.event.set()
self.join()