-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstdc_avr.cpp
More file actions
59 lines (45 loc) · 915 Bytes
/
Copy pathstdc_avr.cpp
File metadata and controls
59 lines (45 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#define F_CPU 16000000L
#include "Arduino.h"
#include "Servo.h"
#include "IRReadOnlyRemote.h"
// there is a remote IR sensor on pin 2
IRReadOnlyRemote remote(2);
// there is a Servo on pin A4
Servo servo;
#define SERVO_MIN_POS 82
extern "C" {
float READ_IR();
float SERVO_POS_INC();
float SERVO_POS_DEC();
void setup();
}
void setup() {
// any arduino like code that you need to setup your robot!
pinMode(2, INPUT);
pinMode(A0, OUTPUT);
for(int i = 3; i <= 13; i++)
pinMode(i, OUTPUT);
// connect to servo in A4 port
servo.attach(A4);
servo.write(SERVO_MIN_POS);
}
float READ_IR() {
return remote.read();
}
float READ_MICROS() {
return micros();
}
float SERVO_POS_INC() {
int a = servo.read();
if (a < SERVO_MIN_POS + 40)
servo.write(a+5);
delay(15);
return 0;
}
float SERVO_POS_DEC() {
int a = servo.read();
if (a > SERVO_MIN_POS)
servo.write(a-5);
delay(15);
return 0;
}