-
Notifications
You must be signed in to change notification settings - Fork 0
/
carrera.c
74 lines (65 loc) · 2.09 KB
/
carrera.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
#include <stdio.h>
#include <stdlib.h>
#include <wiringPi.h>
#include "funciones.h"
int carrera(){
wiringPiSetupGpio() ;
char c;
int i=0, j=0, retardo, flag=0;
int lut[16][8]={
{1,0,0,0,0,0,0,0},
{1,0,0,0,0,0,0,0},
{0,1,0,0,0,0,0,0},
{0,1,0,0,0,0,0,0},
{0,0,1,0,0,0,0,0},
{0,0,1,0,0,0,0,0},
{0,0,0,1,0,0,0,0},
{0,0,0,1,0,0,0,0},
{1,0,0,0,1,0,0,0},
{0,1,0,0,1,0,0,0},
{0,0,1,0,0,1,0,0},
{0,0,0,1,0,1,0,0},
{0,0,0,0,1,0,1,0},
{0,0,0,0,0,1,1,0},
{0,0,0,0,0,0,1,1},
{0,0,0,0,0,0,0,1}
};
int pins_leds[]={23,24,25,12,16,20,21,26};
retardo = adc();
system("clear");
printf("USTED ESTA HACIENDO USO DE LA MAGIA CARRERISTICA\n");
printf("Pulse el distinguido botón de la plaqueta para salir\n (PUEDE MODIFICAR LAS VELOCIDADES CON LAS FLECHAS UP AND DOWN)");
pinMode(17, INPUT);
for(i=0;i<8;i++)
pinMode(pins_leds[i], OUTPUT);
while(digitalRead(17) != 1){
for (i = 0; i < 16; i++){
for(j=0;j<8;j++)
digitalWrite(pins_leds[j], lut[i][j]);
if (digitalRead(17) == 1) return 0;
for (j = -1; j < retardo; ++j) //hago el retardo dividido retardo por si aprieto para apagar cuando este esta sucediendo
{
delay(1);
if (digitalRead(17) == 1) { flag=1; return 0;}
if(kbhit()){
system("/bin/stty raw");
if( c = getchar() == '[') c = getchar();
if( c == 'A'){ //modo de observar si se pulso flecha abajo
if(retardo != 0) retardo-=10;
j=-1;
system("clear");
printf("Pulse el distinguido botón de la plaqueta para salir\n (PUEDE MODIFICAR LAS VELOCIDADES CON LAS FLECHAS UP AND DOWN)");}
else if ( c == 'B') { //flecha arriba
retardo+=10;
j=-1;
system("clear");
printf("Pulse el distinguido botón de la plaqueta para salir\n (PUEDE MODIFICAR LAS VELOCIDADES CON LAS FLECHAS UP AND DOWN)");}
system("/bin/stty cooked");
}
}
if (digitalRead(17) == 1) return 0;
}
}
for(i=0;i<8;i++) digitalWrite(pins_leds[i], 0);
system("clear");
}