Send an SMS from ESP32 (ft. Twilio)

This commit is contained in:
Eric
2021-08-22 14:34:04 -07:00
parent 0379f585f5
commit 7b171acab2
11 changed files with 548 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#ifndef Messenger_H_
#define Messenger_H_
#include "twilio.hpp"
class Messenger {
private:
Twilio *twilio;
public:
Messenger();
~Messenger();
void sendMessage(String msg);
};
#endif