This controls two Motion G 2x MotionG "DN1-G60xxN" boards. Each board is on its own interface, and both boards have a Modbus address of 1.
按键功能:
Disable: 失能两个电机 Enable: 清除错误,和重新使能两个电机
LED灯效:
X轴: 当有错误时,灯是红色,正常时,灯是绿色 Y轴: 当有错误时,灯是红色,正常时,灯是绿色
System On Chip: ESP32-WROOM-32D
Component | Use |
---|---|
Left LED | X Motor Status |
Right LED | Y Motor Status |
Left Button | Disable Motors (hold 1 second) |
Right Button | Enable Motors / Clear Errors (hold 1 second) |
- Disable Button
- Enable Button
- X Motor Status Red/Green LED
- Y Motor Status Red/Green LED
- USB-C Connector
- JST USB Connector. Shares pins with USB-C Connector
- X Motor RS485 Connector
- Y Motor RS485 Connector
- 3 pin JST Connector to BTT Octopus Pro Board
error code | reason | how to solve |
---|---|---|
0x33,0x31 | There is poor contact or disconnection in the power lines U, V, and W of the motor. | Check whether the motor power cable is properly connected |
0x32,0x30 | The power supply voltage of the driver is insufficient and below the minimum value of the hardware voltage input. | enable motor again |
0xFF,0x07 | Hardware overcurrent caused an error in the DRV nFault pin. | Check whether the power output line of the motor is short-circuited between phases, or short-circuited to the ground |
0x84,0x00 | The protection is activated when the maximum velocity limit switch is turned on. | reduce speed |
0x86,0x11 | position control error exceeds the tracking error window | Check whether cable connections are correct 2.Ensure that the motor power is appropriate |
- Overview of the Magneto X Electronic Hardware System
- Guide to Capturing Linear Motor Error Codes
- Linear Motor Parameters
- LinearMotorHost User Guide
- Hardware User Manual -> DN1-G60xxN General Control Mode User Manual
- Software User Manual -> DN1-G60xxN General Control Mode Software Guidance
- Software User Manual -> Upper computer debugging software user manua
The device operates using a CH340 USB to Serial adapter.
115200 baud 8N1
pio device monitor
python -m serial -e /dev/ttyUSB0 115200
The controller operates in one of three modes. Normal mode, RTU gateway mode, and RTU mixed mode.
This automatically polls motor status, updating LEDs and the error pin as appropriate. The buttons enable and disable the motors. Enabling the motors also clears any ongoing errors.
In addition, error messages are reported via serial, and certain ACSII commands are availabe.
When no motor errors are occurring, accepts Modbus RTU data as in Mixed mode.
Multiple legacy commands exist, but are deprecated! These are the only supported commands.
Command | Function |
---|---|
DISABLE | Disable Motors |
ENABLE | Enable Motors / Clear Errors |
RTU_GATEWAY | Switch to Modbus RTU Gateway Mode |
RTU_MIXED | Switch to Modbus RTU Mixed Mode |
VERSION | Get Firmware Version String |
The controller can be reconfigured as a Modbus gateway. Enter this mode by sending 'RTU\n' when in normal mode.
Device Ids
Id | Device |
---|---|
1 | Controller |
2 | X Motor |
3 | Y Motor |
Discrete Inputs
Address | Name |
---|---|
1 | Disable Button |
2 | Enable Button |
Holding Registers
Address | Name | Values | Description |
---|---|---|---|
1 | mode | 0-2 | 0: ASCII Mode, 1: RTU Gateway Mode 2: RTU Mixed Mode |
2 | XLed | 0-2 | 0: OFF 1: RED 2: GREEN |
3 | YLed | 0-2 | 0: OFF 1: RED 2: GREEN |
# Enter RTU Mode
mbpoll -a 1 -t4:hex -r 1 /dev/ttyUSB0 -m rtu -b 115200 -P none -v -- 1
# Read Button State
mbpoll -a 1 -t1 -r 1 -c 2 /dev/ttyUSB0 -m rtu -b 115200 -P none -v -1
# Read LED State
mbpoll -a 1 -t4:hex -r 2 -c 2 /dev/ttyUSB0 -m rtu -b 115200 -P none -v -1
# Set LED Colors to green
mbpoll -a 1 -t4:hex -r 2 /dev/ttyUSB0 -m rtu -b 115200 -P none -v -- 2 2
# Exit RTU Mode
mbpoll -a 1 -t4:hex -r 1 /dev/ttyUSB0 -m rtu -b 115200 -P none -v -- 0
Serial communication works as in RTU Gateway mode. Buttons, LEDs, and error detection works as in ASCII mode.