Compare commits
No commits in common. "2aff11395cf91908a98b0e3c3cc5ffc24e78bc77" and "803b5000c118ed8a8a9397a2c8e4ec133773f879" have entirely different histories.
2aff11395c
...
803b5000c1
2 changed files with 6 additions and 3 deletions
|
@ -3,6 +3,7 @@
|
||||||
*
|
*
|
||||||
* Malte's Arduino-Powered Info Display Control Program
|
* Malte's Arduino-Powered Info Display Control Program
|
||||||
*/
|
*/
|
||||||
|
#include <SoftwareSerial.h>
|
||||||
#include <serLCD.h>
|
#include <serLCD.h>
|
||||||
#include <SerialCommand.h>
|
#include <SerialCommand.h>
|
||||||
#include <avr/pgmspace.h>
|
#include <avr/pgmspace.h>
|
||||||
|
@ -74,7 +75,7 @@ void loop() {
|
||||||
SCmd.readSerial();
|
SCmd.readSerial();
|
||||||
}
|
}
|
||||||
|
|
||||||
void commandNotFound(const char *cmd) {
|
void commandNotFound(char *cmd) {
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
//Serial.println("[ERROR @ TTY:IN] COMMAND NOT FOUND!");
|
//Serial.println("[ERROR @ TTY:IN] COMMAND NOT FOUND!");
|
||||||
Serial.println("[ERROR] COMMAND NOT FOUND!");
|
Serial.println("[ERROR] COMMAND NOT FOUND!");
|
||||||
|
|
|
@ -3,8 +3,10 @@
|
||||||
source "$(dirname $0)/.env"
|
source "$(dirname $0)/.env"
|
||||||
|
|
||||||
|
|
||||||
[[ -t 0 ]] && printf "Line 1> "; read LINE1
|
#LINE1='Backup finished!'
|
||||||
[[ -t 0 ]] && printf "Line 2> "; read LINE2
|
#LINE2=''
|
||||||
|
[ -t /dev/stdin ] && printf "Line 1> "; read LINE1
|
||||||
|
[ -t /dev/stdin ] && printf "Line 2> "; read LINE2
|
||||||
LED_BLINK=".5s"
|
LED_BLINK=".5s"
|
||||||
#DISPLAY_DURATION="4s"
|
#DISPLAY_DURATION="4s"
|
||||||
DISPLAY_DURATION="10s"
|
DISPLAY_DURATION="10s"
|
||||||
|
|
Loading…
Reference in a new issue