Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <Button.h>
- Button przycisk = Button(A5, BUTTON_PULLUP_INTERNAL);
- //lub z ustawieniem czasu opóźnienia na drganie styków - domyślnie 20 ms
- Button przycisk = Button(A5, BUTTON_PULLUP_INTERNAL, true, 50);
- //podstawowy program
- void setup(){
- }
- void loop(){
- if(przycisk.isPressed()){
- //zrób gdy naciśnięty
- }else{
- //zrób gdy nie naciśnięty
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement