Guys:
I have an Arduino Nano 33 BLE Sense and I'm having trouble with the gesture recognition. The sensor is an integral part of the board, so I couldn't have hooked it up incorrectly. The voltage reads a steady 3.32V. It is powered through the USB cord. I can see the little red IR light working on the sensor.
I include the library
#include <Arduino_APDS9960.h>
and this initialization code in setup()
if(!APDS.begin());
DisplayText("No Gesture Initialization");
(DisplayText is my function that displays on an SSD1306 via I2C). When I run, I get the "No Gesture Initialization" on the display every time, so of course, none of my other gesture code is ever executed. Everything else in the program works fine, including Bluetooth.
Does this mean the sensor is bad? What are my options?
Don