element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino Projects
  • Products
  • Arduino
  • Arduino Projects
  • More
  • Cancel
Arduino Projects
Blog Arduino and button keeping variable in memory for multiple cases
  • Blog
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino Projects to participate - click to join for free!
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: fabiolus
  • Date Created: 24 Jun 2025 5:42 PM Date Created
  • Views 84 views
  • Likes 1 like
  • Comments 0 comments
  • button
  • arduino
  • case
Related
Recommended

Arduino and button keeping variable in memory for multiple cases

fabiolus
fabiolus
24 Jun 2025

https://github.com/Fabiolus2020/ButtonKeepingValuesForMultipleCases

sketch 1: PushButtonKeepingValue2cases.ino

const int buttonPin = 7; // the pin that the pushbutton is attached to


int buttonState = 0; // current state of the button
int lastButtonState = 0; // previous state of the button
int modeState = 0; // remember current led state

void setup() {
Serial.begin(9600);
pinMode(buttonPin, INPUT_PULLUP); // initialize the button pin as a input

}

void loop() {
// read the pushbutton input pin
buttonState = digitalRead(buttonPin);

// check if the button is pressed or released
// by comparing the buttonState to its previous state
if (buttonState != lastButtonState) {

// change the state of the led when someone pressed the button
if (buttonState == 1) {
if(modeState==1) modeState=0;
else modeState=1;
}

// remember the current state of the button
lastButtonState = buttonState;
}

Serial.println(modeState);
// adding a small delay prevents reading the buttonState to fast
// ( debouncing )
delay(20);
}

Sketch 2:  PushButtonKeepingValue3caseandmore.ino

const int buttonPin = 7; // the pin that the pushbutton is attached to


int buttonState = 0; // current state of the button
int lastButtonState = 0; // previous state of the button
int modeState = 0; // remember current led state
int stateNum;
void setup() {
Serial.begin(9600);
pinMode(buttonPin, INPUT_PULLUP); // initialize the button pin as a input

}

void loop() {
// read the pushbutton input pin
buttonState = digitalRead(buttonPin);

// check if the button is pressed or released
// by comparing the buttonState to its previous state
if (buttonState != lastButtonState) {

// change the state of the led when someone pressed the button
if (buttonState == 1) {
stateNum++;
if (stateNum > 3) stateNum = 1;


}

// remember the current state of the button
lastButtonState = buttonState;
}


Serial.println(stateNum);
// adding a small delay prevents reading the buttonState to fast
// ( debouncing )
delay(20);
}

Demo video

https://youtu.be/822D0A4MiwQ

  • Sign in to reply
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube