summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/ir_sensor.cpp
blob: c34feed65f07dd55514b5b5d908a7728c49fb510 (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);
}