Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
PTC3471.h
- Committer:
- ArthurCBdO
- Date:
- 2017-08-07
- Revision:
- 0:f2bc43be0fc7
- Child:
- 1:00b8f71cfe7e
File content as of revision 0:f2bc43be0fc7:
#ifndef Lab_H #define Lab_H #include "mbed.h" #include "QEI.h" #include "USBSerial.h" #define min(X, Y) ((X) < (Y) ? (X) : (Y)) #define max(X, Y) ((X) > (Y) ? (X) : (Y)) #define pi 3.141592653589793 #define Ctrl_Ts 0.01 #endif void Ctrl_LerAngulos(void); void Ctrl_Travar(void); void Ctrl_ChecarTrava(void); void Ctrl_BlinkOk(void); void Protecao_Init(QEI*);