dongmao9217 2017-10-27 04:42 采纳率: 100%
浏览 789
已采纳

如何使用nodejs读取串口数据并使用rs232电缆将输出发送到PHP服务器?

I need to read a serial port to get data using a RS232 cable, and want to send the output to a PHP server, but i found a way using node.js. I searched a lot and also found a solution in PHP but it doesn't work for me. How to do this?

  • 写回答

1条回答 默认 最新

  • douzhao7634 2017-10-27 05:16
    关注

    If you are on Linux, I would try opening a file descriptor to /dev/your_serial_port. Your php script will probably need permissions (root) to read from this port. You may have a tty group or something similar that allows read from this device. In that case, I would recommend starting your script as root, and using posix_setgid() possibly with posix_getgrnam() to change your process group and not parade around as root.

    $groupInfo = posix_getgrnam("tty");
    if (! isset($groupInfo["gid"])) {
        // "Invalid worker group.
    } else if (! posix_setgid($groupInfo["gid"])) {
        // Failed to change worker group. (privilege required)
    }
    

    I feel bad that you are probably on windows, so I dug around and I think you can open the file 'com1:' on windows and probably read serial data. If that doesn't work, look for a cli program that can dump serial data to stdout and use something like proc_open to read data from it. I have no windows computer to try anything ;(

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据