7 lines
147 B
C++
7 lines
147 B
C++
#pragma once
|
|
|
|
class MqttReceiver
|
|
{
|
|
public:
|
|
virtual void onMqttDataReceived(const char* topic, byte* payload, const unsigned int length) = 0;
|
|
}; |