1090mhz 接收器和 MySql 数据库

发布于 2024-11-10 16:38:52 字数 359 浏览 2 评论 0原文

我有一个 1090MHz 的接收器。它收到的东西现在并不重要。但您可以在此处查看。它通过 USB 端口输出十六进制数据字符串。 到目前为止,一切都很好。我想要做的是创建 ac# 程序,该程序将从端口检索数据,进行一些我可以自己处理的解码,然后将其存储在我的电脑上运行的 Mysql 数据库中。我有 C# 的基础知识。 所以我的问题如下:

  • 如何使用 c# 从虚拟串行端口检索数据
  • 如何使用 c# 将变量的内容存储到 Mysql 数据库

如果可能,请提供任何带有示例的链接或分步教程或其他内容。

I have a 1090mhz receiver. What it receives its not very important right now. But you can have a look at it here . It outputs strings of hex data over a USB port.
So far so good. What i want to do is create a c# program that will retrieve the data from the port, do a little decoding which i can handle my self and then store it in a Mysql database which is running on my pc. I have basic knowledge of c#.
So my questions are the following :

  • How can I retrieve the data from the virtual serial port using c#
  • How can I store the contents of variables in to a Mysql database using c#

If possible provide any link with examples or step by step tutorials or something.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生路 2024-11-17 16:38:52

要从串行端口读取数据,请查看 MSDN 上 SerialPort 类的文档:

http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx

对于写入 MySql,我谷歌搜索“MySql C#”。至少有几页可以帮助您自我引导。

或者考虑使用 DB ORM,例如 NHibernate 与 MySql。

For reading from the serial port, check out the documentation on MSDN for the SerialPort class:

http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx

For writing to MySql, I'd google for "MySql C#". There are at least a few pages that will help you bootstrap yourself.

Or look into using a DB ORM like NHibernate with MySql.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文