Difference between revisions of "Duet3 SBC Commands"

From Double Jump Electric Wiki
Jump to navigation Jump to search
(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...")
 
 
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 15:03, 17 August 2020

Handy Duet3 Commands when controlling via a single board computer such as a raspberry pi using the Duet Software Framework.

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.