After running the docker compose configuration add homebridge-zigbee
plugin using the following command:
docker-compose exec homebridge npm i homebridge-zigbee
<!doctype html> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |
const XIAOMI_STRUCT_ATTR = { id: 65281, type: 'charStr' } | |
const XIAOMI_STRUCT_OLD_ATTR = { id: 65282, type: 'charStr' } | |
const XIAOMI_MULTICLICK_ATTR = { id: 32768, type: 'boolean' } | |
const XIAOMI_PRESSURE_ATTR = { id: 16, type: 'int16' } | |
function parseXiaomiStruct(rawData) { | |
const buffer = new Buffer(rawData, 'ascii') | |
const data = {} | |
let index = 0 | |
while (index < buffer.length) { |
const HomeKitDevice = require('../HomeKitDevice') | |
class IkeaTradfriDimmableBulb extends HomeKitDevice { | |
static get description() { | |
return { | |
model: [ | |
'TRADFRI bulb E27 opal 1000lm', | |
'TRADFRI bulb E27 W opal 1000lm', | |
], | |
manufacturer: 'IKEA of Sweden', |
const HomeKitDevice = require('../HomeKitDevice') | |
class AqaraTunableWhiteBulb extends HomeKitDevice { | |
static get description() { | |
return { | |
model: 'lumi.light.aqcn02', | |
manufacturer: 'LUMI', | |
name: 'Aqara Bulb', | |
} | |
} |
#EXTM3U | |
#EXTINF:0,Первый канал | |
#EXTGRP:другие | |
http://6557675f.ottclub.mobi/iptv/WXR5KQQTP3GSPP/127/index.m3u8 | |
#EXTINF:0,Россия 1 | |
#EXTGRP:другие | |
http://6557675f.ottclub.mobi/iptv/WXR5KQQTP3GSPP/504/index.m3u8 | |
#EXTINF:0,НТВ | |
#EXTGRP:другие | |
http://6557675f.ottclub.mobi/iptv/WXR5KQQTP3GSPP/501/index.m3u8 |
const HomeKitDevice = require('../HomeKitDevice') | |
class GledoptoLedController extends HomeKitDevice { | |
static get description() { | |
return { | |
model: [ | |
'GLEDOPTO', | |
], | |
manufacturer: 'GLEDOPTO', | |
name: 'GLEDOPTO Led Controller', |