00001 // 00002 // C Implementation: basic 00003 // 00004 // Description: 00005 // 00006 // 00007 // Author: Leonhard Klein <leoklein@gmx.net>, (C) 2004 00008 #include "basic.h" 00009 struct measuretype measuremodus[13] = { 00010 //irstation, irpos, light, vcc, vcco,radar, irr 00011 {1, 0, 1, 1, 1, 1, 0}, // boredom 00012 {0, 0, 1, 1, 0, 0, 0}, // sleep 00013 {0, 0, 0, 1, 1, 0, 1}, // connected 00014 {1, 0, 0, 1, 1, 0, 0}, // searching 00015 {0, 1, 0, 0, 0, 0, 0}, // flee 00016 {0, 0, 0, 0, 1, 0, 0}, // empty 00017 {0, 0, 1, 1, 1, 0, 0}, // script 00018 {0, 0, 0, 1, 1, 0, 1}, // ircont 00019 00020 // from here always 0 00021 {0, 0, 0, 0, 0, 0, 0}, // radar 00022 {0, 0, 0, 0, 0, 0, 0}, // ir_s 00023 {0, 0, 0, 0, 0, 0, 0}, // ir_r 00024 {0, 0, 0, 0, 0, 0, 0}, // irstring_s 00025 };