e-wagen: Use updated LEDs & kill display

This commit is contained in:
jvblanck
2021-06-18 15:52:50 +02:00
parent 4faddf9248
commit 4d62419d72
7 changed files with 389 additions and 810 deletions

View File

@ -5,21 +5,23 @@
#include <FT_2018e_STW_CAN.h>
#include <EDIPTFT.h>
#include <FT18e_STW_DISPLAY.h>
#include <Bounce2.h>
#include <Bounce2.h>
#include <RotaryEncoder.h>
void setup(){
void setup()
{
set_pins();
//Serial.begin(9600);
//Serial.println("Hi");
Init_Can_0();
init_display();
}
void loop() {
}
void loop()
{
//read_buttons(); //in Send_0x110() aufgerufen
//read_rotary(); //in Send_0x110() aufgerufen
//Send_0x110(); //alle 10 ms als interrupt aufgerufen
update_LED();
update_display();
}
}