Carter Nelson
Carter Nelson
The description is confusing. Can you post the output you are seeing in the Serial Monitor when running the example.
Thanks. The output looks generally as expected. Is the issue that the distance value is not changing? Does the non-interrupt example work OK on the same setup? https://github.com/adafruit/Adafruit_VL53L0X/blob/master/examples/vl53l0x/vl53l0x.ino
The interrupt must be triggering, otherwise there would not be any output. The output is surrounded by a conditional that will only occur if the interrupt has fired. The behavior...
Please post in the forums with photos of your setup showing how everything is connected. https://forums.adafruit.com/
Is there an actual issue with the example? Or is this just confusion about the interrupt behavior?
Hmmm....does appear to be the case.  Since the process outlined in sec 7.6 would reset *all* PCA's on the bus, that could lead to other issues. Each shield (and...
@ladyada This LGTM. Do you remember any reason for wanting an ID number for each instance? This does replace that with something else (bool).
Related: https://github.com/adafruit/Adafruit-PWM-Servo-Driver-Library/pull/95 Same question here - what are the actual warnings?
What's an example sketch that can be used for testing? Unfortunately, the current file player examples in the library have hard coded `#include `, so will generally not work as...
The issue is with interrupt playback. That currently is not working for ESP32 platforms. In the `player_simple.ino` example, comment out this line: ```cpp musicPlayer.useInterrupt(VS1053_FILEPLAYER_PIN_INT); // DREQ int ``` and then...