Skip to content

Instantly share code, notes, and snippets.

@jottr
Last active October 20, 2021 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jottr/320f12617ba621cf220de250dd048f8f to your computer and use it in GitHub Desktop.
Save jottr/320f12617ba621cf220de250dd048f8f to your computer and use it in GitHub Desktop.
// 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"]
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment