Skip to content
Snippets Groups Projects
Commit 0205e0df authored by fxk8y's avatar fxk8y :spider:
Browse files

Reordering includes for consistency

parent c16afb13
No related branches found
No related tags found
No related merge requests found
#include "FxCyanF.hpp" #include "FxCyanF.hpp"
// ESP32 specific
#include "esp_err.h"
#include "esp_log.h"
#include "driver/ledc.h"
#include "tcpip_adapter.h"
// misc
#include <nlohmann/json.hpp>
// qthing stuff
#include <qthing>
#include <qthing/mqtt_common.hpp>
// C++ system level // C++ system level
#include <string> #include <string>
#include <cstdio> #include <cstdio>
...@@ -20,11 +7,24 @@ ...@@ -20,11 +7,24 @@
#include <algorithm> #include <algorithm>
#include <functional> #include <functional>
// ESP32 specific
#include "esp_err.h"
#include "esp_log.h"
#include "driver/ledc.h"
#include "tcpip_adapter.h"
// project specific // project specific
#include "FxVSync.hpp" #include "FxVSync.hpp"
#include "CyanBus.hpp" #include "CyanBus.hpp"
#include "Metrics.hpp" #include "Metrics.hpp"
// qthing stuff
#include <qthing>
#include <qthing/mqtt_common.hpp>
// misc
#include <nlohmann/json.hpp>
using namespace qthing; using namespace qthing;
using json = nlohmann::json; using json = nlohmann::json;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment