Skip to main content

Class PwmChannelInfo

Information about a Pulse Width Modulation (PWM) channel

Assembly: Meadow.Contracts.dll
View Source
Declaration
public class PwmChannelInfo : DigitalChannelInfoBase, IPwmChannelInfo, IDigitalChannelInfo, IChannelInfo

Inheritance: System.Object -> Meadow.Hardware.ChannelInfoBase

Implements:
Meadow.Hardware.IPwmChannelInfo

Properties

MinimumFrequency

The minimum pulse frequency supported by the channel

View Source
Declaration
public float MinimumFrequency { get; protected set; }

MaximumFrequency

The maximum pulse frequency supported by the channel

View Source
Declaration
public float MaximumFrequency { get; protected set; }

Timer

Gets the OS system timer number used to drive the PWM

View Source
Declaration
public uint Timer { get; protected set; }

TimerChannel

Gets the OS timer channel used to drive the PWM

View Source
Declaration
public uint TimerChannel { get; protected set; }

Implements