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?
$linevariable each time its created and do what you need to at that time if it matches the criteria while simultaneously logging it viaOut-Fileor something for logging purposes?headinabookdid you find solution ? please share... I am also trying to read continuously from a serial port.