Merge remote-tracking branch 'origin/main' into main
# Conflicts: # IO.hpp
This commit is contained in:
commit
1e2a6f4ba7
292
IO.hpp
292
IO.hpp
|
@ -1,3 +1,4 @@
|
|||
<<<<<<< HEAD
|
||||
#include <Adafruit_SSD1306.h>
|
||||
#include <CodeCell.h>
|
||||
#include <ESP32Servo.h>
|
||||
|
@ -290,3 +291,294 @@ class IO {
|
|||
float m_dir {0};
|
||||
float m_speed {0};
|
||||
};
|
||||
=======
|
||||
/*
|
||||
Copyright 2025
|
||||
Thibaut Ferrand / Ulysse Cura
|
||||
*/
|
||||
|
||||
#include "esp32-hal.h"
|
||||
#include <CodeCell.h>
|
||||
#include <ESP32Servo.h>
|
||||
#include <Adafruit_SSD1306.h>
|
||||
#include <cmath>
|
||||
|
||||
#define PIN_TIRETTE 5
|
||||
#define PIN_BUTTON_COLOR 6
|
||||
#define PIN_MOTOR1 1
|
||||
#define PIN_MOTOR2 2
|
||||
#define PIN_SERVO 7
|
||||
|
||||
#define DANCING_ACTION_DELTA_ANGLE 2
|
||||
|
||||
#define GAIN_KD 100
|
||||
#define ANGULAR_SPEED 10 // °/s
|
||||
|
||||
using std::abs;
|
||||
|
||||
enum class Axes {
|
||||
X,
|
||||
Y,
|
||||
Z
|
||||
};
|
||||
|
||||
class Motor {
|
||||
public:
|
||||
int init(int pin)
|
||||
{
|
||||
m_pin = pin;
|
||||
|
||||
pinMode(m_pin, OUTPUT);
|
||||
|
||||
analogWriteFrequency(m_pin, 5000);
|
||||
analogWriteResolution(m_pin, 12);
|
||||
|
||||
analogWrite(m_pin, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void setSpeed(int speed)
|
||||
{
|
||||
analogWrite(m_pin, speed);
|
||||
}
|
||||
|
||||
private:
|
||||
int m_pin;
|
||||
int m_channel;
|
||||
};
|
||||
|
||||
class IO {
|
||||
public:
|
||||
IO(CodeCell *code_cell) : m_code_cell(code_cell)
|
||||
{}
|
||||
|
||||
int init()
|
||||
{
|
||||
int nb_errors {0};
|
||||
|
||||
pinMode(PIN_TIRETTE, INPUT_PULLUP);
|
||||
pinMode(PIN_BUTTON_COLOR, INPUT_PULLUP);
|
||||
|
||||
m_code_cell->Motion_RotationRead(m_init_x, m_init_y, m_init_z);
|
||||
|
||||
m_initMotors();
|
||||
m_initServo();
|
||||
|
||||
nb_errors += m_initScreen();
|
||||
|
||||
return nb_errors;
|
||||
}
|
||||
|
||||
int update()
|
||||
{
|
||||
m_is_tirette_pulled = (digitalRead(PIN_TIRETTE) == LOW);
|
||||
m_is_color_blue = (digitalRead(PIN_BUTTON_COLOR) == HIGH);
|
||||
|
||||
if(m_is_motor_control_activated)
|
||||
{
|
||||
m_updateMotorsControl();
|
||||
}
|
||||
|
||||
if(m_is_dancing)
|
||||
{
|
||||
m_updateDancingAction();
|
||||
}
|
||||
|
||||
m_updateScreen();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool isTirettePulled()
|
||||
{
|
||||
return m_is_tirette_pulled;
|
||||
}
|
||||
|
||||
bool isSelectedColorBlue()
|
||||
{
|
||||
return m_is_color_blue;
|
||||
}
|
||||
|
||||
void motorControlOn()
|
||||
{
|
||||
m_is_motor_control_activated = true;
|
||||
}
|
||||
|
||||
void motorControlOff()
|
||||
{
|
||||
m_is_motor_control_activated = false;
|
||||
|
||||
m_motors[0].setSpeed(0);
|
||||
m_motors[1].setSpeed(0);
|
||||
}
|
||||
|
||||
void setDirWithAngularSpeed(float dir, float angular_speed = ANGULAR_SPEED)
|
||||
{
|
||||
static unsigned long prev_time {millis()};
|
||||
float err_dir = dir - m_dir;
|
||||
float angular_displacement = angular_speed * static_cast<float>(millis() / 1000 - prev_time / 1000);
|
||||
|
||||
Serial.printf("Angular Speed : %d\nStatic Cast : %d\nprev_time : %d\n millis : %d\n", angular_speed, static_cast<float>(millis() / 1000 - prev_time / 1000), prev_time, millis());
|
||||
|
||||
if(abs(err_dir) < angular_displacement)
|
||||
{
|
||||
m_dir = dir;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_dir += angular_displacement * (err_dir < 0) ? -1 : 1;
|
||||
}
|
||||
|
||||
Serial.printf("Angle : %d\nAngular Displacement : %d\n", m_dir, angular_displacement);
|
||||
|
||||
prev_time = millis();
|
||||
}
|
||||
|
||||
void setDir(float dir)
|
||||
{
|
||||
m_dir = dir;
|
||||
}
|
||||
|
||||
void setSpeed(float speed)
|
||||
{
|
||||
m_speed = speed;
|
||||
}
|
||||
|
||||
float getAngle(Axes axis)
|
||||
{
|
||||
float x, y, z;
|
||||
|
||||
m_code_cell->Motion_RotationRead(x, y, z);
|
||||
|
||||
switch(axis)
|
||||
{
|
||||
case Axes::X:
|
||||
return x - m_init_x;
|
||||
|
||||
case Axes::Y:
|
||||
return y - m_init_y;
|
||||
|
||||
default:
|
||||
return z - m_init_z;
|
||||
}
|
||||
}
|
||||
|
||||
void startDancingAction()
|
||||
{
|
||||
m_is_dancing = true;
|
||||
}
|
||||
|
||||
Adafruit_SSD1306 *getScreen()
|
||||
{
|
||||
return &m_screen;
|
||||
}
|
||||
|
||||
Motor m_motors[2];
|
||||
|
||||
private:
|
||||
// Init Motors
|
||||
void m_initMotors()
|
||||
{
|
||||
m_motors[0].init(PIN_MOTOR1);
|
||||
m_motors[1].init(PIN_MOTOR2);
|
||||
}
|
||||
|
||||
// Init Servo
|
||||
void m_initServo()
|
||||
{
|
||||
m_servo.setPeriodHertz(50);
|
||||
m_servo.attach(PIN_SERVO, 500, 2400);
|
||||
|
||||
m_servo.write(87);
|
||||
}
|
||||
|
||||
int m_initScreen()
|
||||
{
|
||||
if(!m_screen.begin(SSD1306_SWITCHCAPVCC, 0x3C))
|
||||
{
|
||||
Serial.println("SSD1306 allocation failed.");
|
||||
return -1;
|
||||
}
|
||||
|
||||
m_screen.fillScreen(SSD1306_BLACK);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void m_updateDancingAction()
|
||||
{
|
||||
static unsigned long prev_time {millis()};
|
||||
static unsigned long delta_time {0};
|
||||
static int actual_angle {87};
|
||||
static int8_t actual_dir {-1};
|
||||
|
||||
delta_time += millis() - prev_time;
|
||||
|
||||
if(delta_time >= 10)
|
||||
{
|
||||
delta_time = 0;
|
||||
|
||||
actual_angle += actual_dir * DANCING_ACTION_DELTA_ANGLE;
|
||||
}
|
||||
|
||||
if(actual_angle <= 43)
|
||||
{
|
||||
actual_dir = 1;
|
||||
}
|
||||
else if(actual_angle >= 130)
|
||||
{
|
||||
actual_dir = -1;
|
||||
}
|
||||
|
||||
m_servo.write(actual_angle);
|
||||
|
||||
prev_time = millis();
|
||||
}
|
||||
|
||||
void m_updateMotorsControl()
|
||||
{
|
||||
float actual_angle = getAngle(Axes::Z);
|
||||
float error = m_dir - actual_angle;
|
||||
|
||||
float correction = error * GAIN_KD;
|
||||
|
||||
int m1_speed = static_cast<int>(m_speed + correction);
|
||||
int m2_speed = static_cast<int>(m_speed - correction);
|
||||
|
||||
if(m1_speed < 0)
|
||||
{
|
||||
m1_speed = 0;
|
||||
m2_speed = static_cast<int>(m_speed - 2 * correction);
|
||||
}
|
||||
else if(m2_speed < 0)
|
||||
{
|
||||
m2_speed = 0;
|
||||
m1_speed = static_cast<int>(m_speed + 2 * correction);
|
||||
}
|
||||
|
||||
m_motors[0].setSpeed(m1_speed);
|
||||
m_motors[1].setSpeed(m2_speed);
|
||||
}
|
||||
|
||||
void m_updateScreen()
|
||||
{
|
||||
m_screen.display();
|
||||
}
|
||||
|
||||
bool m_is_motor_control_activated {false};
|
||||
bool m_is_tirette_pulled {false};
|
||||
bool m_is_color_blue {false};
|
||||
bool m_is_dancing {false};
|
||||
|
||||
Servo m_servo;
|
||||
|
||||
Adafruit_SSD1306 m_screen {128, 64, &Wire, -1};
|
||||
|
||||
CodeCell *m_code_cell;
|
||||
|
||||
float m_init_x, m_init_y, m_init_z;
|
||||
float m_dir {0};
|
||||
float m_speed {0};
|
||||
};
|
||||
>>>>>>> refs/remotes/origin/main
|
||||
|
|
321
Main.ino
321
Main.ino
|
@ -1,158 +1,163 @@
|
|||
#include "IO.hpp"
|
||||
#include "Ressources.hpp"
|
||||
|
||||
// Unit tests activation
|
||||
#define UNIT_TESTS
|
||||
|
||||
/*
|
||||
Etapes :
|
||||
- 1ere etape : avancer jusqu'a la montée / condition : si montée detecté : etape suivante
|
||||
- 2eme etape : avancer j'usqua la fin de la montée / condition : si fin de montée detecté : etape suivante
|
||||
- 3eme etape : tourner de 90* / condition : si action terminé : etape suivante
|
||||
- 4eme etape : avancer jusqu'au bors du plateau / condition : si choc de fin detecté : etape suivante
|
||||
- 5eme etape : faire tourner actionneurs pour figurine
|
||||
*/
|
||||
|
||||
/*
|
||||
Modules necessaires :
|
||||
- angle // Asservissement et control du robot
|
||||
- choc // Controle du robot (fin !)
|
||||
(?)- accelerometre // Asservissement
|
||||
*/
|
||||
|
||||
// Movement states
|
||||
enum class State {
|
||||
WaitingForTirette,
|
||||
WaitingTimer,
|
||||
ForwardToRamp,
|
||||
ForwardToScene,
|
||||
Turn90Blue, // If blue team
|
||||
Turn90Yellow, // If yellow team => this is the only action where you have to do something different depending on your team
|
||||
ForwardToSceneEdge,
|
||||
Dancing
|
||||
};
|
||||
|
||||
// CodeCell implementation
|
||||
CodeCell code_cell;
|
||||
IO my_IO {&code_cell};
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Initialise serial
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting Initialisation");
|
||||
|
||||
// Initialise the CodeCell for angle and tap detectIOn
|
||||
code_cell.Init(MOTION_ROTATION);
|
||||
|
||||
// Initialise IO
|
||||
int nb_errors = my_IO.init();
|
||||
|
||||
if(nb_errors)
|
||||
{
|
||||
Serial.printf("%d errors occured during IO init.", nb_errors);
|
||||
while(true);
|
||||
}
|
||||
|
||||
my_IO.getScreen()->drawBitmap(38, 0, Res::Imgs::riombotique, 52, 64, WHITE);
|
||||
//my_IO.getScreen()->drawBitmap(75, 0, Imgs::poivron_robotique, 52, 64, WHITE);
|
||||
|
||||
Serial.println("Initalisation Finished");
|
||||
|
||||
my_IO.motorControlOn();
|
||||
|
||||
#ifdef UNIT_TESTS
|
||||
Serial.println("UNIT_TESTS");
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef UNIT_TESTS
|
||||
|
||||
void loop()
|
||||
{
|
||||
my_IO.update();
|
||||
|
||||
//Serial.printf("Is Selected Color Blue : %d\n", my_IO.isSelectedColorBlue());
|
||||
//Serial.printf("Is Tirette Pulled : %d\n", my_IO.isTirettePulled());
|
||||
|
||||
my_IO.setDir(0);
|
||||
my_IO.setSpeed(2048.0f);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
void loop()
|
||||
{
|
||||
static State actual_state {State::ForwardToRamp};
|
||||
|
||||
switch(actual_state)
|
||||
{
|
||||
case State::WaitingForTirette:
|
||||
if(my_IO.isTirettePulled())
|
||||
{
|
||||
actual_state = State::WaitingTimer;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::WaitingTimer:
|
||||
static unsigned long initial_time = millis();
|
||||
|
||||
if(millis() - initial_time >= 90000)
|
||||
{
|
||||
actual_state = State::ForwardToRamp;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::ForwardToRamp:
|
||||
my_IO.forward();
|
||||
|
||||
if(my_IO.getAngle(Axes::Y) > 9)
|
||||
{
|
||||
actual_state = State::ForwardToScene;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::ForwardToScene:
|
||||
IO::motors.forward();
|
||||
|
||||
if(IO::gyro.getAngle(Axes::Y) < 2)
|
||||
{
|
||||
actual_state = IO::ext_controls.isSelectedColorBlue() ? State::Turn90Blue : State::Turn90Yellow;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::Turn90Blue:
|
||||
IO::motors.setDir(90);
|
||||
|
||||
if(IO::gyro.getAngle() > 90)
|
||||
{
|
||||
actual_state = State::ForwardToSceneEdge;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::Turn90Yellow:
|
||||
IO::motors.setAngle(-90);
|
||||
|
||||
if(IO::gyro.getAngle() < -90)
|
||||
{
|
||||
actual_state = State::ForwardToSceneEdge;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::ForwardToSceneEdge:
|
||||
IO::motors.forward();
|
||||
|
||||
if(IO::gyro.getAngle() < 0)
|
||||
{
|
||||
actual_state = State::Dancing;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::Dancing:
|
||||
IO::ext_controls.startSpecialAction();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
/*
|
||||
Copyright 2025
|
||||
Thibaut Ferrand / Ulysse Cura
|
||||
*/
|
||||
|
||||
#include "IO.hpp"
|
||||
#include "Ressources.hpp"
|
||||
|
||||
// Unit tests activation
|
||||
#define UNIT_TESTS
|
||||
|
||||
/*
|
||||
Etapes :
|
||||
- 1ere etape : avancer jusqu'a la montée / condition : si montée detecté : etape suivante
|
||||
- 2eme etape : avancer j'usqua la fin de la montée / condition : si fin de montée detecté : etape suivante
|
||||
- 3eme etape : tourner de 90* / condition : si action terminé : etape suivante
|
||||
- 4eme etape : avancer jusqu'au bors du plateau / condition : si choc de fin detecté : etape suivante
|
||||
- 5eme etape : faire tourner actionneurs pour figurine
|
||||
*/
|
||||
|
||||
/*
|
||||
Modules necessaires :
|
||||
- angle // Asservissement et control du robot
|
||||
- choc // Controle du robot (fin !)
|
||||
(?)- accelerometre // Asservissement
|
||||
*/
|
||||
|
||||
// Movement states
|
||||
enum class State {
|
||||
WaitingForTirette,
|
||||
WaitingTimer,
|
||||
ForwardToRamp,
|
||||
ForwardToScene,
|
||||
Turn90Blue, // If blue team
|
||||
Turn90Yellow, // If yellow team => this is the only action where you have to do something different depending on your team
|
||||
ForwardToSceneEdge,
|
||||
Dancing
|
||||
};
|
||||
|
||||
// CodeCell implementation
|
||||
CodeCell code_cell;
|
||||
IO my_IO {&code_cell};
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Initialise serial
|
||||
Serial.begin(115200);
|
||||
|
||||
Serial.println("Starting Initialisation");
|
||||
|
||||
// Initialise the CodeCell for angle and tap detectIOn
|
||||
code_cell.Init(MOTION_ROTATION);
|
||||
|
||||
// Initialise IO
|
||||
int nb_errors = my_IO.init();
|
||||
|
||||
if(nb_errors)
|
||||
{
|
||||
Serial.printf("%d errors occured during IO init.", nb_errors);
|
||||
while(true);
|
||||
}
|
||||
|
||||
my_IO.getScreen()->drawBitmap(38, 0, Res::Imgs::riombotique, 52, 64, WHITE);
|
||||
//my_IO.getScreen()->drawBitmap(75, 0, Imgs::poivron_robotique, 52, 64, WHITE);
|
||||
|
||||
Serial.println("Initalisation Finished");
|
||||
|
||||
my_IO.motorControlOn();
|
||||
|
||||
#ifdef UNIT_TESTS
|
||||
Serial.println("UNIT_TESTS");
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef UNIT_TESTS
|
||||
|
||||
void loop()
|
||||
{
|
||||
my_IO.update();
|
||||
|
||||
//Serial.printf("Is Selected Color Blue : %d\n", my_IO.isSelectedColorBlue());
|
||||
//Serial.printf("Is Tirette Pulled : %d\n", my_IO.isTirettePulled());
|
||||
|
||||
my_IO.setDir(0);
|
||||
my_IO.setSpeed(2048.0f);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
void loop()
|
||||
{
|
||||
static State actual_state {State::ForwardToRamp};
|
||||
|
||||
switch(actual_state)
|
||||
{
|
||||
case State::WaitingForTirette:
|
||||
if(my_IO.isTirettePulled())
|
||||
{
|
||||
actual_state = State::WaitingTimer;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::WaitingTimer:
|
||||
static unsigned long initial_time = millis();
|
||||
|
||||
if(millis() - initial_time >= 90000)
|
||||
{
|
||||
actual_state = State::ForwardToRamp;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::ForwardToRamp:
|
||||
my_IO.forward();
|
||||
|
||||
if(my_IO.getAngle(Axes::Y) > 9)
|
||||
{
|
||||
actual_state = State::ForwardToScene;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::ForwardToScene:
|
||||
IO::motors.forward();
|
||||
|
||||
if(IO::gyro.getAngle(Axes::Y) < 2)
|
||||
{
|
||||
actual_state = IO::ext_controls.isSelectedColorBlue() ? State::Turn90Blue : State::Turn90Yellow;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::Turn90Blue:
|
||||
IO::motors.setDir(90);
|
||||
|
||||
if(IO::gyro.getAngle() > 90)
|
||||
{
|
||||
actual_state = State::ForwardToSceneEdge;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::Turn90Yellow:
|
||||
IO::motors.setAngle(-90);
|
||||
|
||||
if(IO::gyro.getAngle() < -90)
|
||||
{
|
||||
actual_state = State::ForwardToSceneEdge;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::ForwardToSceneEdge:
|
||||
IO::motors.forward();
|
||||
|
||||
if(IO::gyro.getAngle() < 0)
|
||||
{
|
||||
actual_state = State::Dancing;
|
||||
}
|
||||
break;
|
||||
|
||||
case State::Dancing:
|
||||
IO::ext_controls.startSpecialAction();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
137
Ressources.hpp
137
Ressources.hpp
|
@ -1,67 +1,72 @@
|
|||
namespace Res
|
||||
{
|
||||
namespace Imgs
|
||||
{
|
||||
constexpr const unsigned char riombotique [] PROGMEM = {
|
||||
0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x03, 0xe0, 0x00,
|
||||
0x00, 0x00, 0x00, 0xc0, 0x00, 0x38, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
|
||||
0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x86, 0x00, 0x00, 0x00, 0x04, 0x06,
|
||||
0x0f, 0xc2, 0x00, 0x00, 0x00, 0x04, 0x19, 0x98, 0x62, 0x00, 0x00, 0x00, 0x04, 0x20, 0x50, 0x22,
|
||||
0x00, 0x00, 0x00, 0x14, 0x20, 0x50, 0x22, 0xc0, 0x00, 0x00, 0x34, 0x20, 0x50, 0x22, 0xe0, 0x00,
|
||||
0x00, 0x74, 0x20, 0x58, 0x62, 0xa0, 0x00, 0x00, 0xf4, 0x10, 0x8f, 0xc2, 0xb0, 0x00, 0x00, 0xf4,
|
||||
0x0f, 0x07, 0x82, 0xb0, 0x00, 0x00, 0x74, 0x00, 0x00, 0x02, 0xa0, 0x00, 0x00, 0x34, 0x00, 0x00,
|
||||
0x02, 0xc0, 0x00, 0x00, 0x14, 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x04, 0x00, 0x00, 0x02, 0x00,
|
||||
0x00, 0x00, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
|
||||
0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x02, 0x00,
|
||||
0x00, 0x0c, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x08, 0x07, 0xff, 0x00, 0x80, 0x00, 0x00, 0x18, 0x07, 0xff, 0x00, 0x80, 0x00,
|
||||
0x01, 0x98, 0x07, 0xff, 0x00, 0xc0, 0x00, 0x03, 0xd8, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x58,
|
||||
0x00, 0x00, 0x00, 0xde, 0x00, 0x02, 0x38, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x02, 0x38, 0x00, 0x00,
|
||||
0x00, 0xe2, 0x00, 0x06, 0x78, 0x00, 0x00, 0x00, 0xe1, 0x00, 0x04, 0x78, 0x00, 0x00, 0x00, 0xe1,
|
||||
0x00, 0x04, 0x78, 0x00, 0x00, 0x00, 0xe1, 0x00, 0x0c, 0x78, 0x00, 0x00, 0x00, 0xe1, 0x00, 0x08,
|
||||
0xf8, 0x00, 0x00, 0x00, 0xf0, 0x80, 0x08, 0xf8, 0x00, 0x00, 0x00, 0xf0, 0x80, 0x08, 0x98, 0x00,
|
||||
0x00, 0x00, 0xf0, 0x80, 0x11, 0x98, 0x00, 0x00, 0x00, 0xf0, 0x40, 0x19, 0x88, 0x00, 0x00, 0x00,
|
||||
0x98, 0x40, 0x3f, 0x0c, 0x00, 0x00, 0x01, 0x0c, 0xc0, 0x36, 0x04, 0x00, 0x00, 0x01, 0x07, 0xe0,
|
||||
0x22, 0x04, 0x00, 0x00, 0x01, 0x07, 0x20, 0x22, 0x06, 0x00, 0x00, 0x02, 0x04, 0x20, 0x62, 0x02,
|
||||
0x00, 0x00, 0x02, 0x04, 0x20, 0x44, 0x02, 0x00, 0x00, 0x06, 0x02, 0x30, 0x44, 0x03, 0x00, 0x00,
|
||||
0x04, 0x02, 0x10, 0x44, 0x01, 0x00, 0x60, 0x04, 0x02, 0x30, 0xc4, 0x01, 0x80, 0x60, 0x08, 0x03,
|
||||
0xf0, 0xc8, 0x01, 0x80, 0x00, 0x18, 0x03, 0xb0, 0xf8, 0x00, 0xff, 0xff, 0xf0, 0x01, 0x20, 0x98,
|
||||
0x00, 0x7f, 0xff, 0xe0, 0x01, 0xe0, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00
|
||||
};
|
||||
|
||||
constexpr const unsigned char poivron_robotique [] PROGMEM = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x02, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
|
||||
0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x01, 0xfe, 0x00, 0x21, 0x00, 0x00, 0x00, 0x06, 0x19,
|
||||
0x80, 0x21, 0x00, 0x00, 0x00, 0x08, 0x06, 0x60, 0x42, 0x00, 0x00, 0x00, 0x10, 0x01, 0x10, 0x42,
|
||||
0x00, 0x00, 0x00, 0x20, 0x00, 0x88, 0x42, 0x00, 0x00, 0x00, 0x20, 0x00, 0x44, 0x82, 0x00, 0x00,
|
||||
0x00, 0x40, 0x00, 0x42, 0x84, 0x00, 0x00, 0x00, 0x80, 0x01, 0xfb, 0x04, 0x00, 0x00, 0x00, 0x80,
|
||||
0x02, 0x06, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x49, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x28, 0x60, 0x00, 0x02, 0x00, 0x00, 0x00, 0x18, 0x10,
|
||||
0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x04,
|
||||
0x00, 0x80, 0x00, 0x00, 0x24, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x08, 0x01, 0x00,
|
||||
0x00, 0x00, 0x08, 0xc0, 0x10, 0x02, 0x00, 0x00, 0x00, 0x08, 0x20, 0x10, 0x02, 0x00, 0x00, 0x10,
|
||||
0x04, 0x20, 0x10, 0x04, 0x00, 0x00, 0x10, 0x04, 0x10, 0x20, 0x04, 0x00, 0x00, 0x10, 0x00, 0x10,
|
||||
0x20, 0x08, 0x00, 0x00, 0x20, 0x00, 0x10, 0x20, 0x08, 0x00, 0x00, 0x20, 0x00, 0x10, 0x20, 0x08,
|
||||
0x00, 0x00, 0x40, 0x00, 0x10, 0x40, 0x10, 0x00, 0x00, 0x48, 0x00, 0x10, 0x40, 0x10, 0x00, 0x00,
|
||||
0x8c, 0x00, 0x10, 0x40, 0x10, 0x00, 0x00, 0x9e, 0x01, 0x20, 0x40, 0x20, 0x00, 0x01, 0x1e, 0x03,
|
||||
0x20, 0x40, 0x20, 0x00, 0x01, 0x1f, 0x07, 0x40, 0x80, 0x20, 0x00, 0x02, 0x0c, 0x0e, 0x40, 0x80,
|
||||
0x40, 0x00, 0x02, 0x00, 0x00, 0x80, 0x80, 0x40, 0x00, 0x04, 0x00, 0x01, 0x00, 0x80, 0x40, 0x00,
|
||||
0x04, 0x00, 0x01, 0x00, 0x80, 0x80, 0x00, 0x08, 0x00, 0x02, 0x00, 0x80, 0x80, 0x00, 0x08, 0x3f,
|
||||
0x84, 0x00, 0x80, 0x80, 0x00, 0x10, 0xdf, 0xc4, 0x00, 0x80, 0x80, 0x00, 0x11, 0xdf, 0xe8, 0x00,
|
||||
0x81, 0x00, 0x00, 0x27, 0xff, 0xb0, 0x00, 0x81, 0x00, 0x00, 0x2f, 0xff, 0xb0, 0x00, 0x81, 0x00,
|
||||
0x00, 0x5f, 0xff, 0xe0, 0x00, 0x42, 0x00, 0x00, 0x5f, 0xff, 0xc0, 0x00, 0x42, 0x00, 0x00, 0xbf,
|
||||
0xff, 0xc0, 0x00, 0x42, 0x00, 0x00, 0xbf, 0xff, 0x80, 0x00, 0x22, 0x00, 0x01, 0x3f, 0xff, 0x00,
|
||||
0x00, 0x12, 0x00, 0x01, 0x3f, 0xfe, 0x00, 0x00, 0x0e, 0x00, 0x02, 0x1f, 0xfc, 0x00, 0x00, 0x02,
|
||||
0x00, 0x04, 0x1f, 0xf8, 0x00, 0x00, 0x01, 0x00, 0x08, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x80, 0x10,
|
||||
0x01, 0xe0, 0x00, 0x00, 0x00, 0x40, 0x20, 0x00, 0x80, 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x03, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00
|
||||
};
|
||||
}
|
||||
/*
|
||||
Copyright 2025
|
||||
Thibaut Ferrand / Ulysse Cura
|
||||
*/
|
||||
|
||||
namespace Res
|
||||
{
|
||||
namespace Imgs
|
||||
{
|
||||
constexpr const unsigned char riombotique [] PROGMEM = {
|
||||
0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x03, 0xe0, 0x00,
|
||||
0x00, 0x00, 0x00, 0xc0, 0x00, 0x38, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
|
||||
0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x86, 0x00, 0x00, 0x00, 0x04, 0x06,
|
||||
0x0f, 0xc2, 0x00, 0x00, 0x00, 0x04, 0x19, 0x98, 0x62, 0x00, 0x00, 0x00, 0x04, 0x20, 0x50, 0x22,
|
||||
0x00, 0x00, 0x00, 0x14, 0x20, 0x50, 0x22, 0xc0, 0x00, 0x00, 0x34, 0x20, 0x50, 0x22, 0xe0, 0x00,
|
||||
0x00, 0x74, 0x20, 0x58, 0x62, 0xa0, 0x00, 0x00, 0xf4, 0x10, 0x8f, 0xc2, 0xb0, 0x00, 0x00, 0xf4,
|
||||
0x0f, 0x07, 0x82, 0xb0, 0x00, 0x00, 0x74, 0x00, 0x00, 0x02, 0xa0, 0x00, 0x00, 0x34, 0x00, 0x00,
|
||||
0x02, 0xc0, 0x00, 0x00, 0x14, 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x04, 0x00, 0x00, 0x02, 0x00,
|
||||
0x00, 0x00, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
|
||||
0x03, 0xff, 0xff, 0xf8, 0x00, 0x00, 0x00, 0x01, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x02, 0x00,
|
||||
0x00, 0x0c, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x01,
|
||||
0x00, 0x00, 0x00, 0x08, 0x07, 0xff, 0x00, 0x80, 0x00, 0x00, 0x18, 0x07, 0xff, 0x00, 0x80, 0x00,
|
||||
0x01, 0x98, 0x07, 0xff, 0x00, 0xc0, 0x00, 0x03, 0xd8, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x03, 0x58,
|
||||
0x00, 0x00, 0x00, 0xde, 0x00, 0x02, 0x38, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x02, 0x38, 0x00, 0x00,
|
||||
0x00, 0xe2, 0x00, 0x06, 0x78, 0x00, 0x00, 0x00, 0xe1, 0x00, 0x04, 0x78, 0x00, 0x00, 0x00, 0xe1,
|
||||
0x00, 0x04, 0x78, 0x00, 0x00, 0x00, 0xe1, 0x00, 0x0c, 0x78, 0x00, 0x00, 0x00, 0xe1, 0x00, 0x08,
|
||||
0xf8, 0x00, 0x00, 0x00, 0xf0, 0x80, 0x08, 0xf8, 0x00, 0x00, 0x00, 0xf0, 0x80, 0x08, 0x98, 0x00,
|
||||
0x00, 0x00, 0xf0, 0x80, 0x11, 0x98, 0x00, 0x00, 0x00, 0xf0, 0x40, 0x19, 0x88, 0x00, 0x00, 0x00,
|
||||
0x98, 0x40, 0x3f, 0x0c, 0x00, 0x00, 0x01, 0x0c, 0xc0, 0x36, 0x04, 0x00, 0x00, 0x01, 0x07, 0xe0,
|
||||
0x22, 0x04, 0x00, 0x00, 0x01, 0x07, 0x20, 0x22, 0x06, 0x00, 0x00, 0x02, 0x04, 0x20, 0x62, 0x02,
|
||||
0x00, 0x00, 0x02, 0x04, 0x20, 0x44, 0x02, 0x00, 0x00, 0x06, 0x02, 0x30, 0x44, 0x03, 0x00, 0x00,
|
||||
0x04, 0x02, 0x10, 0x44, 0x01, 0x00, 0x60, 0x04, 0x02, 0x30, 0xc4, 0x01, 0x80, 0x60, 0x08, 0x03,
|
||||
0xf0, 0xc8, 0x01, 0x80, 0x00, 0x18, 0x03, 0xb0, 0xf8, 0x00, 0xff, 0xff, 0xf0, 0x01, 0x20, 0x98,
|
||||
0x00, 0x7f, 0xff, 0xe0, 0x01, 0xe0, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x07, 0xff, 0xff, 0xfc, 0x00, 0x00
|
||||
};
|
||||
|
||||
constexpr const unsigned char poivron_robotique [] PROGMEM = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x02, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
|
||||
0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x01, 0xfe, 0x00, 0x21, 0x00, 0x00, 0x00, 0x06, 0x19,
|
||||
0x80, 0x21, 0x00, 0x00, 0x00, 0x08, 0x06, 0x60, 0x42, 0x00, 0x00, 0x00, 0x10, 0x01, 0x10, 0x42,
|
||||
0x00, 0x00, 0x00, 0x20, 0x00, 0x88, 0x42, 0x00, 0x00, 0x00, 0x20, 0x00, 0x44, 0x82, 0x00, 0x00,
|
||||
0x00, 0x40, 0x00, 0x42, 0x84, 0x00, 0x00, 0x00, 0x80, 0x01, 0xfb, 0x04, 0x00, 0x00, 0x00, 0x80,
|
||||
0x02, 0x06, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x49, 0x80, 0x00, 0x02, 0x00, 0x00, 0x00, 0x28, 0x60, 0x00, 0x02, 0x00, 0x00, 0x00, 0x18, 0x10,
|
||||
0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x04,
|
||||
0x00, 0x80, 0x00, 0x00, 0x24, 0x00, 0x08, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, 0x08, 0x01, 0x00,
|
||||
0x00, 0x00, 0x08, 0xc0, 0x10, 0x02, 0x00, 0x00, 0x00, 0x08, 0x20, 0x10, 0x02, 0x00, 0x00, 0x10,
|
||||
0x04, 0x20, 0x10, 0x04, 0x00, 0x00, 0x10, 0x04, 0x10, 0x20, 0x04, 0x00, 0x00, 0x10, 0x00, 0x10,
|
||||
0x20, 0x08, 0x00, 0x00, 0x20, 0x00, 0x10, 0x20, 0x08, 0x00, 0x00, 0x20, 0x00, 0x10, 0x20, 0x08,
|
||||
0x00, 0x00, 0x40, 0x00, 0x10, 0x40, 0x10, 0x00, 0x00, 0x48, 0x00, 0x10, 0x40, 0x10, 0x00, 0x00,
|
||||
0x8c, 0x00, 0x10, 0x40, 0x10, 0x00, 0x00, 0x9e, 0x01, 0x20, 0x40, 0x20, 0x00, 0x01, 0x1e, 0x03,
|
||||
0x20, 0x40, 0x20, 0x00, 0x01, 0x1f, 0x07, 0x40, 0x80, 0x20, 0x00, 0x02, 0x0c, 0x0e, 0x40, 0x80,
|
||||
0x40, 0x00, 0x02, 0x00, 0x00, 0x80, 0x80, 0x40, 0x00, 0x04, 0x00, 0x01, 0x00, 0x80, 0x40, 0x00,
|
||||
0x04, 0x00, 0x01, 0x00, 0x80, 0x80, 0x00, 0x08, 0x00, 0x02, 0x00, 0x80, 0x80, 0x00, 0x08, 0x3f,
|
||||
0x84, 0x00, 0x80, 0x80, 0x00, 0x10, 0xdf, 0xc4, 0x00, 0x80, 0x80, 0x00, 0x11, 0xdf, 0xe8, 0x00,
|
||||
0x81, 0x00, 0x00, 0x27, 0xff, 0xb0, 0x00, 0x81, 0x00, 0x00, 0x2f, 0xff, 0xb0, 0x00, 0x81, 0x00,
|
||||
0x00, 0x5f, 0xff, 0xe0, 0x00, 0x42, 0x00, 0x00, 0x5f, 0xff, 0xc0, 0x00, 0x42, 0x00, 0x00, 0xbf,
|
||||
0xff, 0xc0, 0x00, 0x42, 0x00, 0x00, 0xbf, 0xff, 0x80, 0x00, 0x22, 0x00, 0x01, 0x3f, 0xff, 0x00,
|
||||
0x00, 0x12, 0x00, 0x01, 0x3f, 0xfe, 0x00, 0x00, 0x0e, 0x00, 0x02, 0x1f, 0xfc, 0x00, 0x00, 0x02,
|
||||
0x00, 0x04, 0x1f, 0xf8, 0x00, 0x00, 0x01, 0x00, 0x08, 0x0f, 0xf0, 0x00, 0x00, 0x00, 0x80, 0x10,
|
||||
0x01, 0xe0, 0x00, 0x00, 0x00, 0x40, 0x20, 0x00, 0x80, 0x00, 0x00, 0x00, 0x3f, 0xc0, 0x03, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x30, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0xe0, 0x00, 0x00, 0x00
|
||||
};
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue