2024-10-24 07: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.
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);
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);