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() {}
|
|
|
|
};
|