控制连接到 com 端口的硬件
可能的重复:
我想制作一个能够控制客户端计算机上的硬件的网站。
- 该硬件例如是一个简单的 gsm 调制解调器,
这是一个一般性问题,用于询问方法和意见,例如对于以下
使用硬件连接到的计算机控制此硬件。
使用网络上的另一台计算机控制该硬件
使用网站应用程序或简单的网站
需要考虑的事情 -->这是我们在 c# asp.net 中实现的一个班级小组项目。
编辑
希望范围缩小。
假设我的计算机的通讯端口连接了一个遥控器,它控制着一辆小型汽车。
我希望世界各地的用户能够使用键盘移动汽车。
我可以编写一个桌面应用程序来使用打印机端口控制远程,但这仅在我的本地主机上。
明白重点 /?
感谢你
Possible Duplicate:
i want to make a web site which is able to control a hardware on a clients computer.
- the the hardware for example be a simple gsm modem
this is a general question, for asking of methods and opinions as for the following
control this hardware using the computer the hardware is connected to.
control this hardware using another computer over a network
control this hardware using a web site application or a simple web site
the thing to consider --> this is a class group project which we implement in c# asp.net.
edit
hope the broadness is narrowed down.
assume there is a remote control attached to the comm port of my computer, which controls a small car.
i want user around the world to be able to move the car using there keyboard.
i can write a desktop app to control the remote using the printer port but thats on my local host only.
get the point
/?
thanku
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要执行的任务听起来类似于以下 http://www.lss.hr/ RCcar/en/documentation.html,尽管他们已经使用 PHP、JavaScript 和 C 实现了它。源代码和文档是可用的,这应该为您提供一个良好的起点。
在服务器端控制汽车的代码与桌面应用程序的代码类似,当用户单击网页上的链接时,您只需向汽车发送命令。
The task you want to do sounds similar to the following http://www.lss.hr/RCcar/en/documentation.html although they have implemented it using PHP, JavaScript and C. The source code and documentation is available which should provide you with a good starting point.
The code to control the car on the server side will be similar to that of desktop app you would just send commands to the car when a user clicks a link on the web page.