Go to the documentation of this file.
45 #include "contiki-conf.h"
47 #define SOUNDER_PORT PORTC
48 #define SOUNDER_MASK _BV(2)
49 #define SOUNDER_DDR DDRC
55 #define LIGHT_PORT_DDR DDRE
56 #define LIGHT_PORT PORTE
57 #define LIGHT_PIN_MASK _BV(5)
58 #define LIGHT_ADC_CHANNEL 1
64 #define TEMP_PORT_DDR DDRE
65 #define TEMP_PORT PORTE
66 #define TEMP_PIN_MASK _BV(6)
67 #define TEMP_ADC_CHANNEL 1
72 #define ACCEL_PORT_DDR DDRC
73 #define ACCEL_PORT PORTC
74 #define ACCEL_PIN_MASK _BV(4)
75 #define ACCELX_ADC_CHANNEL 3
76 #define ACCELY_ADC_CHANNEL 4
81 #define MAGNET_PORT_DDR DDRC
82 #define MAGNET_PORT PORTC
83 #define MAGNET_PIN_MASK _BV(5)
84 #define MAGNETX_ADC_CHANNEL 5
85 #define MAGNETY_ADC_CHANNEL 6
88 #define MIC_PORT_DDR DDRC
89 #define MIC_PORT PORTC
90 #define MIC_PIN_MASK _BV(3)
91 #define MIC_ADC_CHANNEL 2