firmware/src/modules/Telemetry/EnvironmentTelemetry.h

44 lines
1.6 KiB
C
Raw Normal View History

2021-01-17 20:59:48 +00:00
#pragma once
2023-01-18 14:56:47 +00:00
#include "../mesh/generated/meshtastic/telemetry.pb.h"
2022-05-01 19:26:05 +00:00
#include "NodeDB.h"
2022-05-07 10:31:21 +00:00
#include "ProtobufModule.h"
#include <OLEDDisplay.h>
#include <OLEDDisplayUi.h>
2021-01-17 20:59:48 +00:00
class EnvironmentTelemetryModule : private concurrency::OSThread, public ProtobufModule<meshtastic_Telemetry>
2021-01-17 20:59:48 +00:00
{
public:
EnvironmentTelemetryModule()
: concurrency::OSThread("EnvironmentTelemetryModule"),
ProtobufModule("EnvironmentTelemetry", meshtastic_PortNum_TELEMETRY_APP, &meshtastic_Telemetry_msg)
{
lastMeasurementPacket = nullptr;
setIntervalFromNow(10 * 1000);
}
2022-01-24 17:24:40 +00:00
virtual bool wantUIFrame() override;
#if !HAS_SCREEN
2022-05-06 13:41:37 +00:00
void drawFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y);
#else
2022-01-24 17:24:40 +00:00
virtual void drawFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y) override;
2022-05-06 13:41:37 +00:00
#endif
2021-01-17 20:59:48 +00: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;
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 wantReplies = false);
private:
2022-03-20 03:15:32 +00:00
float CelsiusToFahrenheit(float c);
bool firstTime = 1;
meshtastic_MeshPacket *lastMeasurementPacket;
uint32_t sendToPhoneIntervalMs = SECONDS_IN_MINUTE * 1000; // Send to phone every minute
uint32_t lastSentToMesh = 0;
uint32_t sensor_read_error_count = 0;
2022-01-24 07:00:14 +00:00
};