working mqtt implementation

This commit is contained in:
Siwat Sirichai 2023-12-28 15:52:08 +07:00
parent 1163f2e30f
commit bb2991cb2d
6 changed files with 149 additions and 76 deletions

View file

@ -5,9 +5,9 @@ class ExpansionCard {
public:
// Instantiate the card with the specified address
ExpansionCard() {}
virtual bool begin() {}
virtual bool begin();
// Preform a loop to refresh the input buffers
virtual void loop() {}
virtual void loop();
// Get the card type
virtual uint8_t getType() {return 255;}
virtual uint8_t getType();
};