diff --git a/en/gnsslib/gnss.md b/en/gnsslib/gnss.md index 9ea7f6dac2303be174f1bc52486d2198df993522..5737b0340542851471747fd93675031119775b24 100644 --- a/en/gnsslib/gnss.md +++ b/en/gnsslib/gnss.md @@ -153,7 +153,7 @@ This interface checks the validity of GNGGA, GNRMC and GPGSV sentences in the GN **Return Value** -A list ` (gga_valid, rmc_valid, gsv_valid)`. +A tuple ` (gga_valid, rmc_valid, gsv_valid)`. `gga_valid` - Whether the GNGGA sentence is read and has been analyzed successfully. 0 – The GNGGA sentence is not read or the data is invalid. 1 – The GNGGA sentence is valid. diff --git a/en/medialib/audio.Record.md b/en/medialib/audio.Record.md index 821322f1a5bbe09c2113a97b0d9ef45d6c70e926..2fdc7462986708f903eca48859ae3dc83f207e00 100644 --- a/en/medialib/audio.Record.md +++ b/en/medialib/audio.Record.md @@ -93,7 +93,9 @@ Creates a record object. audio.start(file_name,seconds) ``` -This method starts recording. +This method starts recording, recording data stored as files. + +> When recording files in AMR and WAV formats using this method, default sampling rate 8000. When recording files in MP3 format, default sampling rate 22050. **Parameter:** @@ -296,7 +298,7 @@ This method sets the callback function for the end of the recording. | 0 | Start playback | | 3 | Playback ends | -### Record.gain +### Record.gain_set ```python Record.gain(code_gain,dsp_gain) @@ -304,7 +306,7 @@ Record.gain(code_gain,dsp_gain) This method sets the recording gain. -> Currently, only the EC600N/EC800N series modules support this function. +> Currently, only the EC200N/EC600N/EC800N/EC600S/EG915N/EC600M/EC800M/EG810M/EG800P series modules support this function. **Parameter:** @@ -315,6 +317,27 @@ This method sets the recording gain. `0` - Successful execution; `-1`- Failed execution. +### Record.gain_get + +```python +Record.gain_get() +``` + +This method obtains the set recording gain. + +> Currently, only the EC200N/EC600N/EC800N/EC600S/EG915N/EC600M/EC800M/EG810M/EG800P series modules support this function. + +**Parameter:** + +No parameter. + +**Return Value:** + +The return value is a tuple, with the form of:`(code_gain, dsp_gain)` + +- `code_gain` - Integer type. Uplink codec gain. +- `dsp_gain` - Integer type. Uplink digital gain. + ### Record.amrEncDtx_enable ```python diff --git a/en/medialib/qrcode.md b/en/medialib/qrcode.md index f5d0ae4ce337e133e65a6b6530acb031b6d83ef2..6f036e5e6c7545c188bd2e7f46639eb59bea9817 100644 --- a/en/medialib/qrcode.md +++ b/en/medialib/qrcode.md @@ -7,7 +7,7 @@ Feature introduction: generate a corresponding QR code according to the input co ### `qrcode.show` ```python -qrcode.show(qrcode_str,magnification,start_x,start_y,Background_color,Foreground_color) +qrcode.show(qrcode_str,magnification,start_x,start_y,Background_color,Foreground_color,Rotate) ``` Displays QR codes to LCD. @@ -20,8 +20,9 @@ Displays QR codes to LCD. - `start_y` - Integer type. The start y coordinate of the displayed QR code. - `Background_color` - Integer type. Background color. Default value: 0xffff. - `Foreground_color` - Integer type. Foreground color. Default value: 0x0000. +- `Rotate` - Integer type. Rotation angle. Reference [Constant](#constant). Default value: 0. -**Return Value** +**Return Value:** `0` - Successful execution @@ -29,4 +30,39 @@ Displays QR codes to LCD. `-2` - Magnification failed -`-3` - Display failed \ No newline at end of file +`-3` - Display failed + +## Generation QR Code Data + +### `qrcode.getQRData` + +```python +qrcode.getQRData(qrcode_str,magnification,Background_color,Foreground_color) +``` + +Generation QR code and retrieve data. + +**Parameter:** + +- `qrcode_str` - String type. QR code content. +- `magnification` - Integer type. Magnification. Range: 1–6. +- `Background_color` - Integer type. Background color. Default value: 0xffff. +- `Foreground_color` - Integer type. Foreground color. Default value: 0x0000. + +**Return Value:** + +`-1` - QR code generation failed + +Return tuple upon success `(side_length, data)` + +- `side_length`: Side length of QR code. +- `data`: Data of QR code. + +## Constant + +| Constant | Value | Description | +| ------------------- | ----- | ------------------------------------------------------ | +| `qrcode.ROTATE_0` | 0 | QR code display without rotation | +| `qrcode.ROTATE_90` | 1 | Rotate the QR code clockwise by 90 degrees to display | +| `qrcode.ROTATE_180` | 2 | Rotate the QR code clockwise by 180 degrees to display | +| `qrcode.ROTATE_270` | 3 | Rotate the QR code clockwise by 270 degrees to display | \ No newline at end of file diff --git a/en/peripherals/ethernet.W5500.md b/en/peripherals/ethernet.W5500.md index 0fd3ec440f92d3c6dfbbfd9d98bbb6d4d70fd00c..b3d41e56f61287e9926732886dd4389dd1257c08 100644 --- a/en/peripherals/ethernet.W5500.md +++ b/en/peripherals/ethernet.W5500.md @@ -27,6 +27,8 @@ Loads W5500 driver, initializes W5500 Ethernet NIC and returns W5500 NIC object. - `reset_pin` - Connect to reset [GPIO pin](./machine.Pin.md) of `W5500`. The default value is `-1`, indicating that the last configured value is used and the default configuration in the program is `Pin.GPIO17`. - `work_mode` - Configure Ethernet working mode. The default mode is terminal mode. `0` and `1` respectively represents terminal mode and gateway mode. Terminal mode indicates that the module is used as a terminal device to connect to a network supply device to access the network. Gateway mode indicates that the module is used as a gateway to provide network access for external devices through LTE network. +> Note: Do not use the hardware CS pin of spi_port. Instead, select another GPIO pin as the CS pin. + ## Methods ### `W5500.set_addr` diff --git a/en/peripherals/machine.Pin.md b/en/peripherals/machine.Pin.md index 966597bd83c991e48be13b2c9eedd55adbdf782e..652f01e3130d17bd59437cc5391eaa8c56698156 100644 --- a/en/peripherals/machine.Pin.md +++ b/en/peripherals/machine.Pin.md @@ -3562,6 +3562,13 @@ class machine.Pin(GPIOn, direction, pullMode, level)

2.GPIO27, GPIO39, and GPIO40 have weak driving capabilities, so it is recommended to use them only as input pins

+ +
+
+

Note:

+

1.Pin37-GPIO11,Pin38-GPIO12,Pin39-GPIO13,Module that support GNSS function do not enable the multiplexing function of this pin and it need to be left open.

+
+
@@ -3603,11 +3610,14 @@ This method sets the pin level. ```python >>> from machine import Pin +#GPIO Output Mode - Set Pin Level >>> gpio1 = Pin(Pin.GPIO1, Pin.OUT, Pin.PULL_DISABLE, 0) >>> gpio1.write(1) 0 +# GPIO Input Mode - Reading Pin Level +>>> gpio1 = Pin(Pin.GPIO1, Pin.IN, Pin.PULL_DISABLE, 0) >>> gpio1.read() -1 +0 ``` ### `Pin.set_dir` diff --git a/en/peripherals/machine.UART.md b/en/peripherals/machine.UART.md index c8c714f6f62bc421b8449e049c72dc59d045aa03..bec8ed7e6fb51f29e1228348c47e8f1f43ae742e 100644 --- a/en/peripherals/machine.UART.md +++ b/en/peripherals/machine.UART.md @@ -23,7 +23,7 @@ This class transmits data through the UART. -
+
class machine.UART(UART.UARTn, baudrate, databits, parity, stopbits, flowctl)
 

Parametric Description:

@@ -39,6 +39,22 @@ This class transmits data through the UART.
+
+
class machine.UART(UART.UARTn, baudrate, databits, parity, stopbits, flowctl)
+
+

Parametric Description:

+ +
+
class machine.UART(UART.UARTn, baudrate, databits, parity, stopbits, flowctl, [group])
 
@@ -1063,7 +1079,7 @@ This class transmits data through the UART.

Attention:

Uart0 is not recommended

-

EC200ACN_LA module uart1 pin number is different from other models:

+

EC200ACN_LA,EC200AEU_V1HA,EC200ACN_V1DA module uart1 pin number is different from other models:

TX: Pin26

RX: Pin27

@@ -1237,15 +1253,16 @@ This method disables the UART. `-1` - Failed execution +### `uart.control_485` +
-

uart.control_485

uart.control_485(UART.GPIOn, direction)
 

This method is used to control the 485 communication direction, and the specified GPIO is pulled up and down before and after the serial port sends data to indicate the 485 communication direction.

Parametric Description:

    -
  • GPIOn - GPIO Pin number to control, refer to pin definition in [Pin module](machine.Pin.md), int type.

    +
  • GPIOn - GPIO Pin number to control, refer to pin definition in Pin module, int type.

  • direction - Pin level change, int type, described as follows:
    1It indicates that the pin level change is: the serial port is pulled up by low before sending data, and then pulled down by high after sending data
    0It indicates that the pin level change is: the serial port is pulled down by high before sending data, and then pulled up by low after sending data

  • @@ -1258,10 +1275,10 @@ This method disables the UART.
-

uart.control_485

This API is not supported by this model

+
### `uart.set_callback` diff --git a/zh/gnsslib/gnss.md b/zh/gnsslib/gnss.md index 01c530c27b9f6bf1e706badd3558878e8c37d859..6b06d710f85228d17b52c4dabebd6dcef1b192aa 100644 --- a/zh/gnsslib/gnss.md +++ b/zh/gnsslib/gnss.md @@ -139,7 +139,7 @@ GNSS模块提供的功能接口,所获取的数据都来源于从串口读出 **返回值描述** -返回一个列表,形式为 ` (gga_valid, rmc_valid, gsv_valid)` +返回一个元组,形式为 ` (gga_valid, rmc_valid, gsv_valid)` `gga_valid` - 表示本次读取解析,是否匹配到GNGGA数据并解析成功,0表示没有匹配到GNGGA数据或数据无效,1表示有效; diff --git a/zh/gnsslib/quecgnss.md b/zh/gnsslib/quecgnss.md index 10317217ae116460adf1dbb2f366a8a5a725d9cd..c2b35271d2890189575cef686856a60224535333 100644 --- a/zh/gnsslib/quecgnss.md +++ b/zh/gnsslib/quecgnss.md @@ -386,7 +386,7 @@ quecgnss.getPriority() ## 内置GNSS配置参数设置 -> 当前仅EC800M GA/GB/GC/GD系列、EG810M GA系列支持该功能 +> 当前仅EC800M GA/GB/GC/GD系列、EG810M GA系列 ECX00U AA/LA系列支持该功能 ### `quecgnss.configSet` @@ -465,7 +465,7 @@ int,0为成功,否则为失败 ## 内置GNSS配置参数读取 -> 当前仅EC800M GA/GB/GC/GD系列、EG810M GA系列支持该功能 +> 当前仅EC800M GA/GB/GC/GD系列、EG810M GA系列、ECX00U AA/LA系列支持该功能 ### `quecgnss.configGet` diff --git a/zh/medialib/audio.PCM.md b/zh/medialib/audio.PCM.md index 34943bd9e4d0d7b5fe44db2f10df23e1e96e4842..ce8df4dc6a759b72c1414396fc2ad2323b22c4e8 100644 --- a/zh/medialib/audio.PCM.md +++ b/zh/medialib/audio.PCM.md @@ -1,4 +1,4 @@ -# class PCM - PCM音频数据 +# class PCM - PCM音频数据编码 该类提供PCM音频数据的读写接口,PCM数据可用于音频编码。 @@ -119,7 +119,7 @@ PCM.setVolume(vol) > 注:该方法设置的是audio播放音量,与Audio.setVolume设置音量效果相同 -### `PCM.setVolume` +### `PCM.getVolume` ```python PCM.getVolume() @@ -348,7 +348,7 @@ if __name__ == "__main__": class G729(pcm) ``` -创建G729对象。 +创建G729对象。(G729默认支持8K采样率,创建PCM对象时请注意此问题) **参数描述:** diff --git a/zh/medialib/audio.Record.md b/zh/medialib/audio.Record.md index 0a595274ff14d8bcf3a40bf8d510af6d5f3e5cd2..41c15e206ec7f2a95f2048c69f5678f9d3f89791 100644 --- a/zh/medialib/audio.Record.md +++ b/zh/medialib/audio.Record.md @@ -48,7 +48,9 @@ class audio.Record(device) Record.start(file_name,seconds) ``` -该方法用于开始录音。 +该方法用于开始录音,录音数据储存为文件。 + +> 注:该方法录制AMR、WAV格式的文件时,默认采样率为8000,录制MP3格式时,默认采样率为22050。 **参数描述:** @@ -252,15 +254,15 @@ def cb(audio_msg): | 0 | 录音开始 | | 3 | 录音结束 | -### `Record.gain` +### `Record.gain_set` ```python -Record.gain(code_gain,dsp_gain) +Record.gain_set(code_gain,dsp_gain) ``` 该方法用于设置录音增益。 -> 目前仅EC600N/EC800N系列模组支持该功能。 +> 目前仅EC200N/EC600N/EC800N/EC600S/EG915N/EC600M/EC800M/EG810M/EG800P系列模组支持该功能。 **参数描述:** @@ -271,6 +273,27 @@ Record.gain(code_gain,dsp_gain) `0` 表示成功,`-1`表示失败。 +### `Record.gain_get` + +```python +Record.gain_get() +``` + +该方法获取设置的录音增益。 + +> 目前仅EC200N/EC600N/EC800N/EC600S/EG915N/EC600M/EC800M/EG810M/EG800P系列模组支持该功能。 + +**参数描述:** + +无参数 + +**返回值描述:** + +返回值是一个元组,返回值形式为:`(code_gain, dsp_gain)` + +- `code_gain` - 上行编解码器增益。 +- `dsp_gain` - 上行数字增益。 + ### `Record.amrEncDtx_enable` ```python diff --git a/zh/medialib/audio.TTS.md b/zh/medialib/audio.TTS.md index f16e545400f8b9392f278e189f61d798dadf4923..6e72bc0c22370cbdd3bfa15a47f8fba6ad1cb89a 100644 --- a/zh/medialib/audio.TTS.md +++ b/zh/medialib/audio.TTS.md @@ -317,6 +317,8 @@ TTS.setVolume(vol) 该方法用于设置播放音量大小,音量值应在区间[0 ~ 9],0表示静音。 +> 说明:该接口设置的音量是在 Audio.setVolume 的基础上增加的增益,两边的设置都会影响 TTS 播放的实际音量效果。 + **参数描述:** - `vol` - 音量大小,int类型,区间[0 ~ 9]。 diff --git a/zh/medialib/audio.md b/zh/medialib/audio.md index b2d46e4613d3794217b153b83c7ca3fe3fb53975..7fd02055e77c5270d2982bf061d25a287c8ef9db 100644 --- a/zh/medialib/audio.md +++ b/zh/medialib/audio.md @@ -10,3 +10,4 @@ - [class Record - 录音](audio.Record.md) +- [class PCM - 音频数据编码](audio.PCM.md) diff --git a/zh/medialib/qrcode.md b/zh/medialib/qrcode.md index bd505e5bc41c5513dfe2fb39e9e0e62f6e8258d3..efc791a0f3a8125dea71b991b26301a4f6a36b68 100644 --- a/zh/medialib/qrcode.md +++ b/zh/medialib/qrcode.md @@ -2,14 +2,12 @@ 根据输入的内容,生成对应的二维码。 -> 当前支持的型号:EC600N/EC800N系列。 - ## 二维码显示功能 ### `qrcode.show` ```python -qrcode.show(qrcode_str,magnification,start_x,start_y,Background_color,Foreground_color) +qrcode.show(qrcode_str,magnification,start_x,start_y,Background_color,Foreground_color,Rotate) ``` 显示二维码到LCD。 @@ -22,7 +20,44 @@ qrcode.show(qrcode_str,magnification,start_x,start_y,Background_color,Foreground - `start_y`-int类型,二维码显示起始y坐标; - `Background_color`-int类型,前景色(不设置即默认为0xffff); - `Foreground_color`-int类型,背景色(不设置即默认为0x0000)。 +- `Rotate`-int类型,旋转角度,[见常量](#常量)(不设置即默认为0)。 **返回值描述:** `0`表示成功,`-1`表示生成二维码失败,`-2`表示放大失败,`-3`表示显示失败。 + +## 生成二维码数据 + +### `qrcode.getQRData` + +```python +qrcode.getQRData(qrcode_str,magnification,Background_color,Foreground_color) +``` + +生成并获取二维码显示数据。 + +**参数描述:** + +- `qrcode_str`-string类型,二维码内容; +- `magnification`-int类型,放大倍数[1,6]; +- `Background_color`-int类型,前景色(不设置即默认为0xffff); +- `Foreground_color`-int类型,背景色(不设置即默认为0x0000)。 + +**返回值描述:** + +`-1`表示生成二维码失败。 + +成功返回元组`(side_length, data)` + +- `side_length`:二维码边长。 +- `data`:二维码显示数据。 + +## 常量 + +| 常量 | 值 | 说明 | +| ------------------- | ---- | ------------------------ | +| `qrcode.ROTATE_0` | 0 | 二维码不旋转显示 | +| `qrcode.ROTATE_90` | 1 | 二维码顺时针旋转90°显示 | +| `qrcode.ROTATE_180` | 2 | 二维码顺时针旋转180°显示 | +| `qrcode.ROTATE_270` | 3 | 二维码顺时针旋转270°显示 | + diff --git a/zh/peripherals/ethernet.W5500.md b/zh/peripherals/ethernet.W5500.md index 8556b5abe3ae8601ba7c39a784d3a2b92307be1a..62a335512a34d0df5e6a4c723b2578f1e5b609ff 100644 --- a/zh/peripherals/ethernet.W5500.md +++ b/zh/peripherals/ethernet.W5500.md @@ -27,6 +27,8 @@ class ethernet.W5500(mac, ip='', subnet='', gateway='', spi_port=-1, spi_cs_pin= - `reset_pin` - 连接`W5500`的重置[GPIO管脚](./machine.Pin.md),默认值为`-1`, 表示上次配置的值,程序中默认配置为 `Pin.GPIO17`。 - `work_mode` - 以太网工作模式配置,默认为终端模式,`0`/`1` 分别表示终端模式/网关模式。终端模式表示该模块作为终端设备连接供网设备上网。网关模式表示该模块作为网关,为外部设备提供网络访问,通过`4G`上网。 +> 注意:请勿使用spi_port的硬件CS脚,另选一个GPIO作为CS脚 + ## 方法 ### `W5500.set_addr` diff --git a/zh/peripherals/machine.I2C.md b/zh/peripherals/machine.I2C.md index 6007b2c44f46f57741db500240222bd034c26332..42fa83b855aee2c7afd6dd57a29a0c2b03af41ad 100644 --- a/zh/peripherals/machine.I2C.md +++ b/zh/peripherals/machine.I2C.md @@ -92,11 +92,9 @@
-

示例:

-

->>> from machine import I2C
+
>>> from machine import I2C
 >>> # 创建I2C对象
 >>> i2c_obj = I2C(I2C.I2C0, I2C.STANDARD_MODE)  # 返回I2C对象
 
@@ -104,12 +102,12 @@

示例:

-

->>> from machine import I2C
+
>>> from machine import I2C
 >>> # 创建I2C对象
 >>> i2c_obj = I2C(I2C.I2C0, I2C.STANDARD_MODE,0)  # 返回I2C对象
 
+
diff --git a/zh/peripherals/machine.Pin.md b/zh/peripherals/machine.Pin.md index aa44523ae61bf5b8675d0f947c39ef393ce08c41..b116aee4349f0c748489bf8a29a6eb69f67fa07a 100644 --- a/zh/peripherals/machine.Pin.md +++ b/zh/peripherals/machine.Pin.md @@ -3562,6 +3562,13 @@ class machine.Pin(GPIOn, direction, pullMode, level)

2.GPIO27、GPIO39、GPIO40驱动能力较弱,建议仅做输入引脚使用

+ +
+
+

注:

+

1.Pin37-GPIO11,Pin38-GPIO12,Pin39-GPIO13,支持GNSS的模块不会启用此引脚的复用功能,因此该引脚需要保持处于断开状态。

+
+
## 方法 @@ -3600,11 +3607,14 @@ Pin.write(value) ```python >>> from machine import Pin +#GPIO输出模式 设置引脚电平 >>> gpio1 = Pin(Pin.GPIO1, Pin.OUT, Pin.PULL_DISABLE, 0) >>> gpio1.write(1) 0 +#GPIO输入模式 读取引脚电平 +>>> gpio1 = Pin(Pin.GPIO1, Pin.IN, Pin.PULL_DISABLE, 0) >>> gpio1.read() -1 +0 ``` ### `Pin.set_dir` diff --git a/zh/peripherals/machine.UART.md b/zh/peripherals/machine.UART.md index 7244c3603c262326c66854e3c52b21215e600719..68e5408f48d25c1d8f802ba5cefd21fe1c300626 100644 --- a/zh/peripherals/machine.UART.md +++ b/zh/peripherals/machine.UART.md @@ -55,7 +55,7 @@ -
+
class machine.UART(UART.UARTn, baudrate, databits, parity, stopbits, flowctl)
 

参数描述:

@@ -71,6 +71,22 @@
+
+
class machine.UART(UART.UARTn, baudrate, databits, parity, stopbits, flowctl)
+
+

参数描述:

+
    +
  • UARTn - UART编号,int类型,UARTn说明如下:
    UART0 - DEBUG PORT
    UART1 - BT PORT
    UART2 - MAIN PORT
    UART3 - USB CDC PORT

    +
  • +
  • baudratec - 波特率,int类型,支持常用波特率,如48009600192003840057600115200230400等;

  • +
  • databits - 数据位[8],int类型。

  • +
  • parity - 奇偶校验(0 – NONE,1 – EVEN,2 – ODD),int类型。

  • +
  • stopbits - 停止位[1 ~ 2],int类型。

  • +
  • flowctl - 硬件控制流(0 – FC_NONE, 1 – FC_HW),int类型。

    +
  • +
+
+
class machine.UART(UART.UARTn, baudrate, databits, parity, stopbits, flowctl, [group])
 
@@ -1042,8 +1058,8 @@ uart2 引脚号35 引脚号34 - 引脚号36 引脚号37 + 引脚号36 uart4 @@ -1095,7 +1111,7 @@

注意:

uart0不建议使用

-

EC200ACN_LA模组uart1引脚号与其他型号不同:

+

EC200ACN_LA,EC200AEU_V1HA,EC200ACN_V1DA 模组uart1引脚号与其他型号不同:

TX:引脚号26

RX:引脚号27

@@ -1266,15 +1282,17 @@ uart.close() 成功返回整型值`0`,失败返回整型值`-1`。 +### `uart.control_485` +
-

uart.control_485

+
uart.control_485(UART.GPIOn, direction)
 

该方法用于控制485通信方向,串口发送数据之前和之后进行拉高拉低指定GPIO,用来指示485通信的方向。

参数描述:

    -
  • GPIOn - 需要控制的GPIO引脚号,参照[Pin模块](machine.Pin.md)的引脚定义,int类型。

    +
  • GPIOn - 需要控制的GPIO引脚号,参照Pin模块的引脚定义,int类型。

  • direction - 引脚电平变化,int类型,说明如下:
    1表示引脚电平变化为:串口发送数据之前由低拉高、发送数据之后再由高拉低
    0表示引脚电平变化为:串口发送数据之前由高拉低、发送数据之后再由低拉高

  • @@ -1282,15 +1300,16 @@ uart.close()

    返回值描述:

    成功返回整型值0,失败返回整型值-1

    示例:

    -
    from machine import UART
    uart1 = UART(UART.UART1, 115200, 8, 0, 1, 0)
    art1.control_485(UART.GPIO24, 1) +
    from machine import UART
    +uart1 = UART(UART.UART1, 115200, 8, 0, 1, 0)
    +art1.control_485(UART.GPIO24, 1)
     
    +
-

uart.control_485

该型号不支持此API

-
### `uart.set_callback` diff --git a/zh/sidebar.yaml b/zh/sidebar.yaml index ccd782e46f05dfe57ac25ea52cdfe2e659996d57..0e03d77e9ecf5fbe6fe1539a94f3fc88a52407d9 100644 --- a/zh/sidebar.yaml +++ b/zh/sidebar.yaml @@ -162,6 +162,8 @@ items: file: medialib/audio.Audio.md - label: Record - 录音 file: medialib/audio.Record.md + - label: PCM - 音频数据编码 + file: medialib/audio.PCM.md - label: qrcode - 二维码显示 file: medialib/qrcode.md - label: Wi-Fi通信 diff --git a/zh/syslib/fota.md b/zh/syslib/fota.md index dd165b6b6f97c3daf1e7f284e270f7a5e2549e03..8e1aef4b33c1aeee9baa19e55c2683098ee51144 100644 --- a/zh/syslib/fota.md +++ b/zh/syslib/fota.md @@ -116,7 +116,7 @@ fota(reset_disable=) -> EC600N/EC800N/EG912N/EC600M/EC800M/EG810M型号不支持关闭下载完升级包后自动重启功能。 +> EC600N/EC800N/EG912N/EG915N/EC600M/EC800M/EG810M型号不支持关闭下载完升级包后自动重启功能。