Skip to content

Commit

Permalink
Merge pull request #1737 from ROBOTIS-Yang/Maintenance
Browse files Browse the repository at this point in the history
Fix typo in ID
  • Loading branch information
ROBOTIS-Yang authored Jan 20, 2025
2 parents d2c0ef2 + 84d4aa7 commit 58fb08f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion _includes/en/dxl/control_table_id.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@

{% assign stauts_return_lv = "Stuatus Return Level (16)" %}
{% assign protocol= "DYNAMIXEL Protocol 1.0" %}
{% assign id= "0~253 (0xFD)" %}

{% elsif page.product_group == 'dxl_xl320' %}

{% assign stauts_return_lv = "Stuatus Return Level (17)" %}
{% assign protocol= "DYNAMIXEL Protocol 2.0" %}
{% assign id= "0~252 (0xFC)" %}

{% else %}

{% assign stauts_return_lv = "Stuatus Return Level (68)" %} <!-- X / MX 2.0 -->
{% assign protocol= "DYNAMIXEL Protocol 2.0" %}
{% assign id= "0~252 (0xFC)" %}

{% endif %}

The ID is a unique value in the network to identify each DYNAMIXEL with an Instruction Packet.
0~253 (0xFD) values can be used as an ID, and 254(0xFE) is occupied as a broadcast ID. The Broadcast ID(254, 0xFE) can send an Instruction Packet to all connected DYNAMIXEL simultaneously.
{{ id }} values can be used as an ID, and 254(0xFE) is occupied as a broadcast ID. The Broadcast ID(254, 0xFE) can send an Instruction Packet to all connected DYNAMIXEL simultaneously.

**NOTE** : Please avoid using an identical ID for multiple DYNAMIXEL. You may face communication failure or may not be able to detect DYNAMIXEL with an identical ID.
{: .notice}
Expand Down
5 changes: 4 additions & 1 deletion _includes/kr/dxl/control_table_id.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@

{% assign stauts_return_lv = "Stuatus Return Level (16)" %}
{% assign protocol= "다이나믹셀 프로토콜 1.0" %}
{% assign id= "0~253 (0xFD)" %}

{% elsif page.product_group == 'dxl_xl320' %}

{% assign stauts_return_lv = "Stuatus Return Level (17)" %}
{% assign protocol= "다이나믹셀 프로토콜 2.0" %}
{% assign id= "0~252 (0xFC)" %}

{% else %}

{% assign stauts_return_lv = "Stuatus Return Level (68)" %} <!-- X / MX 2.0 -->
{% assign protocol= "다이나믹셀 프로토콜 2.0" %}
{% assign id= "0~252 (0xFC)" %}

{% endif %}

Instruction Packet으로 장치를 식별하기 위한 고유 번호입니다.
0~253 (0xFD) 까지 사용 가능하며, 254(0xFE)는 브로드캐스트(Broadcast) ID로 특수하게 사용됩니다.
{{ id }} 까지 사용 가능하며, 254(0xFE)는 브로드캐스트(Broadcast) ID로 특수하게 사용됩니다.
브로드캐스트 ID(254, 0xFE)로 Instruction Packet을 전송하면 모든 장치에 명령을 내릴 수 있습니다.

**참고** : 연결된 장치의 ID가 중복되지 않도록 주의해야 합니다. 장치의 ID가 중복되면, 통신 오류 및 고유의 ID를 가지는 다이나믹셀 검색에 실패합니다.
Expand Down

0 comments on commit 58fb08f

Please sign in to comment.