{"id":23744868,"url":"https://github.com/stm32duino/vl53l5cx","last_synced_at":"2025-09-04T19:32:00.418Z","repository":{"id":40354133,"uuid":"428619560","full_name":"stm32duino/VL53L5CX","owner":"stm32duino","description":"Arduino library to support the VL53L5CX Time-of-Flight 8x8 multizone ranging sensor with wide field of view","archived":false,"fork":false,"pushed_at":"2023-08-23T11:50:54.000Z","size":181,"stargazers_count":8,"open_issues_count":1,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2023-08-23T14:15:23.429Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stm32duino.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-16T10:59:00.000Z","updated_at":"2023-02-27T08:53:55.000Z","dependencies_parsed_at":"2023-02-15T10:01:37.160Z","dependency_job_id":null,"html_url":"https://github.com/stm32duino/VL53L5CX","commit_stats":null,"previous_names":[],"tags_count":7,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stm32duino%2FVL53L5CX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stm32duino%2FVL53L5CX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stm32duino%2FVL53L5CX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stm32duino%2FVL53L5CX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stm32duino","download_url":"https://codeload.github.com/stm32duino/VL53L5CX/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231987772,"owners_count":18456475,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-31T12:50:19.999Z","updated_at":"2024-12-31T12:50:20.929Z","avatar_url":"https://github.com/stm32duino.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VL53L5CX\nArduino library to support the VL53L5CX Time-of-Flight 8x8 multizone ranging sensor with wide field view.\n\n## API\n\nThis sensor uses I2C to communicate. And I2C instance is required to access to the sensor.\nThe APIs provide simple distance measure and multizone detection in both polling and interrupt modes.\n\n## Examples\n\nThe examples contained in this library are based on VL53L5CX-SATEL sensor board. You need to connect the VL53L5CX-SATEL sensor board directly to the Nucleo board with wires as explained below:\n- pin 1 (GND) of the VL53L5CX satellite connected to GND of the Nucleo board\n- pin 2 (IOVDD) of the VL53L5CX satellite connected to 3V3 pin of the Nucleo board\n- pin 3 (AVDD) of the VL53L5CX satellite connected to 5V pin of the Nucleo board\n- pin 4 (PWREN) of the VL53L5CX satellite connected to pin A5 of the Nucleo board\n- pin 5 (LPn) of the VL53L5CX satellite connected to pin A3 of the Nucleo board\n- pin 6 (SCL) of the VL53L5CX satellite connected to pin D15 (SCL) of the Nucleo board\n- pin 7 (SDA) of the VL53L5CX satellite connected to pin D14 (SDA) of the Nucleo board\n- pin 8 (I2C_RST) of the VL53L5CX satellite connected to pin A1 of the Nucleo board\n- pin 9 (INT) of the VL53L5CX satellite connected to pin A2 of the Nucleo board \n\nThere are 11 examples with the VL53L5CX library:\n\n* VL53L5CX_Sat_Calibrate_Xtalk: This example code is to show how to perform the crosstalk calibration.\n\n* VL53L5CX_Sat_Get_Set_Params: This example code is to show how to get/set some parameters of the \n  VL53L5CX sensor.\n\n* VL53L5CX_Sat_HelloWorld: This example code is to show how to get multizone detection and proximity\n  values of the VL53L5CX satellite sensor in polling mode.\n\n* VL53L5CX_Sat_HelloWorld_Interrupt: This example code is to show how to get multizone detection and proximity\n  values of the VL53L5CX satellite sensor in interrupt mode.\n\n* VL53L5CX_Sat_I2C_And_RAM_Optimization: This example code is to show how to optimize the code in terms of \n  number of I2C transactions and RAM occupation.\n\n* VL53L5CX_Sat_Motion_Indicator: This example code is to show how to configure the motion indicator.\n\n* VL53L5CX_Sat_Motion_Indicator_With_Thresholds_Detection: This example code is to show how to configure \n  the motion indicator together with the thresholds detection.\n  \n* VL53L5CX_Sat_Multiple_Targets_Per_Zone: This example code is to show how to configure multiple targets \n  per zone.\n\n* VL53L5CX_Sat_Power_Modes: This example code is to show how to change the power mode of the VL53L5CX \n  sensor.\n\n* VL53L5CX_Sat_Ranging_Modes: This example code is to show how to change the ranging mode of the VL53L5CX \n  sensor.\n\n* VL53L5CX_Sat_Thresholds_Detection: This example code is to show how to configure the thresholds \n  detection.\n\n## Documentation\n\nYou can find the source files at\nhttps://github.com/stm32duino/VL53L5CX\n\nThe VL53L5CX datasheet is available at\nhttps://www.st.com/en/imaging-and-photonics-solutions/vl53l5cx.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstm32duino%2Fvl53l5cx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstm32duino%2Fvl53l5cx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstm32duino%2Fvl53l5cx/lists"}