ESPMegaPRO-v3-SDK/Template Project/lib/ESPMegaPRO/ExpansionCard.hpp

11 lines
275 B
C++
Raw Normal View History

2023-12-27 18:25:35 +00:00
#pragma once
2023-12-27 18:33:37 +00:00
#include <Arduino.h>
2023-12-27 18:25:35 +00:00
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() {}
};