summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/ir_sensor.cpp
blob: 065143eca91c27b5f97c83e6cb41eaec19b8be10 (plain)
1
2
3
4
5
6
7
8
9
#include "ir_sensor.h"

//-----------------------------------------------------------------------------
uint16 IR_Sensor::GetIRIntensity()
{
	if(!parent) return 0;

	return parent->GetADCValue(channel);
}