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 & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • 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
      • Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Vietnam
      • 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
  • Products
  • More
Arduino
Arduino Forum How to turn an led on and off via serial?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 2 replies
  • Subscribers 402 subscribers
  • Views 266 views
  • Users 0 members are here
  • on
  • led
  • serial
  • off
Related

How to turn an led on and off via serial?

jreeve17
jreeve17 over 12 years ago

Im trying to use this code to turn LED's on and  off via serial. The only problem is that i can't get them to go off on their own, the only way to do it is by resetting tha arduino. Does anyone know how to change the code to turn them off via serial?

Or is there a better code that someone knows to use?

 

 

void setup(){

  Serial.begin(9600);

 

  pinMode(5, OUTPUT);

  pinMode(6, OUTPUT);

 

}

 

void loop (){

  if (Serial.available()) {

 

 

    char ser = Serial.read();

 

    switch (ser) {

 

      case '3':

        triggerPin(5);

        break;

      case '4':

        triggerPin(6);

        break;

 

    }

  }

}

 

void triggerPin(int pin){

  digitalWrite(pin, HIGH);

}

  • Sign in to reply
  • Cancel
Parents
  • Former Member
    0 Former Member over 12 years ago

    Hello,

    if you manage to only get it working by serial here is a working sketch you could use for example.

    Just change it the way you want it to really do the jobs.

     

     

    boolean statePin5 = LOW; // To store the state of the pin 5

    boolean statePin6 = LOW; // same thing for pin 6

     

    void setup(){

      Serial.begin(9600);

     

      pinMode(5, OUTPUT);

      pinMode(6, OUTPUT);

    }

     

    void loop (){

      if (Serial.available()) {

       

        char ser = Serial.read();

     

        switch (ser) {

     

          case '3':

            statePin5 = !statePin5; // change the state of the pin 5

            triggerPin(5, statePin5);

            break;

          case '4':

            statePin6 = !statePin6; // change the state of the pin 6

            triggerPin(6, statePin6);

            break;

          default:  // in case you have something different coming through serial

            digitalWrite(5, LOW); // back to low

            digitalWrite(6, LOW); // back to low

            statePin5 = !statePin5; // don't forget to change the state of each pin

            statePin6 = !statePin6; // also or you'll be missing a state in the sequence

            break;

        }

      }

    }

     

    void triggerPin(int pin, int statePin){ // adding the pin state

      digitalWrite(pin, statePin); // enjoy !!!

    }

     

     

    In case you really want to use the switch/case function don't forget to use the "default" case that is really powerfull to save a lot of trouble.

     

    Hope you'll find your way.

    Good luck.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 12 years ago

    Hello,

    if you manage to only get it working by serial here is a working sketch you could use for example.

    Just change it the way you want it to really do the jobs.

     

     

    boolean statePin5 = LOW; // To store the state of the pin 5

    boolean statePin6 = LOW; // same thing for pin 6

     

    void setup(){

      Serial.begin(9600);

     

      pinMode(5, OUTPUT);

      pinMode(6, OUTPUT);

    }

     

    void loop (){

      if (Serial.available()) {

       

        char ser = Serial.read();

     

        switch (ser) {

     

          case '3':

            statePin5 = !statePin5; // change the state of the pin 5

            triggerPin(5, statePin5);

            break;

          case '4':

            statePin6 = !statePin6; // change the state of the pin 6

            triggerPin(6, statePin6);

            break;

          default:  // in case you have something different coming through serial

            digitalWrite(5, LOW); // back to low

            digitalWrite(6, LOW); // back to low

            statePin5 = !statePin5; // don't forget to change the state of each pin

            statePin6 = !statePin6; // also or you'll be missing a state in the sequence

            break;

        }

      }

    }

     

    void triggerPin(int pin, int statePin){ // adding the pin state

      digitalWrite(pin, statePin); // enjoy !!!

    }

     

     

    In case you really want to use the switch/case function don't forget to use the "default" case that is really powerfull to save a lot of trouble.

     

    Hope you'll find your way.

    Good luck.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
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