pushed some non functioning code

This commit is contained in:
Jonas_Jones 2022-09-04 23:28:01 +02:00
parent 8d85068b48
commit c60e0db035
14 changed files with 2364 additions and 11 deletions

View file

@ -0,0 +1,12 @@
// #include "LcdControl.h"
// #include "LiquidCrystal.h"
// //instance object
// LcdControl::LcdControl(LiquidCrystal lcd) {
// ;
// }
// //when to update a cycle
// LcdControl::update() {
// ;
// }

12
arduino/src/LcdControl.h Normal file
View file

@ -0,0 +1,12 @@
// #ifndef LcdControl_h
// #define LcdControl_h
// class LcdControl {
// private:
// public:
// };
// #endif

View file

@ -0,0 +1,11 @@
#include "SerialHandler.h"
#include "SoftwareSerial.h"
SerialHandler::SerialHandler(uint8_t rx, uint8_t tx) {
update();
}
//Serialhandler loop
SerialHandler::update() {
;
}

View file

@ -0,0 +1,14 @@
//header file with the SerialHandler class
#ifndef SerialHandler_h
#define SerialHandler_h
class SerialHandler {
private:
public:
SerialHandler(uint8_t rx, uint8_t tx);
void update();
};
#endif