You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported by: P.B. (Bitbucket: PieBru, GitHub: PieBru)
Hi, in struct relay_t, pulse and pulse_ms should be moved after delay_off, otherwise the _relays.push_back() - i.e. line 700 - doesn't match the struct definition.
#!arduino
...
unsigned char reset_pin; // GPIO to reset the relay if RELAY_TYPE_LATCHED
unsigned long delay_on; // Delay to turn relay ON
unsigned long delay_off; // Delay to turn relay OFF
unsigned char pulse; // RELAY_PULSE_NONE, RELAY_PULSE_OFF or RELAY_PULSE_ON
unsigned long pulse_ms; // Pulse length in millis
...
Otherwise all the _relays.push_back() should be changed.
Piero
The text was updated successfully, but these errors were encountered:
Originally reported by: P.B. (Bitbucket: PieBru, GitHub: PieBru)
Hi, in struct relay_t, pulse and pulse_ms should be moved after delay_off, otherwise the _relays.push_back() - i.e. line 700 - doesn't match the struct definition.
IMO the struct should look:
Otherwise all the _relays.push_back() should be changed.
Piero
The text was updated successfully, but these errors were encountered: