-
Notifications
You must be signed in to change notification settings - Fork 296
JSON Cheat Sheet
Alden Hart edited this page Mar 18, 2017
·
3 revisions
This table summarizes using JSON for configuration and commands. Details are provided in the subsequent sections.
Request | Response | Description |
---|---|---|
{"xvm":n} | {"r":{"xvm":16000},"f":[3,0,6]} | get X axis maximum velocity |
{xvm:n} | {"r":{"xvm":16000},"f":[3,0,6]} | same as above with a relaxed mode request |
{"xvm":15000} | {"r":{"xvm":15000},"f":[3,0,6]} | set X axis maximum velocity to 15000 |
{"x":{"vm":n}} | {"r":{"x":{"vm":16000}},"f":[3,0,6]} | alternate form to get X axis maximum velocity |
{"x":{"vm":15000}} | {"r":{"x":{"vm":15000}},"f":[3,0,6]} | alternate form to set X axis maximum velocity to 15000 |
{"x":n} | {"r":{"x":{"am":1,"vm":16000.000,"fr":16000.000,.... | get entire X axis group (see below for entire response) |
{"gc":"g0x10"} | {"f":[3,0,6]} | send Gcode with verbosity=1, 2 or 3 |
{"gc":"n20g0x20"} | {"r":{"n":20},"f":[3,0,6]} | send Gcode with verbosity=4 |
{"gc":"n20g0x20"} | {"r":{"gc":"n20g0x20","n":20},"f":[3,0,6]} | send Gcode with verbosity=5 |
{"gc":"g0x10"} | {"r":{"gc":"g0x10"},"f":[3,0,6]} | send Gcode with verbosity=5 |
n20g0x20 | {"r":{"gc":"n20g0x20","n":20},"f":[3,0,6]} | send unwrapped Gcode with verbosity=5 |
g0x10 | {"r":{"gc":"g0x10"},"f":[3,0,6]} | send unwrapped Gcode with verbosity=5 |
X axis group response:
{"r":{"x":{"am":1,"vm":40000,"fr":40000,"tn":0,"tm":420,"jm":5000,"jh":20000,"jd":null,"hi":1,"hd":0,"sv":3000,"lv":100,"lb":4,"zb":2}},"f":[1,0,6]}
Getting Started Pages
- Home
- What is g2core?
- Who uses g2core?
- Jerk-Controlled Motion
- Getting Started with g2core
- Connecting to g2core
- Configuring g2core
- Flashing g2core
- Troubleshooting
Reference Pages
- Gcodes
- Mcodes
- Text Mode
- JSON Communications
- GPIO Digital IO
- Alarms & Exceptions
- Power Management
- Coordinate Systems
- Status Reports
- Status Codes
- G2 Communications
- Tool Offsets and Selection
- Probing
- Feedhold, Resume, Job Kill
- Marlin Compatibility
- 9 Axis UVW Operation
- gQuintic Specs
Discussion Topics
- Roadmap
- GPIO for 1.X Releases
- Toolheads
- Raster Streaming Prototol
- g2core REST Interface
- Gcode Parsing
- G2 3DP Dialect
- Consensus Gcode
- Digital DRO
- Overview of Motion Processing
Developer Pages
- Development & Contribution
- Branching and Release - DRAFT
- Getting Started with g2core Development
- Project Structure & Motate
- Compiling G2
- OSX w/Xcode
- OSX/Linux Command Line
- Windows10 w/AtmelStudio7
- Debugging G2 on OSX
- Board and Machine Profiles
- Arduino Due Pinout
- Arduino DUE External Interfaces
- Diagnostics
- Debugging w/Motate Pins
- Development Troubleshooting
- g2core Communications
- Git Procedures
- Windows 10 / VMware 8 Issues
- Dual Endpoint USB Internals
- G2core License
- VSCode Setup
- Compatibility Axioms
- Wiki History