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.
18 lines
225 B
18 lines
225 B
6 years ago
|
//TestInter.ino Witty
|
||
|
// Clignotement continu par interruption
|
||
|
|
||
|
|
||
|
#include "Witty.h"
|
||
|
#include "Inter2.h"
|
||
|
|
||
|
void setup(){
|
||
|
SetupInter2();
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
for (byte i=10; i<200; i+=2) {
|
||
|
period=i; DelMs(100);
|
||
|
}
|
||
|
}
|
||
|
|