2 Commits

Author SHA1 Message Date
Simon Wörner 004020105f added render script and output png 2017-04-05 11:06:33 +02:00
kawaii b9458b1225 fixed led5 release build 2017-04-05 08:54:43 +00:00
7 changed files with 12 additions and 2 deletions
-2
View File
@@ -81,9 +81,7 @@ fn main() {
chan_select! { chan_select! {
rpanic.recv() => { }, rpanic.recv() => { },
signal.recv() -> signal => { signal.recv() -> signal => {
#[cfg(debug_assertions)]
println!("received signal: {:?}", signal); println!("received signal: {:?}", signal);
sdone.send(()); sdone.send(());
} }
} }
+1
View File
@@ -0,0 +1 @@
*.eps
Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -o xtrace
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
cd "${SCRIPT_DIR}" && gnuplot -c sleep_delay.gp
while IFS= read -r -d '' f; do
output=$(echo "$f" | sed -E 's/\.eps$/.png/')
convert -density 300 "eps2:${f}" "$output"
done < <(find "${SCRIPT_DIR}" -name '*.eps' -print0)