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