Add project files.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.IO.Ports;
|
||||
|
||||
namespace TheXamlGuy.Framework.Serial;
|
||||
|
||||
public class SerialConnectionStreamer : ISerialConnectionStreamer
|
||||
{
|
||||
public SerialConnectionStreamer(SerialPort serial)
|
||||
{
|
||||
Stream = serial.BaseStream;
|
||||
}
|
||||
|
||||
public Stream Stream { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user