Files
Toolkit2/Toolkit.Foundation/SerialStreamer.cs
T
Dan Clark f6e55b7a21 wip
2025-02-10 12:50:45 +00:00

10 lines
200 B
C#

using System.IO.Ports;
namespace Toolkit.Foundation;
public class SerialStreamer(SerialPort serialPort) :
ISerialStreamer
{
public Stream Create() => new SerialPortStream(serialPort);
}