prepare for ESPMegaPRO OOP

This commit is contained in:
Siwat Sirichai 2023-12-28 01:25:35 +07:00
parent 51e9f5258a
commit fc692ef0b0
9 changed files with 266 additions and 71 deletions

View file

@ -0,0 +1,11 @@
#pragma once
#include <ESPMegaPRO.h>
class ExpansionCard {
public:
// Instantiate the card with the specified address
ExpansionCard() {}
virtual void begin() {}
// Preform a loop to refresh the input buffers
virtual void loop() {}
};