We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
根据您的硬件和设置,您可能需要查看player/stage 项目。这为许多机器人平台和传感器提供了硬件抽象层,并且具有 C 和 C++ 客户端。它可以分布在多台机器上运行,因此您可以在机器人上网本和桌面上执行操作。该软件包被大量机器人研究人员使用,并为许多常见的机器人任务提供支持。如果合适的话,它将为您节省大量工作和重新发明轮子。
Depending on your hardware and setup you might want to look at the player/stage project. This provides a hardware abstraction layer for many robot platforms and sensors and has both C and C++ clients. It can run distributed across multiple machines so you can do stuff both on the robot netbook and your desktop. This package is used by a large number of robotics researchers and provides support for many common robotics tasks. If it's appropriate it will save you a lot of work and wheel reinvention.
使用什么接口?这不像您将传感器直接插入主板。您将使用 RS232、USB 或其他接口与外部 AD 转换器进行通信,而传感器又连接到外部 AD 转换器。
这意味着您需要了解两件事:
如何使用您将使用的接口(例如:打开/关闭 RS 端口、通过此端口发送/接收数据)
您需要向外部硬件发送哪些命令,以及您将以什么格式接收数据。
Using what interface? it's not like you plug sensor directly into your mainboard. You will use RS232, USB, or some other interface to communicate to external AD converter, to which in turn a sensor is connected.
This means you need to find out two things:
How to use the interface you'll be using (for example: opening/closing RS port, sending/receiving data over this port)
What commands you need to send to external hardware, and in what format you will receive data.
根据您到底要寻找什么,您可以尝试一下 MRPT:http://www.mrpt.org/
干杯!
depending on what exactly you're looking for, you could give the MRPT a try: http://www.mrpt.org/
cheers!