Add the development IDs as defined by MOANA

This commit is contained in:
Midgard 2020-08-31 12:56:03 +02:00
parent 4265afd31d
commit 250e8496d2
Signed by: midgard
GPG key ID: 511C112F1331BBB4
2 changed files with 6 additions and 2 deletions

View file

@ -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);

View file

@ -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);
}