forked from PhillipMaire/Phils_code_for_hireslab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Servo_control_2port_angdist.ino
99 lines (79 loc) · 1.94 KB
/
Servo_control_2port_angdist.ino
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#include<Servo.h>
#include <Math.h>
Servo servocontrol;
const int inputpin = 13;
int i;
int tonecue;
int pulse; // Initilize an int to store the value of one pulse(HIGH == 1; LOW == 0)
int state = 0;
int bitnum = 8;
int bitcode[8]; // Initialize an int array to store the values of 8 pulses
int pulsetime = 41; // Initialize the pulse duration, it tells arduino how long to wait
// until the next pulse come
int Msteps = 0; // Initialize an int to offer the micro stepper options about what
// degree to go
int jitterSteps;
int Mdif = 0;
int MdelayT = 5000;
void setup() {
// put your setup code here, to run once:
pinMode (inputpin, INPUT);
pinMode (12,INPUT);
servocontrol.attach(9);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
tonecue = digitalRead(12);
if (tonecue == HIGH)
{
tone(8,7000,10);
}
pulse = digitalRead(inputpin);
if (pulse == HIGH)
{
state = 1;
}
else
{
state = 0;
}
if (state == 1)
{
delay(pulsetime);
for (i = 0; i < bitnum; i = i + 1)
{
pulse = digitalRead(inputpin);
if (pulse == HIGH)
{
bitcode[i] = 1;
}
else
{
bitcode[i] = 0;
}
delay(pulsetime);
// Serial.print(bitcode[i], BIN);
}
// Serial.println('\n');
Msteps = 0; // Transfer the 8 bit code to a integer
for (i = 0; i < bitnum; i = i + 1)
{
Msteps = bitcode[i] * (pow(2, i) + 0.1) + Msteps;
// Serial.print(Msteps);
// Serial.println('\n');
}
Serial.println(Msteps);
jitterSteps = random(0, 180);
// Serial.println(jitterSteps);
servocontrol.write(jitterSteps + Mdif);
delay(300);
servocontrol.write(Msteps + Mdif);
// delay(MdelayT);
// servocontrol.write(90 + Mdif);
}
else
{
return;
}
}