Compare commits

..

No commits in common. "2aff11395cf91908a98b0e3c3cc5ffc24e78bc77" and "803b5000c118ed8a8a9397a2c8e4ec133773f879" have entirely different histories.

2 changed files with 6 additions and 3 deletions

View file

@ -3,6 +3,7 @@
*
* Malte's Arduino-Powered Info Display Control Program
*/
#include <SoftwareSerial.h>
#include <serLCD.h>
#include <SerialCommand.h>
#include <avr/pgmspace.h>
@ -74,7 +75,7 @@ void loop() {
SCmd.readSerial();
}
void commandNotFound(const char *cmd) {
void commandNotFound(char *cmd) {
Serial.println("");
//Serial.println("[ERROR @ TTY:IN] COMMAND NOT FOUND!");
Serial.println("[ERROR] COMMAND NOT FOUND!");

View file

@ -3,8 +3,10 @@
source "$(dirname $0)/.env"
[[ -t 0 ]] && printf "Line 1> "; read LINE1
[[ -t 0 ]] && printf "Line 2> "; read LINE2
#LINE1='Backup finished!'
#LINE2=''
[ -t /dev/stdin ] && printf "Line 1> "; read LINE1
[ -t /dev/stdin ] && printf "Line 2> "; read LINE2
LED_BLINK=".5s"
#DISPLAY_DURATION="4s"
DISPLAY_DURATION="10s"