我有这个 index.html,我已经将我的树莓派与模块继电器连接起来。问题是当我打开使用按钮的网站时,它就像按钮已经被点击一样开始。当我单击按钮时,我想将信号发送到继电器。我应该改变什么?
webiopi().ready(function() {
webiopi().setFunction(7,"out");
var content, button;
content = $("#content");
button = webiopi().createGPIOButton(7, "SWITCH");
content.append(button);
webiopi().refreshGPIO(true);
});