Interface IRheostat
Represents an adjustable resistor (rheostat).
Assembly: Meadow.Contracts.dll
View Source
Declaration
public interface IRheostat
Properties
MaxResistance
Gets the maximum resistance of the rheostat.
View Source
Declaration
Resistance MaxResistance { get; }
Resistance
Gets or sets the current resistance of the rheostat.
View Source
Declaration
Resistance Resistance { get; set; }
Events
Changed
Raised when a change is detected
View Source
Declaration
event EventHandler<IChangeResult<Resistance>>? Changed
Event Type
System.EventHandler<Meadow.IChangeResult<Meadow.Units.Resistance>>