mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 19:59:55 +00:00
23 lines
510 B
C++
23 lines
510 B
C++
#pragma once
|
|
#include "SinglePortPlugin.h"
|
|
|
|
|
|
/**
|
|
* A simple example plugin that just replies with "Message received" to any message it receives.
|
|
*/
|
|
class ReplyPlugin : public SinglePortPlugin
|
|
{
|
|
public:
|
|
/** Constructor
|
|
* name is for debugging output
|
|
*/
|
|
ReplyPlugin() : SinglePortPlugin("reply", PortNum_REPLY_APP) {}
|
|
|
|
protected:
|
|
|
|
/** For reply plugin we do all of our processing in the (normally optional)
|
|
* want_replies handling
|
|
*/
|
|
virtual MeshPacket *allocReply();
|
|
};
|