Last active
September 8, 2021 11:14
-
-
Save robinkrens/aeabf1a8d372d6f50f96d865c64b1332 to your computer and use it in GitHub Desktop.
Sensorpole firmware arch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Make pdf by running `dot -Tpng file.dot -o out.png` | |
* or check online at one of the many tools like webgraphviz.com */ | |
digraph G { | |
A [label="Initializing"] | |
B [label="Communicating"] | |
C [label="Monitoring\n (ULP mode)"] | |
D [label="Sleeping\n (Shelf mode)"] | |
D -> A [label="Tilt trigger"] | |
A -> B | |
B -> C [label="ULP run"] | |
C -> C [label="Read sensor"] | |
C -> B [label="Timer wakeup"] | |
C -> D [label="Tilt trigger"] | |
} |
Author
robinkrens
commented
Sep 8, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment