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

11 lines
275 B
C++

#pragma once
#include <Arduino.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() {}
};