mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 19:59:55 +00:00
28 lines
784 B
C
28 lines
784 B
C
|
#include "ProtobufPlugin.h"
|
||
|
|
||
|
/**
|
||
|
* Position plugin for sending/receiving positions into the mesh
|
||
|
*/
|
||
|
class PositionPlugin : public ProtobufPlugin<Position>
|
||
|
{
|
||
|
public:
|
||
|
/** Constructor
|
||
|
* name is for debugging output
|
||
|
*/
|
||
|
PositionPlugin() : ProtobufPlugin("position", PortNum_POSITION_APP, Position_fields) {}
|
||
|
|
||
|
/**
|
||
|
* Send our position into the mesh
|
||
|
*/
|
||
|
void sendOurPosition(NodeNum dest = NODENUM_BROADCAST, bool wantReplies = false);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
/** Called to handle a particular incoming message
|
||
|
|
||
|
@return true if you've guaranteed you've handled this message and no other handlers should be considered for it
|
||
|
*/
|
||
|
virtual bool handleReceivedProtobuf(const MeshPacket &mp, const Position &p);
|
||
|
};
|
||
|
|
||
|
extern PositionPlugin positionPlugin;
|