Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define BLYNK_MSG_LIMIT 0
- // #error "Compiles"
- #include <EEPROM.h>
- #include <Timers.h> // my favorite timer
- Timers<5> akcja; //
- #include "blynk.h" //obsługa BLYNKa
- #include "pompa.h" //
- void setup() {
- akcja.attach(0, 3100, blynk_timer); //
- akcja.attach(2, 2100, vLED_timer);
- akcja.attach(3, 60050, czas_timer); //
- blynksetup(); // setup biblioteki BLYNK
- pompasetup();
- }
- void loop() {
- akcja.process(); // timer
- blynkakcja(); //BLYNK
- }
Advertisement
Add Comment
Please, Sign In to add comment