Saturday 17 October 2015

arduino - Use a photoresistor to read an IR LED from an Itron energy meter


I want to read my meter at home with an Arduino board. My meter, an Itron C1S, has an IR emitter that pulses once (10ms width) every Wh.


I want to know if it is theoretically possible to use a normal photoresistor to read this values. If yes, how can I specify the photoresistor? If not, what would be the alternative?



Answer





I want to know if it is theoretically possible to use a normal photoresistor to read this values.



Theoretically, yes.



If yes, how can I specify the photoresistor?



By choosing one that is sensitive to the IR wavelength range. Which most common ones are not. As seen in this datasheet, photoresistors tend to peak at 650nm, right in the middle of the visible light range.



If not, what would be the alternative?




So you need something that is sensitive to the IR wavelength range. 900 - 1300nm is typical. What you want is a IR Phototransistor.


enter image description here


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...