DESCRIPTION
The BMS33M332 has a built-in ambient light sensor, the STK3337-X, and level shift circuit. It reads the ambient light values and proximity sensing status via I2C interface.
The module’s pins were designed to match the BMCOM connectors and can directly connect to BMduino development boards, such as BM53A367A.
You can use the product with other development boards, such as Arduino UNO, as well.
Ambient Light Sensor (ALS) is primarily used to detect changes in ambient light. The BMS33M332 has a sensing peak around a wavelength of 550nm, which corresponds to the human eye's response for visible light. This functionality can be used to automatically adjust the brightness of displays, ensuring optimal visual performance in various lighting conditions.
The Proximity Sensor (PS) utilizes the strength of reflected infrared light from an infrared LED to determine the distance between an object and the sensor. It can be used to detect if a mobile phone is held close to the user's ear during a phone call, in which case it would turn off the screen to save power. The built-in infrared LED in this module has seven adjustable current values.
HOW TO USE THE STK3337-X?
STK3337-X is an ambient light sensor (ALS) and proximity sensor (PS). It also includes an infrared LED and 16-bit ADC. The intensity of ambient light and the intensity of reflected light detected by the proximity sensor are both 16-bit data, which can be read from DATA_ALS registers (addresses 0x13 and 0x14) and DATA_PS registers (addresses 0x11 and 0x12) respectively.
When reading the DATA_ALS and DATA_PS, read the high byte first and then the low byte, that is, when reading the proximity light intensity, read 0x11 first and then 0x12. When reading the ambient light intensity, read 0x13 first and then 0x14.
STK3337-X has an INT pin which transitions from high to low when an interrupt is triggered. By utilizing the INT pin, the MCU can avoid constant polling to monitor the proximity or ambient light intensity.
The interrupt function can be employed by setting high and low threshold values for each of the ALS and PS. When the intensity value falls outside the threshold range, the INT pin will go to low, indicating that the proximity or ambient light intensity value is either above the high threshold value (THDH_PS or THDH_ALS) or below the low threshold value (THDL_PS or THDL_ALS).
Since there are several sources to cause the INT pin low, the MCU can judge by reading the FLAG register (address 0x10).
The above explanation outlines one of the methods for utilizing STK3337-X, and the MCU program can follow the steps below:
- Enable the function of ambient light sensing (ALS) and proximity sensing (PS) by setting EN_ALS to 1 and EN_PS to 1 in the STATE register (0x00), respectively.
- Set the high and low threshold values.
- Enable the interrupt function of ambient light sensing (ALS) and proximity sensing (PS) by setting EN_ALS_INT to 1 and EN_PS_INT to 1 in the INTCTL1 register (address 0x04).
- Wait for interrupt (INT pin goes low).
- After an interrupt occurs, read the FLAG register (address 0x10) to determine the source of the interrupt, and write 0 to clear the corresponding interrupt flags (FLG_PS_INT, FLG_ALS_INT). The INT pin goes high after the interrupt flags are cleared.
Proximity sensing has another interrupt mode, which is configured by setting PS_NF_MODE to 1 in the INTCTL1 register (address 0x04).
In this mode, the INT pin becomes a status indicator (far or near), same as the function of the FLG_NF flag in the FLAG register (address 0x10).
The INT pin is low when an object is detected in proximity (DATA_PS value is higher than THDH_PS), and high when the object is at a distance (DATA_PS value is lower than THDL_PS).
In this mode, the INT pin is not suitable for serving as the interrupt function for proximity sensing. The MCU can read the INT pin to know whether the object is near or far without the need to send commands through the I2C interface to read FLG_NF flag.