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.
|
//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);
|
|
}
|
|
}
|
|
|