mqtt connection implementation

This commit is contained in:
Siwat Sirichai 2023-12-28 15:18:37 +07:00
parent 0dfb066a74
commit 1163f2e30f
7 changed files with 33 additions and 38 deletions

View file

@ -9,5 +9,5 @@ class ExpansionCard {
// Preform a loop to refresh the input buffers
virtual void loop() {}
// Get the card type
virtual uint8_t getType() {}
virtual uint8_t getType() {return 255;}
};