Projekt

Allgemein

Profil

Wiki » Historie » Version 7

Maximilian Seesslen, 31.08.2022 17:53

1 1 Maximilian Seesslen
h1. Wiki
2
3 2 Maximilian Seesslen
[[Bringup]]
4 3 Maximilian Seesslen
[[UI]]
5 4 Maximilian Seesslen
6
h2. Screens
7
8
* CANMon
9
** Static list with target-Values, delta
10
** Home-Button
11
** Color depending on delta
12
** Timeout for values to be invalidated
13 5 Maximilian Seesslen
14
h2. How to write flash
15
16
h2. Icons
17
18
https://www.iconfinder.com/search/icons?q=pretzel
19 6 Maximilian Seesslen
https://www.iconfinder.com/search/icons?q=pretzel&price=free
20
git clone https://github.com/google/material-design-icons/
21 7 Maximilian Seesslen
22
imagemagick (graphicsmagic provides GIF)
23
24
<pre><code class="shell">
25
#!/bin/bash
26
27
set -e -u
28
29
mkdir -p 32
30
for ifile in *.png; do
31
    convert $ifile -define h:format=a -depth 1 -background white  -alpha off -resize 32x32 32/${ifile%.*}.h
32
    convert $ifile -define h:format=rgb -depth 1 -background white -alpha off -resize 32x32 32/${ifile%.*}.png
33
    # convert $ifile -define h:format=rgb -depth 1 -background white -alpha deactivate -resize 32x32 32/${ifile%.*}.png
34
    convert $ifile -background white -alpha remove -flatten -alpha off -depth 1 -resize 32x32 32/${ifile%.*}.png
35
    convert 32/${ifile%.*}.png -monochrome 32/${ifile%.*}_1.png
36
37
done
38
</code></pre>