class ThingerTinyGSM : public ThingerClient
#ifdef THINGER_FREE_RTOS
,public ThingerESP32FreeRTOS
#endif
{
public:
ThingerTinyGSM(const char* user, const char* device, const char* device_credential, Stream& serial) :
ThingerClient(client_, user, device, device_credential),
#ifdef THINGER_FREE_RTOS
ThingerESP32FreeRTOS(static_cast<ThingerClient&>(*this)),
#endif
modem_(serial),
client_(modem_)
{