firmware/src/modules/TextMessageModule.h

26 lines
756 B
C
Raw Normal View History

#pragma once
#include "Observer.h"
2023-01-21 13:34:29 +00:00
#include "SinglePortModule.h"
/**
* Text message handling for meshtastic - draws on the OLED display the most recent received message
*/
class TextMessageModule : public SinglePortModule, public Observable<const MeshPacket *>
{
public:
/** Constructor
* name is for debugging output
*/
TextMessageModule() : SinglePortModule("text", PortNum_TEXT_MESSAGE_APP) {}
protected:
/** Called to handle a particular incoming message
2023-01-21 13:34:29 +00:00
@return ProcessMessage::STOP if you've guaranteed you've handled this message and no other handlers should be considered for
it
*/
2022-01-24 17:24:40 +00:00
virtual ProcessMessage handleReceived(const MeshPacket &mp) override;
};
2022-02-27 10:21:02 +00:00
extern TextMessageModule *textMessageModule;