fix definition errors
This commit is contained in:
parent
f3df0b0d98
commit
48cac3e3ed
|
@ -20,6 +20,7 @@ unsigned long last_ledupdate=0;
|
||||||
uint8_t led_errorcount=0; //count led progress errors. used for delay at end if any errors occured
|
uint8_t led_errorcount=0; //count led progress errors. used for delay at end if any errors occured
|
||||||
|
|
||||||
void led_dotcircle(unsigned long loopmillis);
|
void led_dotcircle(unsigned long loopmillis);
|
||||||
|
void led_voltage(unsigned long loopmillis,float vbat,float vbat_min,float vbat_max);
|
||||||
|
|
||||||
void init_led() {
|
void init_led() {
|
||||||
strip.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)
|
strip.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
#include "led.h"
|
|
||||||
|
|
||||||
#include "definitions.h"
|
#include "definitions.h"
|
||||||
//#include "structs.h"
|
//#include "structs.h"
|
||||||
#include "helpfunctions.h"
|
|
||||||
#include <TimeLib.h> //for teensy rtc
|
#include <TimeLib.h> //for teensy rtc
|
||||||
|
#include "helpfunctions.h"
|
||||||
#include "hoverboard-esc-serial-comm.h"
|
#include "hoverboard-esc-serial-comm.h"
|
||||||
|
#include "led.h"
|
||||||
|
|
||||||
|
|
||||||
//#include "comms.h"
|
//#include "comms.h"
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
#include "logging.h"
|
#include "logging.h"
|
||||||
|
|
Loading…
Reference in New Issue