Time is good

Dependencies:   RoboClaw mbed

Fork of Robot2016_2-0 by ARES

Committer:
IceTeam
Date:
Fri May 06 10:05:45 2016 +0200
Revision:
87:60d81ecab4f5
Parent:
84:b54822c913b0
Child:
88:e4de39dd3e2e
Petit rajout dans entete

Who changed what in which revision?

UserRevisionLine numberNew contents of line
IceTeam 81:e7b03e81b025 1 #ifndef FONCTIONS_H
IceTeam 81:e7b03e81b025 2 #define FONCTIONS_H
IceTeam 81:e7b03e81b025 3
IceTeam 81:e7b03e81b025 4 #include "RoboClaw/RoboClaw.h"
IceTeam 81:e7b03e81b025 5 #include "mbed.h"
IceTeam 81:e7b03e81b025 6
IceTeam 81:e7b03e81b025 7 extern BusOut drapeau;
IceTeam 81:e7b03e81b025 8 extern RoboClaw roboclaw;
IceTeam 81:e7b03e81b025 9 extern AnalogIn Rcapt1;
IceTeam 81:e7b03e81b025 10 extern int RvalRcapt1;
IceTeam 81:e7b03e81b025 11 extern AnalogIn Rcapt2;
IceTeam 81:e7b03e81b025 12 extern int RvalRcapt2;
IceTeam 81:e7b03e81b025 13 extern AnalogIn Rcapt3;
IceTeam 81:e7b03e81b025 14 extern int RvalRcapt3;
IceTeam 81:e7b03e81b025 15 extern int Ravance;
IceTeam 81:e7b03e81b025 16 extern DigitalIn start;
IceTeam 81:e7b03e81b025 17
IceTeam 83:714fa414b2bf 18 extern DigitalIn CAMP;
IceTeam 83:714fa414b2bf 19 extern DigitalIn START;
IceTeam 83:714fa414b2bf 20 extern DigitalOut LEDR;
IceTeam 83:714fa414b2bf 21 extern DigitalOut LEDV;
IceTeam 84:b54822c913b0 22 extern DigitalIn button;
IceTeam 83:714fa414b2bf 23 extern int SCouleur;
IceTeam 83:714fa414b2bf 24
IceTeam 81:e7b03e81b025 25 // Fonctions main.cpp
IceTeam 81:e7b03e81b025 26 void Sharps();
IceTeam 87:60d81ecab4f5 27 void endFonc ();
IceTeam 87:60d81ecab4f5 28
IceTeam 87:60d81ecab4f5 29 //vFonctions deplacement.cpp
IceTeam 81:e7b03e81b025 30 void GotoThet (float timer, int signe);
IceTeam 81:e7b03e81b025 31 void GotoDist (float timer);
IceTeam 81:e7b03e81b025 32
IceTeam 81:e7b03e81b025 33 // Fonctions test.cpp
IceTeam 81:e7b03e81b025 34 void wait_start();
IceTeam 81:e7b03e81b025 35 void TestDist3(float start, float pas);
IceTeam 81:e7b03e81b025 36 void TestThet3(float start, float pas);
IceTeam 81:e7b03e81b025 37 void compareThet(float start);
IceTeam 81:e7b03e81b025 38
IceTeam 83:714fa414b2bf 39 // Fonctions couleur.cpp
IceTeam 83:714fa414b2bf 40 void depart(void);
IceTeam 83:714fa414b2bf 41 void changeCamp(void);
IceTeam 83:714fa414b2bf 42
IceTeam 81:e7b03e81b025 43 #define ADR 0x80
IceTeam 81:e7b03e81b025 44 #define accel_angle 12000
IceTeam 81:e7b03e81b025 45 #define vitesse_angle 10000
IceTeam 81:e7b03e81b025 46 #define deccel_angle 12000
IceTeam 81:e7b03e81b025 47
IceTeam 82:07e13071dd7b 48 #define accel_dista 4096
IceTeam 82:07e13071dd7b 49 #define vitesse_dista 4096
IceTeam 82:07e13071dd7b 50 #define deccel_dista 4096
IceTeam 81:e7b03e81b025 51
IceTeam 81:e7b03e81b025 52 #define waiting_time 1
IceTeam 82:07e13071dd7b 53 #define R_SEUIL_SHARP 1
IceTeam 81:e7b03e81b025 54 #define GAUCHE 1
IceTeam 81:e7b03e81b025 55 #define DROITE -1
IceTeam 81:e7b03e81b025 56
IceTeam 83:714fa414b2bf 57 #define VERT 1
IceTeam 83:714fa414b2bf 58 #define VIOLET 2
IceTeam 83:714fa414b2bf 59 #define NOIR 3
IceTeam 83:714fa414b2bf 60
IceTeam 81:e7b03e81b025 61 #endif