9 lines
160 B
C++
9 lines
160 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
|
|
class MqttReceiver
|
|
{
|
|
public:
|
|
virtual void onMqttDataReceived(char*& topic, byte*& payload, unsigned int& length) = 0;
|
|
}; |