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 A quick code question.
  • 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
  • Replies 3 replies
  • Subscribers 403 subscribers
  • Views 311 views
  • Users 0 members are here
Related

A quick code question.

Former Member
Former Member over 13 years ago

I am trying to figure out how to write a code for multiple pots a high level set and a low level set to turn on a led for one the other or keep a middle one on if it doesnt hit either one I know it needs to be an if else code but dont know how to set it up exactly. can anyone help me?

  • Sign in to reply
  • Cancel
Parents
  • billabott
    billabott over 13 years ago

    Are you controlling three digital potentiometers which in turn control the brightness of three leds?

    I don't understand high level set etc.   Do you have single variable, LevelValueInt, which determines which led is on?

    One of the syntactical tools to do that is http://www.arduino.cc/en/Tutorial/SwitchCase2.

    Nico has been discussing that here.

     

    -=Syntax Matters=-

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago in reply to billabott

    ok I should have been more specific. there are three levels and three leds anhigh level a safe level and a low level the leds are acting as indicators of which level it is on i want a pot set to which when the level gets above it it switches from the safe to the high and the same if it gets below the low set pot

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • chgus
    chgus over 13 years ago in reply to Former Member

    Guess You want to do something like this: (this is just one possible solution)

     

    // Input Pins

    #define HI A1

    #define LO A2

    #define IN A0

    // Output Pins

    #define OVER 2

    #define UNDER 3

    #define SAFE 4

     

     

    int levelHi;

    int levelLo;

    int levelIn;

     

     

    void setup(){

      pinMode(OVER,OUTPUT);

      pinMode(UNDER,OUTPUT);

      pinMode(SAFE,OUTPUT);

    }

     

     

    void loop(){

      // Read Inputs

      levelHi=analogRead(HI);

      levelLo=analogRead(LO);

      levelIn=analogRead(IN);

      // Set Outputs

      if(levelIn>levelHi){

        digitalWrite(OVER,HIGH);

        digitalWrite(UNDER,LOW);

        digitalWrite(SAFE,LOW);

        goto done;

      }

      if(levelIn<levelLo){

        digitalWrite(OVER,LOW);

        digitalWrite(UNDER,HIGH);

        digitalWrite(SAFE,LOW);

        goto done;

      }

      // If we get here we are inside the two limiting levels - safe

      digitalWrite(OVER,LOW);

      digitalWrite(UNDER,LOW);

      digitalWrite(SAFE,HIGH);

      done:;

    }

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • chgus
    chgus over 13 years ago in reply to Former Member

    Guess You want to do something like this: (this is just one possible solution)

     

    // Input Pins

    #define HI A1

    #define LO A2

    #define IN A0

    // Output Pins

    #define OVER 2

    #define UNDER 3

    #define SAFE 4

     

     

    int levelHi;

    int levelLo;

    int levelIn;

     

     

    void setup(){

      pinMode(OVER,OUTPUT);

      pinMode(UNDER,OUTPUT);

      pinMode(SAFE,OUTPUT);

    }

     

     

    void loop(){

      // Read Inputs

      levelHi=analogRead(HI);

      levelLo=analogRead(LO);

      levelIn=analogRead(IN);

      // Set Outputs

      if(levelIn>levelHi){

        digitalWrite(OVER,HIGH);

        digitalWrite(UNDER,LOW);

        digitalWrite(SAFE,LOW);

        goto done;

      }

      if(levelIn<levelLo){

        digitalWrite(OVER,LOW);

        digitalWrite(UNDER,HIGH);

        digitalWrite(SAFE,LOW);

        goto done;

      }

      // If we get here we are inside the two limiting levels - safe

      digitalWrite(OVER,LOW);

      digitalWrite(UNDER,LOW);

      digitalWrite(SAFE,HIGH);

      done:;

    }

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • 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