inspektors/include/io.h
2017-11-25 13:37:16 +02:00

23 lines
343 B
C

#ifndef PORTS_H
#define PORTS_H
/* DS18B20+ is configured in DS18B20 library */
/* Signal LED */
#define LED_1 PD2
/* Servo motors */
#define SERVO_L_PIN PB1
#define SERVO_L OCR1A
#define SERVO_R_PIN PB2
#define SERVO_R OCR1B
/* Photo sensors */
#define PH_1 PC1
#define PH_2 PC2
#define PH_3 PC3
#define PH_4 PC4
#define PH_5 PC5
#endif