2020-08-26 21:13:16 +02:00
|
|
|
#ifndef OBUS_MODULE_H
|
|
|
|
#define OBUS_MODULE_H
|
|
|
|
|
|
|
|
#include "Arduino.h"
|
|
|
|
#include <obus_can.h>
|
|
|
|
|
2020-08-31 12:56:03 +02:00
|
|
|
#define OBUS_PUZZLE_ID_DEVELOPMENT 255
|
|
|
|
#define OBUS_NEEDY_ID_DEVELOPMENT 255
|
|
|
|
#define OBUS_INFO_ID_DEVELOPMENT 255
|
|
|
|
|
2020-08-26 23:35:13 +02:00
|
|
|
void callback_game_start();
|
|
|
|
|
|
|
|
void callback_game_stop();
|
|
|
|
|
2020-08-26 21:13:16 +02:00
|
|
|
namespace obus_module {
|
|
|
|
|
|
|
|
void setup(uint8_t type, uint8_t id);
|
|
|
|
|
2020-08-27 05:30:22 +02:00
|
|
|
bool loopPuzzle(obus_can::message* message);
|
|
|
|
|
|
|
|
bool loopNeedy(obus_can::message* message);
|
2020-08-26 21:13:16 +02:00
|
|
|
|
|
|
|
void strike();
|
|
|
|
|
|
|
|
void solve();
|
|
|
|
|
2020-08-27 05:30:22 +02:00
|
|
|
bool is_active();
|
|
|
|
|
2020-08-26 21:13:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* end of include guard: OBUS_MODULE_H */
|