Commit 543e5426f90c4a2bd4d1bf7edc3f1ecdbb6ffb2f
1 parent
cdcb6992
modifications non importantes
Showing
2 changed files
with
5 additions
and
5 deletions
Show diff stats
progArduino/Autofinal/Autofinal.ino
... | ... | @@ -45,7 +45,7 @@ Adafruit_NeoPixel strip = Adafruit_NeoPixel(60, PININ, NEO_RGB + NEO_KHZ800); |
45 | 45 | //INIT PHOTRESISTANCE (LUMINOSITE AMBIANTE) |
46 | 46 | #define CAPTEUR A0 |
47 | 47 | int luminosite = 0; |
48 | -int seuil = 200; | |
48 | +int seuil = 200; //70 change selon le lieu | |
49 | 49 | |
50 | 50 | //INIT interrupteur |
51 | 51 | const int pinInter = 2 ; //9 ne marche pas chelou | ... | ... |
progArduino/principal/principal.ino
... | ... | @@ -50,7 +50,7 @@ int luminosite = 0; |
50 | 50 | int seuil = 200; |
51 | 51 | |
52 | 52 | //INIT interrupteur |
53 | -const int pinInter = 9 ; | |
53 | +const int pinInter = 2 ; | |
54 | 54 | int etatBouton; |
55 | 55 | |
56 | 56 | |
... | ... | @@ -496,7 +496,7 @@ void tests() |
496 | 496 | //choix_intensite(); |
497 | 497 | //choix_type_allumage(); |
498 | 498 | //mouvement(); |
499 | - //lumiere_auto(); | |
499 | + lumiere_auto(); | |
500 | 500 | //automatique(); |
501 | 501 | delay(200); |
502 | 502 | } |
... | ... | @@ -505,8 +505,8 @@ void tests() |
505 | 505 | void loop() |
506 | 506 | |
507 | 507 | { |
508 | - //tests(); | |
508 | + tests(); | |
509 | 509 | |
510 | - mainVeilleuse_auto(); | |
510 | + //mainVeilleuse_auto(); | |
511 | 511 | delay(200); |
512 | 512 | } | ... | ... |