diff --git a/notes/technologie/vl53l1x-arduino-calbage-cablage.md b/notes/technologie/vl53l1x-arduino-calbage-cablage.md new file mode 100644 index 0000000..a3a79b8 --- /dev/null +++ b/notes/technologie/vl53l1x-arduino-calbage-cablage.md @@ -0,0 +1,38 @@ +## Pinout VL53L1X (module breakout standard) + +[Voir un cablage d'un VL53L1X](https://www.espboards.dev/img/0JlRpJneU7-806.png) + +### Brochage principal (modules 6 pins les plus courants) + +| Pin | Type | Fonction | +| --------------- | ------------ | ------------------------------------------------ | +| **VIN / VCC** | Alimentation | Entrée alimentation (≈ 2.6 V à 5 V selon module) | +| **GND** | Alimentation | Masse | +| **SDA** | I²C | Données bus I²C | +| **SCL** | I²C | Horloge bus I²C | +| **XSHUT** | Contrôle | Mise en veille (actif à l'état bas) | +| **GPIO1 / INT** | Sortie | Interruption (data ready) | + +Ces six signaux constituent le brochage typique des cartes VL53L1X, qui communiquent exclusivement via I²C avec une adresse par défaut **0x29**. ([docs.cirkitdesigner.com][1]) + +--- + +### Rôle des pins optionnels + +* **XSHUT** + Permet d'éteindre le capteur ou de gérer plusieurs capteurs sur le même bus (reset individuel). ([Wolles Elektronikkiste][2]) + +* **GPIO1** + Sortie interruption indiquant qu'une mesure est prête (non obligatoire si lecture en polling). ([Wolles Elektronikkiste][2]) + +--- + +### Rappel sur le composant nu (IC) + +Le circuit intégré interne possède davantage de broches (alimentation analogique, VCSEL, I²C, etc.), mais sur les modules breakout elles sont déjà câblées et non accessibles. ([STMicroelectronics][3]) + +--- + +[1]: https://docs.cirkitdesigner.com/component/9511d34f-a84c-471f-9b93-2be16516a555/vl53l1x?utm_source=chatgpt.com "How to Use VL53L1X: Examples, Pinouts, and Specs" +[2]: https://wolles-elektronikkiste.de/en/vl53l0x-and-vl53l1x-tof-distance-sensors?utm_source=chatgpt.com "VL53L0X and VL53L1X - ToF distance sensors" +[3]: https://www.st.com/resource/en/datasheet/vl53l1x.pdf?utm_source=chatgpt.com "Datasheet - VL53L1X"