Difference between revisions of "Duet3 SBC Commands"
Jump to navigation
Jump to search
Poofjunior (talk | contribs) (Created page with "Handy Duet3 Commands when controlling via a single board computer such as a raspberry pi using the Duet Software Framework. == Intro == [https://github.com/Duet3D/DuetSoftwar...") |
Poofjunior (talk | contribs) |
||
Line 3: | Line 3: | ||
== Intro == | == Intro == | ||
[https://github.com/Duet3D/DuetSoftwareFramework#duet-software-framework Duet Software Framework] is a collection of programs for controlling a Duet externally with a single board computer. These are released together as the DuetPi linux image, | [https://github.com/Duet3D/DuetSoftwareFramework#duet-software-framework Duet Software Framework] is a collection of programs for controlling a Duet externally with a single board computer. These are released together as the DuetPi linux image, | ||
+ | |||
+ | ==Dev Ops Debugging Utilities== | ||
+ | ===Invoking GCode Directly from the Terminal=== | ||
+ | <code> echo "M122" | sudo /opt/dsf/bin/CodeConsole"</code> | ||
+ | |||
+ | |||
+ | ===Monitoring the status of a systemd service=== | ||
+ | <code>journalctl -u duetcontroserver.service -f</code> | ||
+ | |||
+ | This will catch systemd services that are running in continuous restart loops. |
Latest revision as of 14:03, 17 August 2020
Handy Duet3 Commands when controlling via a single board computer such as a raspberry pi using the Duet Software Framework.
Contents
Intro
Duet Software Framework is a collection of programs for controlling a Duet externally with a single board computer. These are released together as the DuetPi linux image,
Dev Ops Debugging Utilities
Invoking GCode Directly from the Terminal
echo "M122" | sudo /opt/dsf/bin/CodeConsole"
Monitoring the status of a systemd service
journalctl -u duetcontroserver.service -f
This will catch systemd services that are running in continuous restart loops.