Skip to content

Class Mycila::PWMDimmer

ClassList > Mycila > PWMDimmer

PWM based dimmer implementation for voltage regulators controlled by a PWM signal to 0-10V analog convertor.

  • #include <MycilaDimmerPWM.h>

Inherits the following classes: Mycila::PhaseControlDimmer

Public Functions

Type Name
virtual bool begin () override
Enable a dimmer on a specific GPIO pin.
virtual void end () override
Disable the dimmer.
uint32_t getFrequency () const
Get the PWM frequency in Hz.
gpio_num_t getPin () const
Get the GPIO pin used for the dimmer.
uint8_t getResolution () const
Get the PWM resolution in bits.
void setFrequency (uint32_t frequency)
Set the PWM frequency in Hz.
void setPin (gpio_num_t pin)
Set the GPIO pin to use for the dimmer.
void setResolution (uint8_t resolution)
Set the PWM resolution in bits.
virtual const char * type () override const
virtual ~PWMDimmer ()

Public Functions inherited from Mycila::PhaseControlDimmer

See Mycila::PhaseControlDimmer

Type Name
void enablePowerLUT (bool enable)
Enable or disable the use of power LUT for this phase-control dimmer The power LUT provides a non-linear dimming curve that is more aligned with human perception of brightness. If disabled, a linear dimming curve will be used.
virtual float getPowerRatio () override const
virtual bool isOnline () override const
Returns true if the dimmer is online.
bool isPowerLUTEnabled () const
Check if the power LUT is enabled.
virtual bool setDutyCycle (float dutyCycle) override
Set the power duty, eventually remapped by the power LUT if enabled.
virtual ~PhaseControlDimmer ()

Public Functions inherited from Mycila::Dimmer

See Mycila::Dimmer

Type Name
virtual bool begin ()
bool calculateHarmonics (float * array, size_t n) const
bool calculateMetrics (Metrics & metrics, float gridVoltage, float loadResistance) const
virtual void end ()
float getDutyCycle () const
Get the power duty cycle configured for the dimmer by the user.
float getDutyCycleFire () const
Get the real firing duty cycle (conduction duty cycle) applied to the dimmer in the range [0, 1].
float getDutyCycleLimit () const
Get the power duty cycle limit of the dimmer.
float getDutyCycleMapped () const
Get the remapped power duty cycle from the currently user set duty cycle.
float getDutyCycleMax () const
Get the remapped "1" of the dimmer duty cycle.
float getDutyCycleMin () const
Get the remapped "0" of the dimmer duty cycle.
virtual float getPowerRatio () const
bool isEnabled () const
Check if the dimmer is enabled (if it was able to initialize correctly)
bool isOff () const
Check if the dimmer is off.
bool isOn () const
Check if the dimmer is on.
bool isOnAtFullPower () const
Check if the dimmer is on at full power.
virtual bool isOnline () const
Returns true if the dimmer is online.
void off ()
Turn off the dimmer.
void on ()
Turn on the dimmer at full power.
virtual bool setDutyCycle (float dutyCycle)
Set the power duty.
void setDutyCycleLimit (float limit)
Set the power duty cycle limit of the dimmer. The duty cycle will be clamped to this limit.
void setDutyCycleMax (float max)
Duty remapping (equivalent to Shelly Dimmer remapping feature). Useful to calibrate the dimmer when using for example a PWM signal to 0-10V analog convertor connected to a voltage regulator which is only working in a specific voltage range like 1-8V.
void setDutyCycleMin (float min)
Duty remapping (equivalent to Shelly Dimmer remapping feature). Useful to calibrate the dimmer when using for example a PWM signal to 0-10V analog convertor connected to a voltage regulator which is only working in a specific voltage range like 1-8V.
void setOnline (bool online)
Set the online status of the dimmer.
virtual const char * type () const
virtual ~Dimmer ()

Public Static Functions inherited from Mycila::Dimmer

See Mycila::Dimmer

Type Name
uint16_t getSemiPeriod ()
Get the semi-period in us used for the power LUT calculations. If LUT is disabled, returns 0.
void setSemiPeriod (uint16_t semiPeriod)
Set the semi-period of the grid frequency in us for this dimmer. This is mandatory when using power LUT.

Protected Attributes inherited from Mycila::PhaseControlDimmer

See Mycila::PhaseControlDimmer

Type Name
bool _powerLUTEnabled = false

Protected Attributes inherited from Mycila::Dimmer

See Mycila::Dimmer

Type Name
float _dutyCycle = 0.0f
float _dutyCycleFire = 0.0f
float _dutyCycleLimit = 1.0f
float _dutyCycleMax = 1.0f
float _dutyCycleMin = 0.0f
bool _enabled = false
bool _online = false

Protected Static Attributes inherited from Mycila::Dimmer

See Mycila::Dimmer

Type Name
uint16_t _semiPeriod = 0

Protected Functions

Type Name
virtual bool _apply () override

Protected Functions inherited from Mycila::PhaseControlDimmer

See Mycila::PhaseControlDimmer

Type Name
virtual bool _calculateDimmerHarmonics (float * array, size_t n) override const

Protected Functions inherited from Mycila::Dimmer

See Mycila::Dimmer

Type Name
virtual bool _apply ()
virtual bool _calculateDimmerHarmonics (float * array, size_t n) const

Protected Static Functions inherited from Mycila::PhaseControlDimmer

See Mycila::PhaseControlDimmer

Type Name
uint16_t _lookupFiringDelay (float dutyCycle)

Protected Static Functions inherited from Mycila::Dimmer

See Mycila::Dimmer

Type Name
float _contrain (float amt, float low, float high)

Public Functions Documentation

function begin

Enable a dimmer on a specific GPIO pin.

virtual bool Mycila::PWMDimmer::begin () override

Warning:

Dimmer won't be enabled if pin is invalid

Warning:

Dimmer won't be activated until the ZCD is enabled

Implements Mycila::Dimmer::begin


function end

Disable the dimmer.

virtual void Mycila::PWMDimmer::end () override

Warning:

Dimmer won't be destroyed but won't turn on anymore even is a duty cycle is set.

Implements Mycila::Dimmer::end


function getFrequency

Get the PWM frequency in Hz.

inline uint32_t Mycila::PWMDimmer::getFrequency () const


function getPin

Get the GPIO pin used for the dimmer.

inline gpio_num_t Mycila::PWMDimmer::getPin () const


function getResolution

Get the PWM resolution in bits.

inline uint8_t Mycila::PWMDimmer::getResolution () const


function setFrequency

Set the PWM frequency in Hz.

inline void Mycila::PWMDimmer::setFrequency (
    uint32_t frequency
) 


function setPin

Set the GPIO pin to use for the dimmer.

inline void Mycila::PWMDimmer::setPin (
    gpio_num_t pin
) 


function setResolution

Set the PWM resolution in bits.

inline void Mycila::PWMDimmer::setResolution (
    uint8_t resolution
) 


function type

inline virtual const char * Mycila::PWMDimmer::type () override const

Implements Mycila::Dimmer::type


function ~PWMDimmer

inline virtual Mycila::PWMDimmer::~PWMDimmer () 

Protected Functions Documentation

function _apply

inline virtual bool Mycila::PWMDimmer::_apply () override

Implements Mycila::Dimmer::_apply



The documentation for this class was generated from the following file src/MycilaDimmerPWM.h