我正在尝试使用 openhab 对可切换灯进行编程。我在 shell 中的脚本运行良好,但我无法在我的 eclipse 程序中打开 shell 命令。
astro.sitemap:
sitemap astro label="Home"{
Text label="Wohnzimmer" icon=firstfloor{
Frame label="Funksteckdosen Gruppe"{
Switch item=poweroutletASwitch
}
}
Text label="Draußen" icon=garden {
Frame {
Default item=Sunrise_Time
Default item=Sunset_Time
}
Frame{
Text item=Temperature
Text item=Dimensionless
Text item=MoonPhase
}
}
}
电源插座。项目:
Group grp_poweroutlets "Funksteckdosen Gruppe" <poweroutlet>
String poweroutletASwitch "Funksteckdose A" <poweroutlet> [ "Switchable"
] { channel="exec:command:poweroutletA-control", autoupdate="true" }
电源插座.东西
Thing exec:command:poweroutletA-control [
command="/opt/433Utils/RPi_utils/run.sh A %2$s", interval=0,
autorun=true ]
有什么建议吗?