我希望从网络浏览器中显示Arduino的串行数据。
首先,我使用json格式的python中的瓶子将数据放在本地主机上
from bottle import route, run
import serial
dic = {}
ser = serial.Serial(port='COM6',baudrate=9600,timeout=None)
@route('/test')
def test():
c = ser.readline()
c = (str(c)[2:-5]) #just to get rid of the extra characters
dic["val"] = c
return(dic)
run(host='localhost', port=8080, debug=True)
然后我继续使用javascript
阅读它function getArduinoVals(){
$.getJSON("http://localhost:8080/test", function(data){
$('#vals').html(data.val);
});
t = setTimeout("getArduinoVals()",50);
});
}
getArduinoVals();
然而,它似乎无法从本地主机加载(我测试了其他URL)。我该怎么解决这个问题?谢谢!
答案 0 :(得分:0)
您可以使用p5.js的p5.serialport在Web浏览器上获取串行数据。但是您必须在后面运行节点服务器。 https://github.com/vanevery/p5.serialport 您应该检查github仓库以了解p5.serialport的入门。 p5.js与arduino代码样式非常相似,因此它比python更容易和方便。