You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
273 B
19 lines
273 B
6 years ago
|
//TestTelec.ino Blink number of pulses
|
||
|
|
||
|
#include "Witty.h"
|
||
|
#include "Telec.h"
|
||
|
void setup () {
|
||
|
SetupWitty();
|
||
|
}
|
||
|
|
||
|
byte nPulses;
|
||
|
void loop() {
|
||
|
nPulses= CompteIR();
|
||
|
Cligno (nPulses,1000);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Modify the timings on Telec.h
|
||
|
Control the motos as in Demo2 program.
|
||
|
*/
|