How to change data for VL53L8CX sensor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-10-24 7:37 PM
Hey, I am a beginner in all of this and have been trying to change certain parameters for my VL53L8CX sensor such as sharpening percentage, or converting its standard mm data unit to feet or inches, and I really can not figure it out. I am guessing its inside of the vl53l8cx_api.c file but I cant figure out where to, i am assuming, call a function with the new numbers passed into it. I see the get and set functions for each parameter but I don't think you change it in there? Thanks for the help, I am sure its silly question.
Solved! Go to Solution.
- Labels:
-
CMOS Image Sensors
-
Time of flight
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-10-25 11:46 AM
Get and Set are exactly how you set the parameters. For example
status |= vl53l8cx_get_sharpener_percent(p_dev, &sharp_prct);
status |= vl53l8cx_set_sharpener_percent(p_dev, sharp_prct);
If this or any post solves your issue, please mark them as 'Accept as Solution' It really helps. And if you notice anything wrong do not hesitate to 'Report Inappropriate Content'. Someone will review it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2024-10-25 11:46 AM
Get and Set are exactly how you set the parameters. For example
status |= vl53l8cx_get_sharpener_percent(p_dev, &sharp_prct);
status |= vl53l8cx_set_sharpener_percent(p_dev, sharp_prct);
If this or any post solves your issue, please mark them as 'Accept as Solution' It really helps. And if you notice anything wrong do not hesitate to 'Report Inappropriate Content'. Someone will review it.
