Files
firmware/src/modules/Telemetry/DeviceTelemetry.h

36 lines
1.3 KiB
C
Raw Normal View History

2021-01-17 15:59:48 -05:00
#pragma once
2023-01-18 08:56:47 -06:00
#include "../mesh/generated/meshtastic/telemetry.pb.h"
2022-05-01 14:26:05 -05:00
#include "NodeDB.h"
2022-05-07 20:31:21 +10:00
#include "ProtobufModule.h"
#include <OLEDDisplay.h>
#include <OLEDDisplayUi.h>
2021-01-17 15:59:48 -05:00
class DeviceTelemetryModule : private concurrency::OSThread, public ProtobufModule<meshtastic_Telemetry>
2021-01-17 15:59:48 -05:00
{
public:
DeviceTelemetryModule()
2023-01-21 18:39:58 +01:00
: concurrency::OSThread("DeviceTelemetryModule"),
ProtobufModule("DeviceTelemetry", meshtastic_PortNum_TELEMETRY_APP, &meshtastic_Telemetry_msg)
{
setIntervalFromNow(45 * 1000); // Wait until NodeInfo is sent
}
virtual bool wantUIFrame() { return false; }
2021-01-17 15:59:48 -05:00
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 meshtastic_MeshPacket &mp, meshtastic_Telemetry *p) override;
virtual meshtastic_MeshPacket *allocReply() override;
2022-01-24 17:24:40 +00:00
virtual int32_t runOnce() override;
/**
* Send our Telemetry into the mesh
*/
bool sendTelemetry(NodeNum dest = NODENUM_BROADCAST, bool phoneOnly = false);
private:
meshtastic_Telemetry getDeviceTelemetry();
uint32_t sendToPhoneIntervalMs = SECONDS_IN_MINUTE * 1000; // Send to phone every minute
uint32_t lastSentToMesh = 0;
2022-01-24 07:00:14 +00:00
};