I use a VEML6075 sensor to read UVA, UVB, and UV index. The UV Index is automatically calculated by the chip, also sent by I2C to my MCU. According to the next Datasheets:
It can present the raw data for UVA and UVB. These values are presented in counts/μW/cm2 and it depends on the measured channels. My problem is that I don't know about the measuring range for this raw data
uint16_t uva = my_veml6075.getUVA();
uint16_t uvb = my_veml6075.getUVB();
Have anybody the range for these two values?