TSL 2561, IR component and value for it??

Breakout boards, sensors, other Adafruit kits, etc.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
Matadormac
 
Posts: 33
Joined: Tue Aug 05, 2014 8:51 am

TSL 2561, IR component and value for it??

Post by Matadormac »

Good day.
I am working with your TSL 2561 breakout board and wonder if in addition to visible light lux values can I get just the IR component value? I have been reviewing the data sheet but find that more than a bit daunting.

Can the IR component value be expressed in units something like watts/square centimeter?

Thank you

Matadormac

User avatar
adafruit_support_rick
 
Posts: 35092
Joined: Tue Mar 15, 2011 11:42 am

Re: TSL 2561, IR component and value for it??

Post by adafruit_support_rick »

You can get the raw IR component by calling the getLuminosity function:

Code: Select all

uint16_t broadband = 0;
uint16_t infrared = 0;
 
/* Populate broadband and infrared with the latest values */
getLuminosity (&broadband, &infrared);

Locked
Please be positive and constructive with your questions and comments.

Return to “Other Products from Adafruit”