mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 09:21:35 +00:00
This Patch will add support to turnoff LEDs of the AP through cloud command Signed-off-by: Nagendrababu <nagendrababu.bonkuri@connectus.ai>
8 lines
219 B
Bash
Executable File
8 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#Blink AP's LED
|
|
/usr/opensync/tools/ovsh insert Node_Config module:="led" key:="led_blink" value:="on"
|
|
|
|
#Turnoff AP's LED
|
|
/usr/opensync/tools/ovsh insert Node_Config module:="led" key:="led_off" value:="off"
|