Compare commits
No commits in common. "363e2426540fbb0700faf8b196cd34231e18474e" and "2aff11395cf91908a98b0e3c3cc5ffc24e78bc77" have entirely different histories.
363e242654
...
2aff11395c
6 changed files with 23 additions and 77 deletions
3
.env
3
.env
|
@ -9,6 +9,3 @@ SERIAL_SPEED=9600
|
||||||
|
|
||||||
# FIFO filename
|
# FIFO filename
|
||||||
FIFO="/tmp/mapid"
|
FIFO="/tmp/mapid"
|
||||||
|
|
||||||
# fifo_bridge.py PID file
|
|
||||||
FIFO_BRIDGE_PID_FILE="/tmp/mapid_fifo_bridge.pid"
|
|
|
@ -72,11 +72,3 @@ PHP based Web interface for `fifo_bridge.py` supporting all commands of *MAPID/C
|
||||||
### `notification.sh`
|
### `notification.sh`
|
||||||
|
|
||||||
Use the LED and display to show a notification, the purpose of the whole MAPID project.
|
Use the LED and display to show a notification, the purpose of the whole MAPID project.
|
||||||
|
|
||||||
## Links
|
|
||||||
|
|
||||||
- [My blog post about MAPID (German)](https://malte70.de/blog/mapid/)
|
|
||||||
- Arduino libraries
|
|
||||||
- [SerialCommand Advanced](https://github.com/shyd/Arduino-SerialCommand)
|
|
||||||
- [serLCD](http://playground.arduino.cc/Code/SerLCD)
|
|
||||||
|
|
||||||
|
|
|
@ -9,10 +9,7 @@ if (!file_exists(FIFO))
|
||||||
|
|
||||||
$f = fopen(FIFO, "w+");
|
$f = fopen(FIFO, "w+");
|
||||||
|
|
||||||
if (count($_POST) == 0)
|
switch ($_POST["cmd"]) {
|
||||||
$_POST = json_decode(file_get_contents('php://input'), true);
|
|
||||||
|
|
||||||
switch (@$_POST["cmd"]) {
|
|
||||||
case "getty":
|
case "getty":
|
||||||
fwrite($f, "GETTY");
|
fwrite($f, "GETTY");
|
||||||
break;
|
break;
|
||||||
|
@ -39,16 +36,6 @@ switch (@$_POST["cmd"]) {
|
||||||
fwrite($f, "ECHO ");
|
fwrite($f, "ECHO ");
|
||||||
fwrite($f, $_POST["text"]);
|
fwrite($f, $_POST["text"]);
|
||||||
break;
|
break;
|
||||||
case "echo2":
|
|
||||||
fwrite($f, "CLS\n");
|
|
||||||
fwrite($f, "LINE 1\n");
|
|
||||||
fwrite($f, "ECHO ");
|
|
||||||
fwrite($f, $_POST["line1"]);
|
|
||||||
fwrite($f, "\n");
|
|
||||||
fwrite($f, "LINE 2\n");
|
|
||||||
fwrite($f, "ECHO ");
|
|
||||||
fwrite($f, $_POST["line2"]);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fwrite($f, "\n");
|
fwrite($f, "\n");
|
||||||
|
|
|
@ -15,21 +15,18 @@ $Title = "MAPID-FIFO Web-UI";
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<section>
|
<section>
|
||||||
<h3>Welcome message</h3>
|
|
||||||
<form action="command.php" method="POST">
|
<form action="command.php" method="POST">
|
||||||
<input type="hidden" name="cmd" value="getty">
|
<input type="hidden" name="cmd" value="getty">
|
||||||
<button type="submit">Getty</button>
|
<button type="submit">Getty</button>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Clear screen</h3>
|
|
||||||
<form action="command.php" method="POST">
|
<form action="command.php" method="POST">
|
||||||
<input type="hidden" name="cmd" value="cls">
|
<input type="hidden" name="cmd" value="cls">
|
||||||
<button type="submit">Clear</button>
|
<button type="submit">Clear</button>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Control LED</h3>
|
|
||||||
<form action="command.php" method="POST">
|
<form action="command.php" method="POST">
|
||||||
<input type="hidden" name="cmd" value="on">
|
<input type="hidden" name="cmd" value="on">
|
||||||
<button type="submit">LED On</button>
|
<button type="submit">LED On</button>
|
||||||
|
@ -40,7 +37,6 @@ $Title = "MAPID-FIFO Web-UI";
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Control display</h3>
|
|
||||||
<form action="command.php" method="POST">
|
<form action="command.php" method="POST">
|
||||||
<input type="hidden" name="cmd" value="lcdon">
|
<input type="hidden" name="cmd" value="lcdon">
|
||||||
<button type="submit">Display On</button>
|
<button type="submit">Display On</button>
|
||||||
|
@ -51,7 +47,6 @@ $Title = "MAPID-FIFO Web-UI";
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Line selection for output</h3>
|
|
||||||
<form action="command.php" method="POST">
|
<form action="command.php" method="POST">
|
||||||
<input type="hidden" name="cmd" value="line">
|
<input type="hidden" name="cmd" value="line">
|
||||||
<select name="line" height="1">
|
<select name="line" height="1">
|
||||||
|
@ -62,22 +57,12 @@ $Title = "MAPID-FIFO Web-UI";
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<h3>Single line output</h3>
|
|
||||||
<form action="command.php" method="POST">
|
<form action="command.php" method="POST">
|
||||||
<input type="hidden" name="cmd" value="echo">
|
<input type="hidden" name="cmd" value="echo">
|
||||||
<input type="text" name="text" placeholder="Text">
|
<input type="text" name="text" placeholder="Text">
|
||||||
<button type="submit">Output</button>
|
<button type="submit">Output</button>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
|
||||||
<h3>Multi line output</h3>
|
|
||||||
<form action="command.php" method="POST">
|
|
||||||
<input type="hidden" name="cmd" value="echo2">
|
|
||||||
<input type="text" name="line1" placeholder="Text line 1"><br>
|
|
||||||
<input type="text" name="line2" placeholder="Text line 2">
|
|
||||||
<button type="submit">Output</button>
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
<p><a href="https://git.un-hack-bar.de/malte70/mapid">mapid Git-Repo</a></p>
|
<p><a href="https://git.un-hack-bar.de/malte70/mapid">mapid Git-Repo</a></p>
|
||||||
|
|
|
@ -35,7 +35,6 @@ input, select {
|
||||||
color: #6E6D70;
|
color: #6E6D70;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-right: .5em;
|
margin-right: .5em;
|
||||||
margin-bottom: .5em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* https://getcssscan.com/css-buttons-examples */
|
/* https://getcssscan.com/css-buttons-examples */
|
||||||
|
|
|
@ -16,32 +16,20 @@ def main():
|
||||||
if len(sys.argv) == 2:
|
if len(sys.argv) == 2:
|
||||||
FIFO = sys.argv[1]
|
FIFO = sys.argv[1]
|
||||||
|
|
||||||
# Write PID
|
|
||||||
FIFO_BRIDGE_PID_FILE = os.environ.get("FIFO_BRIDGE_PID_FILE")
|
|
||||||
f = open(FIFO_BRIDGE_PID_FILE, "w")
|
|
||||||
f.write(os.getpid())
|
|
||||||
f.close()
|
|
||||||
del f
|
|
||||||
|
|
||||||
# Create MAPIDCP object to communicate with the Arduino
|
|
||||||
m = mapid.MAPIDCP()
|
m = mapid.MAPIDCP()
|
||||||
|
|
||||||
# Create FIFO
|
|
||||||
os.mkfifo(FIFO)
|
os.mkfifo(FIFO)
|
||||||
time.sleep(0.2)
|
time.sleep(0.2)
|
||||||
print("Created FIFO " + FIFO, file=sys.stderr)
|
print("Created FIFO " + FIFO, file=sys.stderr)
|
||||||
|
|
||||||
f = open(FIFO, "r")
|
f = open(FIFO, "r")
|
||||||
print("Opened FIFO for reading", file=sys.stderr)
|
print("Opened FIFO for reading", file=sys.stderr)
|
||||||
|
|
||||||
# Show greeting on screen
|
|
||||||
m.cls()
|
m.cls()
|
||||||
m.line(1)
|
m.line(1)
|
||||||
m.echo("fifo_bridge.py")
|
m.echo("fifo_bridge.py")
|
||||||
m.line(2)
|
m.line(2)
|
||||||
m.echo(FIFO)
|
m.echo(FIFO)
|
||||||
|
|
||||||
# Main loop: read commands from FIFO and execute it
|
|
||||||
keep_going = True
|
keep_going = True
|
||||||
while keep_going:
|
while keep_going:
|
||||||
try:
|
try:
|
||||||
|
@ -54,9 +42,7 @@ def main():
|
||||||
keep_going = False
|
keep_going = False
|
||||||
print("Caught a SerialException. Exiting now...", file=sys.stderr)
|
print("Caught a SerialException. Exiting now...", file=sys.stderr)
|
||||||
|
|
||||||
# Remove FIFO and PID files
|
|
||||||
os.remove(FIFO)
|
os.remove(FIFO)
|
||||||
os.remove(FIFO_BRIDGE_PID_FILE)
|
|
||||||
print("Removed FIFO.", file=sys.stderr)
|
print("Removed FIFO.", file=sys.stderr)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue