diff --git a/boards/default_src/micropython/blocks/network.js b/boards/default_src/micropython/blocks/network.js
index e59ef096..55c55d21 100644
--- a/boards/default_src/micropython/blocks/network.js
+++ b/boards/default_src/micropython/blocks/network.js
@@ -191,13 +191,13 @@ export const network_ap_connect = {
this.appendValueInput('VAR')
.setCheck("var")
this.appendDummyInput("")
- .appendField(Blockly.Msg.LISTS_SET_INDEX_SET);
+ .appendField(Blockly.Msg.LISTS_SET_INDEX_SET + Blockly.Msg.MIXLY_HOTSPOT);
this.appendValueInput('essid')
.setCheck(String)
- .appendField(Blockly.Msg.MIXLY_NETWORK_WIFI_ESSID);
+ .appendField(Blockly.Msg.MIXLY_NAME);
this.appendValueInput('password')
.setCheck(String)
- .appendField(Blockly.Msg.MIXLY_NETWORK_WIFI_ESSID);
+ .appendField(Blockly.Msg.MIXLY_EMQX_PASSWORD);
this.appendValueInput('channel')
.setCheck(Number)
.appendField(Blockly.Msg.MIXLY_NETWORK_WIFI_CHANNEL);
diff --git a/boards/default_src/micropython_esp32/template.xml b/boards/default_src/micropython_esp32/template.xml
index e003f4c9..285a0b4a 100644
--- a/boards/default_src/micropython_esp32/template.xml
+++ b/boards/default_src/micropython_esp32/template.xml
@@ -262,7 +262,7 @@
- tim_6
+ tim_callback
@@ -6769,12 +6769,12 @@
- 127.16.0.8
+ mixly
- 123456
+ 12345678
diff --git a/boards/default_src/micropython_esp32c2/template.xml b/boards/default_src/micropython_esp32c2/template.xml
index 6a5dee4f..9a70bf32 100644
--- a/boards/default_src/micropython_esp32c2/template.xml
+++ b/boards/default_src/micropython_esp32c2/template.xml
@@ -6696,12 +6696,12 @@
- 127.16.0.8
+ mixly
- 123456
+ 12345678
diff --git a/boards/default_src/micropython_esp32c3/template.xml b/boards/default_src/micropython_esp32c3/template.xml
index 31ea26fc..8120c951 100644
--- a/boards/default_src/micropython_esp32c3/template.xml
+++ b/boards/default_src/micropython_esp32c3/template.xml
@@ -6588,12 +6588,12 @@
- 127.16.0.8
+ mixly
- 123456
+ 12345678
diff --git a/boards/default_src/micropython_esp32s2/template.xml b/boards/default_src/micropython_esp32s2/template.xml
index 89348d79..0b342820 100644
--- a/boards/default_src/micropython_esp32s2/template.xml
+++ b/boards/default_src/micropython_esp32s2/template.xml
@@ -6312,12 +6312,12 @@
- 127.16.0.8
+ mixly
- 123456
+ 12345678
diff --git a/boards/default_src/micropython_esp32s3/template.xml b/boards/default_src/micropython_esp32s3/template.xml
index 83575a96..d3876501 100644
--- a/boards/default_src/micropython_esp32s3/template.xml
+++ b/boards/default_src/micropython_esp32s3/template.xml
@@ -7073,12 +7073,12 @@
- 127.16.0.8
+ mixly
- 123456
+ 12345678
diff --git a/boards/default_src/micropython_robot/template.xml b/boards/default_src/micropython_robot/template.xml
index 64fc8c46..9546ea3d 100644
--- a/boards/default_src/micropython_robot/template.xml
+++ b/boards/default_src/micropython_robot/template.xml
@@ -5351,12 +5351,12 @@
- 127.16.0.8
+ mixly
- 123456
+ 12345678
diff --git a/common/msg/blockly/en.js b/common/msg/blockly/en.js
index c12133c9..41a02e65 100644
--- a/common/msg/blockly/en.js
+++ b/common/msg/blockly/en.js
@@ -3974,4 +3974,6 @@ En.MIXLY_IMAGE_OF_FILE = 'code data of image file';
En.MIXLY_ENABLE_STATUS = 'enable status';
En.MIXLY_MICROPHONE_AMPLIFICATION = 'microphone amplification';
En.MIXLY_MUSIC_VOLUME_SET = 'set music volume';
+En.MIXLY_HOTSPOT= 'hot spot';
+En.MIXLY_NAME = 'name';
})();
diff --git a/common/msg/blockly/zh-hans.js b/common/msg/blockly/zh-hans.js
index 5528a0be..9ec8bfe0 100644
--- a/common/msg/blockly/zh-hans.js
+++ b/common/msg/blockly/zh-hans.js
@@ -4133,4 +4133,6 @@ ZhHans.MIXLY_IMAGE_OF_FILE = '图像文件编码数据';
ZhHans.MIXLY_ENABLE_STATUS = '使能状态';
ZhHans.MIXLY_MICROPHONE_AMPLIFICATION = '麦克风放大倍数';
ZhHans.MIXLY_MUSIC_VOLUME_SET = '音量调节';
+ZhHans.MIXLY_HOTSPOT= '热点';
+ZhHans.MIXLY_NAME = '名称';
})();
\ No newline at end of file
diff --git a/common/msg/blockly/zh-hant.js b/common/msg/blockly/zh-hant.js
index 21cde038..bc5af6c8 100644
--- a/common/msg/blockly/zh-hant.js
+++ b/common/msg/blockly/zh-hant.js
@@ -4128,4 +4128,6 @@ ZhHant.MIXLY_IMAGE_OF_FILE = '圖像文件編碼數據';
ZhHant.MIXLY_ENABLE_STATUS = '使能狀態';
ZhHant.MIXLY_MICROPHONE_AMPLIFICATION = '麥克風放大倍數';
ZhHant.MIXLY_MUSIC_VOLUME_SET = '音量調節';
+ZhHant.MIXLY_HOTSPOT= '熱點';
+ZhHant.MIXLY_NAME = '名稱';
})();