How to continuously read Serial COM port in Powershell and occasionally write to COM port

偶尔善良 提交于 2021-02-07 14:44:25

问题


I need to know how I can continuously read data in from the COM port and dump it to a file using Windows Powershell. While I am reading data in, I also need to monitor the data being read in and, depending on what the last line that was read, write data to the COM port.

To open the COM port in Powershell, I am doing this:

[System.IO.Ports.SerialPort]::getportnames()
$port= new-Object System.IO.Ports.SerialPort COM3,115200,None,8,one
$port.open()

To read data in to the COM port, I am doing this:

$line=$port.ReadLine()

My initial thought was to have the main Powershell script open the COM port. Then it would start a background/child task to continuously read data in from COM port and dump it to a file. While that child task is running, the parent would then continuously monitor the file and write to the COM port when needed.

When I tried to do that, the child could not read data in from the COM port because the parent had it open and the child did not inherit that permission from the parent.

Any ideas on how I can accomplish this?


回答1:


Simple answer: while loop. Calling functions to decide when to write data. Use child task and scripts to handle/process/get data but keep the communication in the same task/script. I used this code to read from my Ardunio:

$COM = [System.IO.Ports.SerialPort]::getportnames()

function read-com {
    $port= new-Object System.IO.Ports.SerialPort $COM,9600,None,8,one
    $port.Open()
    do {
        $line = $port.ReadLine()
        Write-Host $line # Do stuff here
    }
    while ($port.IsOpen)
}


来源:https://stackoverflow.com/questions/31297365/how-to-continuously-read-serial-com-port-in-powershell-and-occasionally-write-to

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!