Last active
October 20, 2021 01:41
-
-
Save jottr/320f12617ba621cf220de250dd048f8f to your computer and use it in GitHub Desktop.
This file contains 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
// This renders the wiring diagram for the Makerbase 3D Touch probe for the Crealty 32bit Ender 3v2 board | |
digraph { | |
//rankdir=LR; | |
node [ shape=record ]; | |
touch [label=" | |
<G1> G| | |
<V> 5V| | |
<S> S| | |
<G2> G| | |
<Z> Z- | |
"]; | |
ender [label=" | |
<G1> G| | |
<V> V| | |
<I> In| | |
<G2> G| | |
<O> Out | |
"]; | |
touch:G1 -> ender:G1 [color="brown"] | |
touch:V -> ender:V [color="red"] | |
touch:S -> ender:I [color="peachpuff"] | |
touch:G2 -> ender:G2 [color="black"] | |
touch:Z -> ender:O [color="grey"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment