Create HardwareFactory which is responsible for providing the HardwareAbstract to any part of the program based on compiler defines
6 lines
No EOL
142 B
C++
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(); } |