-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
214 lines (185 loc) · 3.91 KB
/
main.c
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
* main.c
*
* Created on: 3 06 2021
* Author: Patryk
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#include <stdint.h>
#include <util/delay.h>
#define LED1 PC2
#define LED2 PC1
#define S1 PD6
#define S2 PD7
#define M1a PB2
#define M1b PB3
#define M2a PB1
#define M2b PB0
volatile int petla = 0;
volatile long licznik = 0;
int main( void ) {
int prog = 100;
int czujnik[8] = {0};
int wagi[8] = { -35, -25, -6, -1, 1, 6, 25, 35 };
int blad = 0;
int poprzed_blad = 0;
int ilosc = 0;
int przestrzelony = 0;
int predkosc = 120;
int uchyb=0;
int kp = 5;
int kd = 3;
int PWMa = 0;
int PWMb = 0;
int iteracje=0;
// Inicjalizacja LED
DDRC |= (1<<LED1) | (1<<LED2);
//PORTC |= (1<<LED1) | (1<<LED2);
// Inicjalizacja przyciskow
DDRD &= ~((1<<S1) | (1<<S2));
PORTD &= ~((1<<S1) | (1<<S2));
// Inicjalizacja Mostka H i PWM
DDRB |= (1<<M1a) | (1<<M1b) | (1<<M2a) | (1<<M2b);
PORTB |= (1<<M1a) | (1<<M2a);
PORTB &= ~((1<<M1b) | (1<<M2b));
DDRD |= (1<<PD4) | (1<<PD5);
// Reset przerwan
sei();
// Inicjalizacja Timer1 (PWM)
TCCR1A |= (1 << COM1A1) | (1 << COM1B1) | (1 << WGM10);
TCCR1B |= (1<<CS10) | (1 << WGM12);
// Inicjalizacja Timer0 (1ms/cykl)
TCCR0 |= (1<<CS00);
TIMSK |= (1<<TOIE0);
// Inicjalizacja ADC
ADMUX |= (1<<REFS0) | (1<<ADLAR);
ADCSRA |= (1<<ADPS2) | (1<<ADPS1) | (1<<ADPS0) | (1<<ADEN);
OCR1A = OCR1B = 0;
while (1) {
if (petla) {
// Przyciski
if (!(PIND & (1<<S1))) {
predkosc += 10 ;
PORTC |= (1 << LED2);
_delay_ms(60);
PORTC &= ~(1 << LED2);
_delay_ms(60);
PORTC |= (1 << LED2);
_delay_ms(60);
PORTC &= ~(1 << LED2);
_delay_ms(60);
PORTC |= (1 << LED2);
_delay_ms(150);
PORTC &= ~(1 << LED2);
_delay_ms(600);
iteracje=0;
}
if (!(PIND & (1 << S2))){
kp += 1;
PORTC |= (1 << LED2);
_delay_ms(60);
PORTC &= ~(1 << LED2);
_delay_ms(60);
PORTC |= (1 << LED2);
_delay_ms(60);
PORTC &= ~(1 << LED2);
_delay_ms(60);
PORTC |= (1 << LED2);
_delay_ms(150);
PORTC &= ~(1 << LED2);
_delay_ms(600);
iteracje=0;
}
// LEDY
if ((iteracje % 500) < 360)
PORTC |= (1 << LED2);
else
PORTC &= ~(1 << LED2);
// Odczyt czujnikow
for (int i = 0; i < 8; i++) {
ADMUX &= 0b11100000;
ADMUX |= i;
ADCSRA |= _BV(ADSC);
while (ADCSRA & _BV(ADSC)) {};
if (ADCH < prog)
czujnik[i] = 1;
else
czujnik[i] = 0;
}
// Obliczanie bledu
poprzed_blad = blad;
blad = 0;
ilosc = 0;
for (int i = 0; i < 8; i++) {
blad += czujnik[i] * wagi[i];
ilosc += czujnik[i];
}
blad /= ilosc;
// Sygnalizacja polozenia
if (ilosc) {
PORTC |= (1 << LED1);
if (-15 < blad && blad < 15)
przestrzelony = 0;
}
else {
PORTC &= ~(1 << LED1);
if (przestrzelony == 0) {
if (poprzed_blad < 0) przestrzelony = 1;
else if (poprzed_blad > 0) przestrzelony = 3;
}
}
// Regulator
uchyb = kp * blad + kd * (blad - poprzed_blad);
// Sterowanie
if (przestrzelony == 0) {
if (uchyb > 0) {
PWMa = predkosc + uchyb / 2;
PWMb = predkosc - uchyb;
} else if (uchyb < 0) {
PWMa = predkosc + uchyb;
PWMb = predkosc - uchyb / 2;
} else {
PWMa = predkosc + uchyb;
PWMb = predkosc - uchyb;
}
} else if (przestrzelony == 1) {
PWMa = -40;
PWMb = 100;
} else if (przestrzelony == 3) {
PWMa = 100;
PWMb = -40;
}
// Konfiguracja Mostka H
if (PWMa<0) {
PORTB |= (1<<M1b);
PORTB &= ~(1<<M1a);
OCR1A = -1 * PWMa;
} else {
PORTB |= (1<<M1a);
PORTB &= ~(1<<M1b);
OCR1A = PWMa;
}
if (PWMb<0){
PORTB |= (1<<M2b);
PORTB &= ~(1<<M2a);
OCR1B = -1 * PWMb;
} else {
PORTB |= (1<<M2a);
PORTB &= ~(1<<M2b);
OCR1B = PWMb;
}
if (iteracje >= 1000)
iteracje = 0;
iteracje++;
petla = 0;
}
}
}
ISR(TIMER0_OVF_vect) {
licznik++;
if (licznik >= 63) {
licznik = 0;
petla = 1;
}
}