Fixed wrong imports breaking CI
All checks were successful
Test compiling project / test (push) Successful in 1m40s
All checks were successful
Test compiling project / test (push) Successful in 1m40s
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#include "leds.h"
|
#include "leds.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <ArduinoLog.h>
|
#include <ArduinoLog.h>
|
||||||
#include "tools/tools.h"
|
#include "../tools/tools.h"
|
||||||
|
|
||||||
extern ActiveErrors active_errors;
|
extern ActiveErrors active_errors;
|
||||||
extern WaterData water_data;
|
extern WaterData water_data;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "global_data/global_data.h"
|
#include "global_data.h"
|
||||||
|
|
||||||
NetworkData wifi_data;
|
NetworkData wifi_data;
|
||||||
NetworkData ethernet_data;
|
NetworkData ethernet_data;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
#include <WiFi.h>
|
#include <WiFi.h>
|
||||||
#include "../global_data/defines.h"
|
#include "../global_data/defines.h"
|
||||||
#include <Preferences.h>
|
#include <Preferences.h>
|
||||||
#include <global_data/global_data.h>
|
#include "../global_data/global_data.h"
|
||||||
|
|
||||||
int64_t mac_address = ESP.getEfuseMac();
|
int64_t mac_address = ESP.getEfuseMac();
|
||||||
uint8_t failed_connection_attempts = 0;
|
uint8_t failed_connection_attempts = 0;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
#include <Preferences.h>
|
#include <Preferences.h>
|
||||||
#include <ArduinoLog.h>
|
#include <ArduinoLog.h>
|
||||||
#include "Wire.h"
|
#include "Wire.h"
|
||||||
#include <global_data/global_data.h>
|
#include "../global_data/global_data.h"
|
||||||
|
|
||||||
|
|
||||||
#ifdef USE_INA226s
|
#ifdef USE_INA226s
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <global_data/global_data.h>
|
#include "../global_data/global_data.h"
|
||||||
|
|
||||||
void printSuffix(Print* _logOutput, int logLevel);
|
void printSuffix(Print* _logOutput, int logLevel);
|
||||||
void print_prefix(Print* _logOutput, int logLevel);
|
void print_prefix(Print* _logOutput, int logLevel);
|
||||||
|
|||||||
Reference in New Issue
Block a user