(graphviz) initial testing

This commit is contained in:
scbj
2026-04-10 09:40:10 +02:00
parent 118fcef730
commit fc655cd6ad
+10
View File
@@ -0,0 +1,10 @@
digraph {
node [shape = "rect", style = "rounded", fontname = "JetBrainsMono"];
entry [label = "", shape = "circle", style = "filled", color = "black"];
adc_init [label = "initialise ADC"];
loop [label = "", shape = "circle", style = "filled", color = "gray"];
entry -> adc_init
adc_init -> loop
loop -> entry
}