请帮助我了解如何在Chrome或Firefox中安装Seriality Plugin(www.zambetti.com/projects/seriality/)。
我想从网页客户端的COM端口读取。
答案 0 :(得分:0)
查看Google代码网站,该网站包含可用于安装Seriality.plugin文件的DMG文件。
https://code.google.com/p/seriality/
您还可以在网站上看到显示要使用该插件的javascript的示例源,下面是网站上显示的一个片段,它将“Hello World”打印到系统上看到的第一个端口,波特率为9600时这个HTML文件已加载。
<html>
<head>
<script type="text/javascript">
function setup()
{
var serial = (document.getElementById("seriality")).Seriality();
serial.begin(serial.ports[0], 9600);
serial.write("Hello World");
}
</script>
</head>
<body onload="setup();">
<object type="application/Seriality" id="seriality" width="0" height="0"></object>
</body>
</html>