CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 02:25:57 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=556ce73d5649c2354e1b707c86d0b7bdd6f38ebadddbe81c414dc77f74d52e6ca%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22o3tyQuXH8SnBgpCql680Arwn1obOUVCA%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d3264b3b0cc167-BLR
Button Logger rev_15 - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: Button Logger
- - Source Code NOT compiled for: XIAO ESP32S3
- - Source Code created on: 2025-10-05 21:10:18
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* read button */
- /****** END SYSTEM REQUIREMENTS *****/
- /* START CODE */
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void buttonPressed();
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t button_PushButton_PIN_D0 = 0;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/// Button instance attached to D0
- EasyButton button(button_PushButton_PIN_D0);
- void buttonPressed()
- {
- Serial.println("Button pressed");
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> POTATest.ino - Button read example <<<");
- // Configure the input pin with internal pull-up
- pinMode(button_PushButton_PIN_D0, INPUT_PULLUP);
- // Initialize the EasyButton instance
- button.begin();
- // Register the pressed callback
- button.onPressed(buttonPressed);
- }
- void loop(void)
- {
- // Read the status of the button
- button.read();
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
-
📝 EASY MONEY GUIDE ✅ Working
JavaScript | 2 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ U
JavaScript | 3 sec ago | 0.25 KB
-
⭐⭐⭐Exchange Exploit T I⭐⭐
Java | 11 sec ago | 0.10 KB
-
📌 ChangeNOW Exploit
JavaScript | 11 sec ago | 0.24 KB
-
📌 Swapzone +37% glitch ⭐ W
JavaScript | 12 sec ago | 0.25 KB
-
✅⭐ Make huge profits on trading ⭐⭐ P
JavaScript | 21 sec ago | 0.25 KB
-
📌 Instant BTC Profit Method ✅ Working
JavaScript | 21 sec ago | 0.24 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 23 sec ago | 0.10 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand