我是这个的新手。我找到了一些代码来控制由单个 html 文件引导的 Arduino。他们说我们必须使用 johnny-5 和 node-js 协议来控制它。但是我发现这种方式有问题,我成功连接到Arduino并打开本地主机。但是,我只是找到了几个按钮,并且无法控制 LED。我会尝试解决它,但什么也没发生。
这是我的源代码 代码
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
$(document).ready(function() {
var socket = io.connect('http://localhost');
$('#button').click(function(e){
socket.emit('click');
e.preventDefault();
});
});
</script>
</head>
<body>
<button id="button" href="#">LED ON/OFF</button>
</body>
</html>
和
var app = require('http').createServer(handler),
io = require('socket.io').listen(app),
fs = require('fs'),
five = require('johnny-five');
app.listen(8080);
function handler(req, res) {
fs.readFile(__dirname + '/index.html',
function(err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
board = new five.Board();
board.on("ready", function() {
led = new five.Led(13);
io.sockets.on('connection', function(socket) {
socket.on('click', function() {
led.toggle();
});
});
});