Webiopi没有自动启动继电器

时间:2014-04-10 18:58:00

标签: raspberry-pi gpio webiopi

我有这个index.html,我已经将我的覆盆子pi连接到模块中继。问题是,当我打开网站使用按钮时,它就像按钮已被按下一样启动。我想在点击按钮时将信号发送到继电器。我应该改变什么?

webiopi().ready(function() {

                webiopi().setFunction(7,"out");
                var content, button;
                content = $("#content");

                button = webiopi().createGPIOButton(7, "SWITCH");
                content.append(button);
                webiopi().refreshGPIO(true);              
});

1 个答案:

答案 0 :(得分:0)

我打赌你的继电器是由LOW状态触发的,你可以使用Webiopi将引脚初始化为高或低,编辑/ etc / webiopi / config文件并在启动时将PIN7设置为High,文档在这里{{3 }}。