first commit
This commit is contained in:
commit
a5a0434432
1126 changed files with 439481 additions and 0 deletions
14
Software/CSharp/GrovePi/Sensors/WaterAtomizer.cs
Normal file
14
Software/CSharp/GrovePi/Sensors/WaterAtomizer.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
namespace GrovePi.Sensors
|
||||
{
|
||||
public interface IWaterAtomizer
|
||||
{
|
||||
SensorStatus CurrentState { get; }
|
||||
IWaterAtomizer ChangeState(SensorStatus newState);
|
||||
}
|
||||
|
||||
internal class WaterAtomizer : Sensor<IWaterAtomizer>, IWaterAtomizer
|
||||
{
|
||||
public WaterAtomizer(IGrovePi device, Pin pin) : base(device, pin, PinMode.Output)
|
||||
{ }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue