OMOTE/Platformio/src/main.cpp
MatthewColvin efa2d4a137 Rework Mains so they are basically as identical as possible.
Create HardwareFactory which is responsible for providing the HardwareAbstract to any part of the program based on compiler defines
2023-10-15 08:24:29 -05:00

6 lines
No EOL
142 B
C++

// OMOTE firmware for ESP32
// 2023 Maximilian Kern
#include "OmoteSetup.hpp"
void setup() { OMOTE::setup(); }
void loop() { OMOTE::loop(); }