Add the development IDs as defined by MOANA
This commit is contained in:
parent
4265afd31d
commit
250e8496d2
2 changed files with 6 additions and 2 deletions
|
@ -4,6 +4,10 @@
|
|||
#include "Arduino.h"
|
||||
#include <obus_can.h>
|
||||
|
||||
#define OBUS_PUZZLE_ID_DEVELOPMENT 255
|
||||
#define OBUS_NEEDY_ID_DEVELOPMENT 255
|
||||
#define OBUS_INFO_ID_DEVELOPMENT 255
|
||||
|
||||
namespace obus_module {
|
||||
|
||||
void setup(uint8_t type, uint8_t id);
|
||||
|
|
|
@ -8,9 +8,9 @@ void setup() {
|
|||
|
||||
// Choose one
|
||||
// Puzzle: a module that must be solved
|
||||
obus_module::setup(OBUS_TYPE_PUZZLE, /* Retrieve ID from MOANA */);
|
||||
obus_module::setup(OBUS_TYPE_PUZZLE, OBUS_PUZZLE_ID_DEVELOPMENT);
|
||||
// Needy: a module that periodically requires an action not to get strikes
|
||||
// obus_module::setup(OBUS_TYPE_NEEDY, /* Retrieve ID from MOANA */);
|
||||
// obus_module::setup(OBUS_TYPE_NEEDY, OBUS_NEEDY_ID_DEVELOPMENT);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue