This commit is contained in:
thrust26 2020-01-14 11:23:39 +01:00
parent 854e093b84
commit a98c5c3eb4
1 changed files with 2 additions and 2 deletions

View File

@ -328,10 +328,10 @@ class Controller : public Serializable
private:
/// The boolean value on each digital pin
std::array<bool, 5> myDigitalPinState{true};
std::array<bool, 5> myDigitalPinState{true, true, true, true, true};
/// The analog value on each analog pin
std::array<Int32, 2> myAnalogPinValue{MAX_RESISTANCE};
std::array<Int32, 2> myAnalogPinValue{MAX_RESISTANCE, MAX_RESISTANCE};
private:
// Following constructors and assignment operators not supported