Rfxtrx, add data types (#24066)

* Rfxtrx, add data types

* fix style
This commit is contained in:
Daniel Høyer Iversen 2019-05-24 09:46:59 +02:00 committed by Pascal Vizeli
parent 66af4bd011
commit 6cef850497

View File

@ -44,7 +44,24 @@ DATA_TYPES = OrderedDict([
('Sound', ''), ('Sound', ''),
('Sensor Status', ''), ('Sensor Status', ''),
('Counter value', ''), ('Counter value', ''),
('UV', 'uv')]) ('UV', 'uv'),
('Humidity status', ''),
('Forecast', ''),
('Forecast numeric', ''),
('Rain total', ''),
('Wind average speed', ''),
('Wind gust', ''),
('Chill', ''),
('Total usage', ''),
('Count', ''),
('Current Ch. 1', ''),
('Current Ch. 2', ''),
('Current Ch. 3', ''),
('Energy usage', ''),
('Voltage', ''),
('Current', ''),
('Battery numeric', ''),
('Rssi numeric', '')])
RECEIVED_EVT_SUBSCRIBERS = [] RECEIVED_EVT_SUBSCRIBERS = []
RFX_DEVICES = {} RFX_DEVICES = {}