Skip to content

Commit 6126612

Browse files
committed
document update
1 parent f8e8e5f commit 6126612

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ _"[remote_demo](https://github.com/teddokano/mikan/tree/main/remote_demo)" runni
4545
- [PCAL6534](https://www.nxp.com/products/interfaces/ic-spi-i3c-interface-devices/general-purpose-i-o-gpio/ultra-low-voltage-level-translating-34-bit-ic-bus-smbus-i-o-expander:PCAL6534)
4646
- LCD driver
4747
- [PCA8561](https://www.nxp.com/products/peripherals-and-logic/lcd-drivers/lcd-segment-drivers/automotive-18-x-4-lcd-segment-driver:PCA8561)
48-
- I2C bus multiplexer/switch
48+
- I²C bus multiplexer/switch
4949
- [PCA9846](https://www.nxp.com/products/interfaces/ic-spi-i3c-interface-devices/ic-multiplexers-switches/four-channel-ultra-low-voltage-fm-plus-ic-bus-switch-with-reset:PCA9846)
5050
- Protocol bridge
5151
- SC16IS7xx (
@@ -60,7 +60,7 @@ _"[remote_demo](https://github.com/teddokano/mikan/tree/main/remote_demo)" runni
6060
- [FXLS8974](https://www.nxp.com/docs/en/data-sheet/FXLS8974CF.pdf)
6161
- Analog Front-End
6262
- [NAFE13388](https://www.nxp.com/products/analog-and-mixed-signal/analog-front-end/highly-configurable-8-channel-25-v-universal-input-analog-front-end-with-excitation-sources:NAFEx3388)
63-
- Bus repeater (I2C buffer)
63+
- Bus repeater (I²C buffer)
6464
- [PCA9617A](https://www.nxp.com/products/interfaces/ic-spi-i3c-interface-devices/ic-bus-repeaters-hubs-extenders/level-translating-fm-plus-ic-bus-repeater:PCA9617A)
6565
**:No class driver available since this device doesn't need software control. Evaluation board demo code only**
6666
- Level shifter (Voltage translator)
@@ -168,7 +168,7 @@ It shows simple usage examples for the drivers and standalome demo for target de
168168

169169
> **Note**
170170
> These examples should work on any MicroPython platform but need to absorb hardware difference.
171-
> All these examples runs as it is on MIMXRT1050-EVK. If you try on MIMXRT1170-EVK, the hardware I2C has different ID for A4/A5 pins. The ID must be changed from 0 to 2.
171+
> All these examples runs as it is on MIMXRT1050-EVK. If you try on MIMXRT1170-EVK, the hardware I²C has different ID for A4/A5 pins. The ID must be changed from 0 to 2.
172172
> Refer to pinout document for each platforms. For i.MXRT, the pinout information is available [here](https://docs.micropython.org/en/latest/mimxrt/pinout.html#mimxrt-i2c-pinout).
173173
174174

@@ -189,8 +189,8 @@ It shows simple usage examples for the drivers and standalome demo for target de
189189
⏰|RTC_demo_PCF85063TP-ARD.py |example/ARD_boards/|Operation sample through MicroPython’s machine.RTC equivalent APIs. |PCF85063TP
190190
⏰|RTC_demo_PCF85053A-ARD.py |example/ARD_boards/|Operation sample through MicroPython’s machine.RTC equivalent APIs. Using alarm interrupt |PCF85053A
191191
🌡️|temp_sensor_simple_PCT2075_LM75B.py |example/general/ |Very simple sample to operate a temp sensor |LM75B, PCT2075
192-
🌡️|temp_sensor_simple_P3T1085_P3T1755_P3T1035_P3T2030.py |example/general/ |Very simple sample to operate a temp sensor with different I2C pin assign. |P3T1085, P3T1755, P3T1035, P3T2030
193-
🌡️|temp_sensor_simple_P3T1085_P3T1755_P3T1035_P3T2030-ARD.py |example/ARD_boards/|Similar to “temp_sensor_simple.py” but different I2C pin assign. |P3T1085, P3T1755, P3T1035, P3T2030
192+
🌡️|temp_sensor_simple_P3T1085_P3T1755_P3T1035_P3T2030.py |example/general/ |Very simple sample to operate a temp sensor with different I²C pin assign. |P3T1085, P3T1755, P3T1035, P3T2030
193+
🌡️|temp_sensor_simple_P3T1085_P3T1755_P3T1035_P3T2030-ARD.py |example/ARD_boards/|Similar to “temp_sensor_simple.py” but different I²C pin assign. |P3T1085, P3T1755, P3T1035, P3T2030
194194
🌡️|temp_sensor_demo_PCT2075DP-ARD.py |example/ARD_boards/|Operate with interrupt and heater-resister on ARD board |PCT2075
195195
🌡️|temp_sensor_demo_P3T1085UK-ARD.py |example/ARD_boards/|Similar to “temp_sensor_demo_PCT2075DP-ARD” but no heater operation |P3T1085
196196
🌡️|temp_sensor_demo_P3T1755DP-ARD.py |example/ARD_boards/|Similar to “temp_sensor_demo_PCT2075DP-ARD” but no heater operation |P3T1755
@@ -205,8 +205,8 @@ It shows simple usage examples for the drivers and standalome demo for target de
205205
🍎|accelerometer.py |example/general/|Simple 3 axis data capturing from FXOS8700 or FXLS8974 |FXOS8700, FXLS8974
206206
🍎|magnetometer.py |example/general/|Simple compass application using FXOS8700 |FXOS8700
207207
🌊|afe.py |example/general/|Simple AFE (NAFE13388) operation to show measured voltage on 2 input channels |NAFE13388
208-
-|BusSwitch_PCA9846PW-ARD.py |example/ARD_boards/|Demo to show I2C bus switch function with EEPROMs |PCA9846
209-
-|BusRepeater_PCA9617ADP-ARD.py |example/ARD_boards/|Demo to show I2C bus repeater (buffer) function with several signal voltages combinations using an EEPROM |PCA617A
208+
-|BusSwitch_PCA9846PW-ARD.py |example/ARD_boards/|Demo to show I²C bus switch function with EEPROMs |PCA9846
209+
-|BusRepeater_PCA9617ADP-ARD.py |example/ARD_boards/|Demo to show I²C bus repeater (buffer) function with several signal voltages combinations using an EEPROM |PCA617A
210210
-|LevelShifter_NTS0304EUK-ARD.py |example/ARD_boards/|Demo to show level shifter (voltage translator) function with several signal voltages combinations using a digital potentiometer |NTS0304E
211211

212212
## Demo (remote demo)

0 commit comments

Comments
 (0)