Skip to content

Commit a9cf3ba

Browse files
committed
chore: update all wiki links
Signed-off-by: Frederic Pillon <[email protected]>
1 parent b16bec3 commit a9cf3ba

15 files changed

+118
-118
lines changed

API.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# API
22

3-
* [Core](https://github.com/stm32duino/wiki/wiki/API#core)
4-
* [Core version](https://github.com/stm32duino/wiki/wiki/API#core-version)
5-
* [Core Callback](https://github.com/stm32duino/wiki/wiki/API#core-callback)
6-
* [Wiring](https://github.com/stm32duino/wiki/wiki/API#wiring)
7-
* [Analog](https://github.com/stm32duino/wiki/wiki/API#analog)
8-
* [HardwareSerial](https://github.com/stm32duino/wiki/wiki/API#hardwareserial)
9-
* [HardwareTimer](https://github.com/stm32duino/wiki/wiki/HardwareTimer-library)
10-
* [Built-In Library](https://github.com/stm32duino/wiki/wiki/API#built-in-library)
11-
* [SPI](https://github.com/stm32duino/wiki/wiki/API#spi)
12-
* [I2C](https://github.com/stm32duino/wiki/wiki/API#i2C)
13-
* [CMSIS DSP](https://github.com/stm32duino/wiki/wiki/API#cmsis-dsp)
14-
* [EEPROM emulation](https://github.com/stm32duino/wiki/wiki/API#EEPROM-Emulation)
15-
* [Servo](https://github.com/stm32duino/wiki/wiki/Servo-library)
16-
* [Other](https://github.com/stm32duino/wiki/wiki/API#other)
17-
* [Remembering variables across resets](https://github.com/stm32duino/wiki/wiki/API#Remembering-variables-across-resets)
3+
* [Core](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#core)
4+
* [Core version](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#core-version)
5+
* [Core Callback](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#core-callback)
6+
* [Wiring](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#wiring)
7+
* [Analog](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#analog)
8+
* [HardwareSerial](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#hardwareserial)
9+
* [HardwareTimer](https://github.com/stm32duino/Arduino_Core_STM32/wiki/HardwareTimer-library)
10+
* [Built-In Library](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#built-in-library)
11+
* [SPI](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#spi)
12+
* [I2C](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#i2C)
13+
* [CMSIS DSP](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#cmsis-dsp)
14+
* [EEPROM emulation](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#EEPROM-Emulation)
15+
* [Servo](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Servo-library)
16+
* [Other](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#other)
17+
* [Remembering variables across resets](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API#Remembering-variables-across-resets)
1818

1919
# Core
2020

@@ -60,7 +60,7 @@ _Params_ `func` pointer to the callback function
6060

6161
[[/img/Warning-icon.png|alt="Warning"]] By default, the core callback feature is disabled, to enable it `CORE_CALLBACK` must be defined.
6262

63-
`build_opt.h` can be used to define it by adding `-DCORE_CALLBACK`, see [build_opt.h wiki](https://github.com/stm32duino/wiki/wiki/Customize-build-options-using-build_opt.h).
63+
`build_opt.h` can be used to define it by adding `-DCORE_CALLBACK`, see [build_opt.h wiki](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Customize-build-options-using-build_opt.h).
6464

6565
# Wiring
6666

@@ -137,12 +137,12 @@ void loop() {
137137
delay(1000);
138138
}
139139
```
140-
Another solution is to add a [build_opt.h](https://github.com/stm32duino/wiki/wiki/Customize-build-options-using-build_opt.h) file alongside your main `.ino` file with: `-DENABLE_HWSERIALx`.
140+
Another solution is to add a [build_opt.h](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Customize-build-options-using-build_opt.h) file alongside your main `.ino` file with: `-DENABLE_HWSERIALx`.
141141
This will define the `Serialx` instance using the first `USARTx` instance found in the `PeripheralPins.c` of your variant.
142142

143143
[[/img/Note-icon.png|alt="Note"]] **Note** that only the latter solution allows to use the `serialEventx()` callback in the sketch.
144144

145-
For Example, if you define in the [build_opt.h](https://github.com/stm32duino/wiki/wiki/Customize-build-options-using-build_opt.h): `-DENABLE_HWSERIAL3`
145+
For Example, if you define in the [build_opt.h](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Customize-build-options-using-build_opt.h): `-DENABLE_HWSERIAL3`
146146

147147
This will instantiate `Serial3` with the first Rx and Tx pins found in the `PinMap_UART_RX[]` and `PinMap_UART_TX[]` arrays in the `PeripheralPins.c` of your variant and the `serialEvent3()` will be enabled.
148148

@@ -289,7 +289,7 @@ void loop() {
289289
}
290290
```
291291
292-
**Note:** Serial Rx/TX buffer size can be changed, see [custom definitions](https://github.com/stm32duino/wiki/wiki/Custom-definitions#serial-rxtx-buffer-size)
292+
**Note:** Serial Rx/TX buffer size can be changed, see [custom definitions](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Custom-definitions#serial-rxtx-buffer-size)
293293
294294
#### Enable hardware flow control
295295
@@ -319,7 +319,7 @@ serial.begin(460800);
319319
```
320320

321321
## HardwareTimer library
322-
https://github.com/stm32duino/wiki/wiki/HardwareTimer-library
322+
https://github.com/stm32duino/Arduino_Core_STM32/wiki/HardwareTimer-library
323323

324324
# Built-In Library
325325

@@ -444,7 +444,7 @@ void loop() {
444444
}
445445
```
446446
447-
Refers to [I2C Timing](https://github.com/stm32duino/wiki/wiki/Custom-definitions#i2c-timing) to customize I2C speed if needed.
447+
Refers to [I2C Timing](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Custom-definitions#i2c-timing) to customize I2C speed if needed.
448448
449449
### Default I2C pins
450450
**The default I2C interface pins are configured inside the PeripheralPins.c file.**
@@ -541,7 +541,7 @@ Nevertheless it is possible to transfer up to **255 bytes**:
541541
Nothing to do from application point of view.
542542
Warning: a bug in STM32 cube HAL (STM32 core v1.8.0) prevents to transfer exactly 255 bytes.(see [#853](https://github.com/stm32duino/Arduino_Core_STM32/pull/853))
543543

544-
* In slave mode: RX and TX buffer size can be statically redefined using [hal_conf_extra.h](https://github.com/stm32duino/wiki/wiki/HAL-configuration#core-version--150-1) or [build_opt.h](https://github.com/stm32duino/wiki/wiki/Customize-build-options-using-build_opt.h) (at compilation time) thanks to switch `I2C_TXRX_BUFFER_SIZE` (see [#853](https://github.com/stm32duino/Arduino_Core_STM32/pull/853))
544+
* In slave mode: RX and TX buffer size can be statically redefined using [hal_conf_extra.h](https://github.com/stm32duino/Arduino_Core_STM32/wiki/HAL-configuration#core-version--150-1) or [build_opt.h](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Customize-build-options-using-build_opt.h) (at compilation time) thanks to switch `I2C_TXRX_BUFFER_SIZE` (see [#853](https://github.com/stm32duino/Arduino_Core_STM32/pull/853))
545545
All I2C instances are impacted by change of this compilation switch.
546546

547547
## CMSIS DSP
@@ -609,7 +609,7 @@ If this configuration is changed, it is then mandatory to customize `FLASH_BASE_
609609
even to use last sector of Flash.
610610
611611
## Servo library
612-
https://github.com/stm32duino/wiki/wiki/Servo-library
612+
https://github.com/stm32duino/Arduino_Core_STM32/wiki/Servo-library
613613
614614
# Other
615615

FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ https://www.stm32duino.com/viewtopic.php?f=62&t=1000
8181

8282
#### When using "BMP (Black Magic Probe)" upload method, error occurs it can't connect to the COM port.
8383

84-
Refers to this [warning](https://github.com/stm32duino/wiki/wiki/Upload-methods#bmp-black-magic-probe)
84+
Refers to this [warning](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Upload-methods#bmp-black-magic-probe)
8585

Getting-Started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Then you can find the Nucleo-64 boards available in a sub-menu of the "Tools" me
6060

6161
## Extra step
6262

63-
To upload through SWD (STLink), Serial or DFU, [STM32CubeProgrammer](https://www.st.com/en/development-tools/stm32cubeprog.html) needs to be installed. See [Upload methods](https://github.com/stm32duino/wiki/wiki/Upload-methods#stm32cubeprogrammer).
63+
To upload through SWD (STLink), Serial or DFU, [STM32CubeProgrammer](https://www.st.com/en/development-tools/stm32cubeprog.html) needs to be installed. See [Upload methods](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Upload-methods#stm32cubeprogrammer).
6464

6565
## Troubleshooting
6666

@@ -101,7 +101,7 @@ b. Then from the "**Tools > Board part number**" menu, select the [Nucleo L476RG
101101
## Upload methods
102102
Depending of the board, several upload methods could be proposed, thanks the "**Tools > Upload Method**" menu.
103103

104-
See [Upload methods](https://github.com/stm32duino/wiki/wiki/Upload-methods) for more details.
104+
See [Upload methods](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Upload-methods) for more details.
105105

106106
[[/img/UploadMethod.png|alt="Upload Method"]]
107107

Home.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ For full instructions on using the STM32 boards with Arduino, see the [[Getting
88
See [Supported boards](https://github.com/stm32duino/Arduino_Core_STM32/blob/master/README.md#supported-boards) section of the [Arduino_Core_STM32/README.md](https://github.com/stm32duino/Arduino_Core_STM32/blob/master/README.md).
99

1010
# API References:
11-
See [API References](https://github.com/stm32duino/wiki/wiki/API) for usage of accessing the hardware with the Arduino API-functions.
11+
See [API References](https://github.com/stm32duino/Arduino_Core_STM32/wiki/API) for usage of accessing the hardware with the Arduino API-functions.
1212

1313
# Libraries:
14-
See [Libraries](https://github.com/stm32duino/wiki/wiki/Libraries)
14+
See [Libraries](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries)
1515

1616
# Advanced usages:
1717
## Contributing
18-
* [Add a new variant (board)](https://github.com/stm32duino/wiki/wiki/Add-a-new-variant-%28board%29)
19-
* [Using git repository](https://github.com/stm32duino/wiki/wiki/Using-git-repository)
18+
* [Add a new variant (board)](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Add-a-new-variant-%28board%29)
19+
* [Using git repository](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Using-git-repository)
2020
## Customization
21-
* [Definitions](https://github.com/stm32duino/wiki/wiki/Custom-definitions)
22-
* [Build options (build_opt.h)](https://github.com/stm32duino/wiki/wiki/Customize-build-options-using-build_opt.h)
23-
* [HAL module configuration](https://github.com/stm32duino/wiki/wiki/HAL-configuration)
24-
* [Board support based on a core](https://github.com/stm32duino/wiki/wiki/Custom-board-based-on-a-core)
25-
## [How to debug](https://github.com/stm32duino/wiki/wiki/How-to-debug)
21+
* [Definitions](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Custom-definitions)
22+
* [Build options (build_opt.h)](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Customize-build-options-using-build_opt.h)
23+
* [HAL module configuration](https://github.com/stm32duino/Arduino_Core_STM32/wiki/HAL-configuration)
24+
* [Board support based on a core](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Custom-board-based-on-a-core)
25+
## [How to debug](https://github.com/stm32duino/Arduino_Core_STM32/wiki/How-to-debug)
2626

2727
# Connectivities
28-
* [BLE](https://github.com/stm32duino/wiki/wiki/stm32duinoble)
29-
* [LoRa](https://github.com/stm32duino/wiki/wiki/lora)
28+
* [BLE](https://github.com/stm32duino/Arduino_Core_STM32/wiki/stm32duinoble)
29+
* [LoRa](https://github.com/stm32duino/Arduino_Core_STM32/wiki/lora)
3030

3131
# Troubleshooting
3232

33-
Check the [FAQ](https://github.com/stm32duino/wiki/wiki/FAQ) in case it is a common problem and it may be discussed there.
33+
Check the [FAQ](https://github.com/stm32duino/Arduino_Core_STM32/wiki/FAQ) in case it is a common problem and it may be discussed there.
3434

3535
If you have any issue to download/use a package, you could [file an issue on BoardManagerFiles](https://github.com/stm32duino/BoardManagerFiles/issues/new) GitHub.
3636

Libraries.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Libraries using basic features like Serial, SPI, I2C,... should be fully compatible with [STM32](https://github.com/stm32duino/Arduino_Core_STM32) core. Pin updates could be required in the sketch.
44

5-
* [Built-in (delivered with the core package)](https://github.com/stm32duino/wiki/wiki/Libraries#built-in-delivered-with-the-core-package)
6-
* [Dedicated](https://github.com/stm32duino/wiki/wiki/Libraries#dedicated)
7-
* [Expansion boards](https://github.com/stm32duino/wiki/wiki/Libraries#expansion-boards)
8-
* [X-NUCLEO Expansion Boards](https://github.com/stm32duino/wiki/wiki/Libraries#x-nucleo-expansion-boards)
9-
* [Other expansion board](https://github.com/stm32duino/wiki/wiki/Libraries#other-expansion-board)
10-
* [Official from Arduino](https://github.com/stm32duino/wiki/wiki/Libraries#official-from-arduino)
11-
* [Third party](https://github.com/stm32duino/wiki/wiki/Libraries#third-party)
12-
* [Tested](https://github.com/stm32duino/wiki/wiki/Libraries#tested)
5+
* [Built-in (delivered with the core package)](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#built-in-delivered-with-the-core-package)
6+
* [Dedicated](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#dedicated)
7+
* [Expansion boards](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#expansion-boards)
8+
* [X-NUCLEO Expansion Boards](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#x-nucleo-expansion-boards)
9+
* [Other expansion board](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#other-expansion-board)
10+
* [Official from Arduino](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#official-from-arduino)
11+
* [Third party](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#third-party)
12+
* [Tested](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Libraries#tested)
1313

1414
[[/img/Warning-icon.png|alt="Warning"]] _Arduino boards provide ICSP connector used by several Arduino shields for SPI signal: MISO/MOSI/SCK. STM32 boards do not have this ICSP connector, so this requires to manually wire those SPI signals to the desired pin (mainly: D11 to D13)_
1515

@@ -35,7 +35,7 @@ Some libraries have been developped to support specific features (hardware or no
3535
* [STM32Ethernet](https://github.com/stm32duino/STM32Ethernet): for on board Ethernet port (ex: Nucleo-F429ZI). This library is fully compatible with Arduino [Ethernet](https://www.arduino.cc/en/Reference/Ethernet) API. It depends on the following libraries:
3636
* [LwIP](https://github.com/stm32duino/LwIP): lightweight TCP/IP stack (LwIP) is a small independent implementation of the TCP/IP protocol suite
3737

38-
Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/STM32Ethernet)
38+
Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/STM32Ethernet)
3939
* [STM32FreeRTOS](https://github.com/stm32duino/STM32FreeRTOS): this is a port of [FreeRTOS](https://www.freertos.org/) for STM32 as Arduino libraries
4040
* [STM32LowPower](https://github.com/stm32duino/STM32LowPower): to support some STM32 low power mode. It depends on the following libraries:
4141
* [STM32RTC](https://github.com/stm32duino/STM32RTC)
@@ -45,30 +45,30 @@ Some libraries have been developped to support specific features (hardware or no
4545

4646

4747
* [HTS221](https://github.com/stm32duino/HTS221): to support the HTS221 capacitive digital sensor for relative humidity and temperature.
48-
Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/HTS221)
48+
Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/HTS221)
4949
* [IIS2MDC](https://github.com/stm32duino/IIS2MDC): to support the IIS2MDC high-performance 3-axis magnetometer
5050
* [ISM330DLC](https://github.com/stm32duino/ISM330DLC): to support the ISM330DLC 3D accelerometer and 3D gyroscope
5151
* [LIS2DW12](https://github.com/stm32duino/LIS2DW12): to support the LIS2DW12 3D accelerometer
5252
* [LIS2MDL](https://github.com/stm32duino/LIS2MDL): to support the LIS2MDL high-performance 3-axis magnetometer
5353
* [LIS3DHH](https://github.com/stm32duino/LIS3DHH): to support the LIS3DHH 3D accelerometer
54-
* [LIS3MDL](https://github.com/stm32duino/LIS3MDL): to support the LIS3MDL high-performance 3-axis magnetometer. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/LIS3MDL)
55-
* [LPS22HB](https://github.com/stm32duino/LPS22HB): to support the LPS22HB 260-1260 hPa absolute digital ouput barometer. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/LPS22HB)
54+
* [LIS3MDL](https://github.com/stm32duino/LIS3MDL): to support the LIS3MDL high-performance 3-axis magnetometer. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/LIS3MDL)
55+
* [LPS22HB](https://github.com/stm32duino/LPS22HB): to support the LPS22HB 260-1260 hPa absolute digital ouput barometer. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/LPS22HB)
5656
* [LPS25HB](https://github.com/stm32duino/LPS25HB): to support the LPS25HB 260-1260 hPa absolute digital ouput barometer
5757
* [LPS22HH](https://github.com/stm32duino/LPS22HH): to support the LPS22HH 260-1260 hPa absolute digital ouput barometer
5858
* [LSM303AGR](https://github.com/stm32duino/LSM303AGR): to support the LSM303AGR 3D accelerometer and 3D magnetometer
5959
* [LSM6DSO](https://github.com/stm32duino/LSM6DSO): to support the LSM6DSO 3D accelerometer and 3D gyroscope
6060
* [LSM6DSOX](https://github.com/stm32duino/LSM6DSOX): to support the LSM6DSOX 3D accelerometer and 3D gyroscope
6161
* [LSM6DS0](https://github.com/stm32duino/LSM6DS0): to support the LSM6DS0 3D accelerometer and 3D gyroscope
6262
* [LSM6DS3 ](https://github.com/stm32duino/LSM6DS3): to support the LSM6DS3 3D accelerometer and 3D gyroscope
63-
* [LSM6DSL](https://github.com/stm32duino/LSM6DSL): to support the LSM6DSL 3D accelerometer and 3D gyroscope. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/LSM6DSL)
64-
* [M24SR64-Y](https://github.com/stm32duino/M24SR64-Y): to support the dynamic NFC/RFID Tag IC dual interface M24SR64-Y. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/M24SR64-Y)
65-
* [MX25R6435F](https://github.com/stm32duino/MX25R6435F): to support the Quad-SPI NOR Flash memory MX25R6435F. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/MX25R6435F)
63+
* [LSM6DSL](https://github.com/stm32duino/LSM6DSL): to support the LSM6DSL 3D accelerometer and 3D gyroscope. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/LSM6DSL)
64+
* [M24SR64-Y](https://github.com/stm32duino/M24SR64-Y): to support the dynamic NFC/RFID Tag IC dual interface M24SR64-Y. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/M24SR64-Y)
65+
* [MX25R6435F](https://github.com/stm32duino/MX25R6435F): to support the Quad-SPI NOR Flash memory MX25R6435F. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/MX25R6435F)
6666
* [Proximity Gesture](https://github.com/stm32duino/Proximity_Gesture): o support gesture-detection using proximity sensors (VL53L0X or VL53L1X or VL6180X). The APIs provide single swipe gesture detection, directional (left/right) swipe gesture detection and single tap gesture detection
67-
* [SPBTLE-RF](https://github.com/stm32duino/SPBTLE-RF): to support the Bluetooth (V4.1 compliant) SPBTLE-RF. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/SPBTLE-RF)
67+
* [SPBTLE-RF](https://github.com/stm32duino/SPBTLE-RF): to support the Bluetooth (V4.1 compliant) SPBTLE-RF. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/SPBTLE-RF)
6868
* [ST25DV](https://github.com/stm32duino/ST25DV): to support the ST25DV components
6969
* [STTS22H](https://github.com/stm32duino/STTS22H): to support the STTS22H digital temperature sensor
7070
* [STTS751](https://github.com/stm32duino/STTS751): to support the STTS751 digital temperature sensor
71-
* [VL53L0X](https://github.com/stm32duino/VL53L0X): to support the VL53L0X Time-of-Flight and gesture-detection sensor. Dedicated [Wiki page](https://github.com/stm32duino/wiki/wiki/VL53L0X)
71+
* [VL53L0X](https://github.com/stm32duino/VL53L0X): to support the VL53L0X Time-of-Flight and gesture-detection sensor. Dedicated [Wiki page](https://github.com/stm32duino/Arduino_Core_STM32/wiki/VL53L0X)
7272
* [VL53L1X](https://github.com/stm32duino/VL53L1X): to support the VL53L1X Time-of-Flight and gesture-detection sensor
7373
* [VL6180X](https://github.com/stm32duino/VL6180X): to support the VL6180X proximity and ambient light sensing (ALS) sensor
7474
* [WiFi-ISM43362-M3G-L44](https://github.com/stm32duino/WiFi-ISM43362-M3G-L44): to support the Wi-Fi module Inventek ISM43362-M3G-L44 (802.11 b/g/n)

0 commit comments

Comments
 (0)