0.3.0
Loading...
Searching...
No Matches
EspressifSensor.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
14
15#pragma once
16
20
21namespace NAV
22{
24class EspressifSensor : public Node, public UartSensor
25{
26 public:
30 ~EspressifSensor() override;
39
41 [[nodiscard]] static std::string typeStatic();
42
44 [[nodiscard]] std::string type() const override;
45
47 [[nodiscard]] static std::string category();
48
51 void guiConfig() override;
52
54 [[nodiscard]] json save() const override;
55
58 void restore(const json& j) override;
59
61 bool resetNode() override;
62
63 private:
64 constexpr static size_t OUTPUT_PORT_INDEX_WIFI_OBS = 0;
65
67 bool initialize() override;
68
70 void deinitialize() override;
71
76 static void binaryAsyncMessageReceived(void* userData, uart::protocol::Packet& p, size_t index);
77
80};
81
82} // namespace NAV
Class to read out Espressif Sensors.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Abstract Uart Sensor Class.
Espressif Sensor Class.
Definition EspressifSensor.hpp:25
void guiConfig() override
ImGui config window which is shown on double click.
static std::string typeStatic()
String representation of the Class Type.
static void binaryAsyncMessageReceived(void *userData, uart::protocol::Packet &p, size_t index)
Callback handler for notifications of new asynchronous data packets received.
bool resetNode() override
Resets the node. It is guaranteed that the node is initialized when this is called.
EspressifSensor()
Default constructor.
static std::string category()
String representation of the Class Category.
vendor::espressif::EspressifUartSensor _sensor
Sensor Object.
Definition EspressifSensor.hpp:79
std::string type() const override
String representation of the Class Type.
void restore(const json &j) override
Restores the node from a json object.
void deinitialize() override
Deinitialize the node.
~EspressifSensor() override
Destructor.
static constexpr size_t OUTPUT_PORT_INDEX_WIFI_OBS
Flow (EspressifObs)
Definition EspressifSensor.hpp:64
EspressifSensor(EspressifSensor &&)=delete
Move constructor.
json save() const override
Saves the node into a json object.
EspressifSensor & operator=(const EspressifSensor &)=delete
Copy assignment operator.
EspressifSensor(const EspressifSensor &)=delete
Copy constructor.
bool initialize() override
Initialize the node.
EspressifSensor & operator=(EspressifSensor &&)=delete
Move assignment operator.
Abstract parent class for all nodes.
Definition Node.hpp:86
Abstract Uart Sensor Class.
Definition UartSensor.hpp:26
Class to read out Espressif Sensors.
Definition EspressifUartSensor.hpp:25