summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/ir_sensor.h
diff options
context:
space:
mode:
authormasterm <devnull@localhost>2007-02-15 21:33:05 +0100
committermasterm <devnull@localhost>2007-02-15 21:33:05 +0100
commit91b2508dc92a97802353bd2e96f2849c835f0b2a (patch)
treeafd641c692dbe1acd46a5d194302ae66879fe81d /source/Concept/Framework/ir_sensor.h
parent8d7053ca84a48fe63736b1ae6225624da7b9be44 (diff)
downloadrc2007-soccer-91b2508dc92a97802353bd2e96f2849c835f0b2a.tar
rc2007-soccer-91b2508dc92a97802353bd2e96f2849c835f0b2a.zip
+++ many updates to sources
Diffstat (limited to 'source/Concept/Framework/ir_sensor.h')
-rw-r--r--source/Concept/Framework/ir_sensor.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/source/Concept/Framework/ir_sensor.h b/source/Concept/Framework/ir_sensor.h
new file mode 100644
index 0000000..f267644
--- /dev/null
+++ b/source/Concept/Framework/ir_sensor.h
@@ -0,0 +1,62 @@
+#ifndef _IR_SENSOR_H
+#define _IR_SENSOR_H
+
+#include "defines.h"
+#include "robot.h"
+#include "sensor.h"
+
+class IR_Sensor : public Sensor
+{
+public:
+ IR_Sensor()
+ {
+ this->parent = NULL;
+ this->moduleId = 0;
+ }
+
+ IR_Sensor(uint32 sensorId)
+ {
+ this->parent = NULL;
+ this->moduleId = sensorId;
+
+ switch(sensorId)
+ {
+ case IO_SENSOR_IR_0_DEG:
+ this->channel = 0;
+ break;
+ case IO_SENSOR_IR_30_DEG:
+ this->channel = 1;
+ break;
+ case IO_SENSOR_IR_60_DEG:
+ this->channel = 2;
+ break;
+ case IO_SENSOR_IR_100_DEG:
+ this->channel = 3;
+ break;
+ case IO_SENSOR_IR_180_DEG:
+ this->channel = 4;
+ break;
+ case IO_SENSOR_IR_260_DEG:
+ this->channel = 5;
+ break;
+ case IO_SENSOR_IR_300_DEG:
+ this->channel = 6;
+ break;
+ case IO_SENSOR_IR_330_DEG:
+ this->channel = 7;
+ break;
+ default:
+ this->channel = 8;
+ break;
+ }
+ }
+
+protected:
+ //Hardware
+ uint8 channel;
+
+public:
+ uint16 GetIRIntensity();
+};
+
+#endif