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
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum I need simple python code to run my PI GPIO with channgel relay
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 6 replies
  • Subscribers 669 subscribers
  • Views 6307 views
  • Users 0 members are here
  • raspberry_pi_getting_started
Related

I need simple python code to run my PI GPIO with channgel relay

Former Member
Former Member over 10 years ago

I have Raspberry Pi B+ and i just bought 8 channel relay. i successfully connected but i really need a simple code to run it to trun on and off the channel relay?

would you please help me

  • Sign in to reply
  • Cancel
  • gadget.iom
    0 gadget.iom over 10 years ago

    Do you have any sample code that you've tried so far?

    What make/model is the board?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • urkraft
    0 urkraft over 10 years ago

    Could this be what you are looking for?:

     

    https://www.youtube.com/watch?v=oaf_zQcrg7g

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • clem57
    0 clem57 over 10 years ago

    Simsim,

     

    #!/usr/bin/python
    import RPi.GPIO as GPIO
    import time
    
    GPIO.setmode(GPIO.BCM)
    
    # init list with pin numbers
    
    pinList = [17, 23]
    
    # loop through pins and set mode and state to 'low'
    
    for i in pinList: 
      GPIO.setup(i, GPIO.OUT) 
      GPIO.output(i, GPIO.HIGH)
    
    # time to sleep between operations in the main loop
    
    SleepTimeL = 2
    
    # main loop
    
    try:
      GPIO.output(17, GPIO.LOW)
      print "ONE"
      time.sleep(SleepTimeL); 
      GPIO.output(23, GPIO.LOW)
      print "TWO"
      time.sleep(SleepTimeL);  
     GPIO.cleanup()
      print "Good bye!"
    
    # End program cleanly with keyboard
    except KeyboardInterrupt:
      print " Quit"
    
      # Reset GPIO settings
      GPIO.cleanup()

     

    This code assumes two relays are used and wired to BCM pin 17 and 23. If you wire differently, change pinlist and the two output as well.

     

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • nschreiber0813
    0 nschreiber0813 over 10 years ago

    Dear: Simsim

    You should know that it is fairly simple using GPIO. As a matter of a fact I used GPIO to make an LED blink Morse code. You should know the code is simple. Try this in python.

    import RPi.GPIO as GPIO
    import time

    You should know that this basically imports GPIO and time so we can use the GPIO board and use time to control the amount of GPIO we use but it does not do anything else. Try this to turn on the board.

    GPIO.setmode(GPIO.BOARD)

    This will turn on the board try this to create an output.

    number = 37
    GPIO.setup(number,GPIO.OUT)
    GPIO.output(number,True)

    Of course there are many ways to create an output but this is the easiest for me anyways. What the the code does is turns on GPIO 26 to ouput high. to create an input do this.

    GPIO.setup(GPIO.BCM)
    number = 37
    GPIO.setup(number, GPIO.IN)
    GPIO.input(number, True)

    To create a bidrectional (or IO) I don't know. I am sorry but I can't answer that. Next you will need to look at this diagram to help you with your code. Also you should know to look for the diagram relavent to your raspberry pi.

    imageimage

     

    Good luck and bye..

    From: Noah

     

    PS in case you are wondering the pinout above is for B+ the pinout below is for A.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • johnbeetem
    0 johnbeetem over 10 years ago

    My favorite reference for RasPi GPIO hardware and programming is the RasPi Hardware Wiki: http://elinux.org/RPi_Low-level_peripherals

     

    It has programming examples in various languages, including Python: http://elinux.org/RPi_Low-level_peripherals#Python

     

    The Wiki indicates that you need to "sudo" in order to access the GPIOs.  Most of the examples require "sudo" in some form because the /dev/mem device driver normally requires that you run as root.  For more information on this, see the Wiki and the element14 discussion: http://www.element14.com/community/message/60894/l/anyone-know-how-to-access-raspi-gpio-without-sudo#60894

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

    HI Noah

    I was just looking at this post as I am looking for assistance with getting a PI A+ board to run 4 Relays with multiple programs held on the SD Card on the PI board.

    As well as a web page hosted on the board to access via the wifi dongle directly via iPone or Android to run the programs at the push of a button.

    Can you possibly help or be able to point me in the right direction.

     

    Craig

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