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 Sequentialy Controling Piface Outputs
  • 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
  • Replies 7 replies
  • Subscribers 662 subscribers
  • Views 1050 views
  • Users 0 members are here
  • raspberry_pi
Related

Sequentialy Controling Piface Outputs

hiteccol80
hiteccol80 over 4 years ago

Help!

 

I'm a complete noob at Python, although do have a background in computer hardware and electronics.

 

I have a Pi B+ and a PiFaceDigital 2 - all working fine and I can control each of the outputs from the emulator and the command line in code using one of the examples provided etc.

 

I want to create a programe that does the following:

 

1)     Wait for an input on one of the inputs (a push switch or similar - there will be four connected)

2)     When a push switch is activiated, commence a sequence of turning each output on for 3 seconds then off before moving on to the next output for three seconds untill each output has been sequentually activated for three seconds then stop.

 

I can control the outputs from the emulator and in code from the command line, but am struggling with the above sequence.

 

As I'm a programming noob, I could do with seeing some examples of code - I'm quick to learn, and can adapt stuff, but I'm really struggling with putting this sequence together for the PiFaceDigital board.

 

Any ideas? Help very much appreciated.

 

Thanks!

  • Sign in to reply
  • Cancel
  • shabaz
    shabaz over 4 years ago

    Hi Colin,

     

    You should try the code here:

    https://medium.com/conectric-networks/playing-with-raspberry-pi-traffic-lights-89e0d1cb51fd

    There are three articles, and if you follow them (they are all short exercises) by the end of it you'll be simulating traffic lights, which is not far removed from the type of thing you're trying to do sequentially too.

    Then, you can use the same code style to create your own program, but inserting whatever instructions are used for the PiFace board, which it sounds like you're ok with, because you mentioned you can control outputs from the command line.

     

    To wait for a button press, you can use a while loop, here is some information:

    https://www.raspberrypi.org/forums/viewtopic.php?t=124721

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • hiteccol80
    hiteccol80 over 4 years ago in reply to shabaz

    Hi Shabaz

    Many thanks for your most helpful reply.  I shall take a look at that today and see if I can work it out from there.  However if any one else has any input I would be most grateful.

    Colin.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • colporteur
    colporteur over 4 years ago

    Let me state up front I am not a formally trained programmer. I refer to my skills as Resurrectionist or Frankenstein programming.

     

    Resurrectionists were paid  body snatchers. They exhumed the bodies of the recently dead for anatomists in the United Kingdom during the 18th and 19th centuries.  In Mary Shelley’s  classic horror novel Frankenstein, Dr. Frankenstein stitches together an assortment of stolen body parts and attempts to imbue life into his creation.

     

    I cull Internet search returns looking for code parts I can reuse. Before starting a project I usually have to read some basic documentation (i.e. manual) to get an idea of what I am looking for. I suggest grabbing the documentation for gpiozero, I think 1.5 is the latest version. Take a look at the examples of a using a button and timing.

     

    I have a button activated routine that is body snatched and a timing routine that is also body snatched. They are in two different scripts that I rolled up into the attached zip file. It would require you to take the switch routine from one script and the timing routine from the other script an make your own Frankenstein from the parts.

    Attachments:
    e14share.zip
    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • hiteccol80
    hiteccol80 over 4 years ago in reply to colporteur

    Many thanks for your helpful and prompt reply.  I am sure I can use some of these body parts in my own grotesque Frankenstein creation.

    Best wishes

    Colin.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • hiteccol80
    hiteccol80 over 4 years ago

    Many thanks to the two gentlemen who responded to my plea for help.  Your inputs assisted me a lot and I am now sorted.

    Best wishes

    Colin..

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • colporteur
    colporteur over 4 years ago in reply to hiteccol80

    Good luck. Touch base if the body parts I provided don't line up. The button routine is fairly common. The timing sequence was developed by a very good programmer friend of mine. His ability to take a concept and turn it into a program is unbelievable. I worked with him for a number of years and never absorbed as much as I would have liked.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • hiteccol80
    hiteccol80 over 4 years ago in reply to colporteur

    Great, I am now pretty well sorted with just some tidying up to do.

    Thanks again.

    Colin.

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