Re,
Alors, est ce que ceci fonctionne? (je ne met que ce que j'ai ajouté)
#define BP1 12
void setup()
{
pinMode (BP1, INPUT);
}
void loop()
{
if ( BP1, HIGH )
{
HPS.run(1260,CROISSANCE);
HPS.stop(900,CROISSANCE);
Serial.println("Mode CROISSANCE");
}
else if ( BP1, LOW )
{
HPS.run(1260,FLORAISON);
HPS.stop(540,FLORAISON);
Serial.println("Mode FLORAISON");
}
}
C'est bien ça?