1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

update ibeacon

This commit is contained in:
kev 2017-04-24 18:12:19 +08:00
parent b65f8a8335
commit c05e1ead36
2 changed files with 26 additions and 0 deletions

25
hass/arm/ibeacon.init Normal file

@ -0,0 +1,25 @@
#!/bin/sh /etc/rc.common
# (C) 2017 easypi.info
#
# See: https://wiki.openwrt.org/doc/howto/usb.bluetooth
#
START=99
UUID="77 77 77 77 77 77 77 77 77 77 77 77 77 77 77 77"
MAJOR="00 00"
MINOR="00 00"
POWER="C8"
start() {
/usr/bin/hciconfig hci0 up
/usr/bin/hciconfig hci0 noscan
/usr/bin/hcitool -i hci0 cmd 0x08 0x0008 1E 02 01 1A 1A FF 4C 00 02 15 $UUID $MAJOR $MINOR $POWER 00
/usr/bin/hcitool -i hci0 cmd 0x08 0x0006 A0 00 A0 00 03 00 00 00 00 00 00 00 00 07 00
/usr/bin/hcitool -i hci0 cmd 0x08 0x000a 01
}
stop() {
/usr/bin/hciconfig hci0 noleadv
/usr/bin/hciconfig hci0 down
}

@ -19,6 +19,7 @@ ExecStart=/usr/bin/hcitool -i hci0 cmd 0x08 0x000a 01
# See: http://stackoverflow.com/questions/21124993/
# ExecStart=/bin/hciconfig hci0 leadv 3
ExecStop=/bin/hciconfig hci0 noleadv
ExecStop=/bin/hciconfig hci0 down
RemainAfterExit=yes
[Install]