10 lines
200 B
C#
10 lines
200 B
C#
using System.IO.Ports;
|
|
|
|
namespace Toolkit.Foundation;
|
|
|
|
public class SerialStreamer(SerialPort serialPort) :
|
|
ISerialStreamer
|
|
{
|
|
public Stream Create() => new SerialPortStream(serialPort);
|
|
}
|