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
In the constructor for MeEncoderOnBoard::MeEncoderOnBoard(int slot) in file MeEncoderOnBoard.cpp line 104 the _enabled flag is set to false.
The first line of the MeEncoderOnBoard::loop() method() checks the _enabled flag and immediately returns if false (line 1056). Motors will not run unless _enabled is set to true.
The only method that sets _enabled to true is the MeEncoderOnBoard.::reset(int slot) method on line 169 which is basically a duplicate of what the constructor does.
The text was updated successfully, but these errors were encountered:
In the constructor for MeEncoderOnBoard::MeEncoderOnBoard(int slot) in file MeEncoderOnBoard.cpp line 104 the _enabled flag is set to false.
The first line of the MeEncoderOnBoard::loop() method() checks the _enabled flag and immediately returns if false (line 1056). Motors will not run unless _enabled is set to true.
The only method that sets _enabled to true is the MeEncoderOnBoard.::reset(int slot) method on line 169 which is basically a duplicate of what the constructor does.
The text was updated successfully, but these errors were encountered: