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
    About the element14 Community
  • 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
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum PiFace not reliably detecting external button press
  • 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 2 replies
  • Subscribers 706 subscribers
  • Views 515 views
  • Users 0 members are here
  • raspberry_pi
  • piface
Related

PiFace not reliably detecting external button press

e14 Contributor
e14 Contributor over 13 years ago

Hi

 

First project with the Pi/PiFace. The intent is  to switch 12V solenoids on an air valve with drives a large cylinder.  The solenoids pull 4.8W at full load (and I measured the current draw at 370mA)). The power supply is rated at 2000mA for both 5V and 12V. The solenoids are connected as +12V -> solenoid -> PiFace central terminal then PiFace lower terminal -> ground. The external switches are simple push to close arranged with a common to the +5V and then each one to one of the inputs on the PiFace. There are various LEDs as well - each with a 270 ohm resister between the LED and the PiFace output terminal. That's about as well as I can describe it  without a diagram image

 

The problems seem to be around reliably detecting the button press and, possibly, the relay current draw 'resetting' the system. I immediately thought of a short circuit for that last one - but I can find no evidence of one. Also - the relay seems to 'lock' shut - keeping the power running continuously through the solenoid (which I fear has been damaged before i realised what was happening). I've (hopefully) attached the code - it's taken fairly directly from the latest github docs - and all the s/w was updated yesterday (June 2). The comments are in there as I was trying to trace where the breakdown was - and it seems that the input key events are simply not being detected or are  doubles. Key bounce? If so - how do we avoid that with the pifacedigitalio libraries. Or do we use something else?

 

Comments and thoughts welcome

 

Thanks

Derek the confused

Attachments:
t1.py.zip
  • Sign in to reply
  • Cancel
Parents
  • johnbeetem
    johnbeetem over 13 years ago

    I guess you've learned the hard way that it's a good idea to use an LED for testing, and only connect real world devices after you have confidence that the software works.

     

    It could very easily be a problem with contact bounce.  I'm not familiar with the PiFace software, so I don't know if they have a debounce option.  I believe contact bounce occurs on the order of milliseconds -- you can observe your own switch if you have a digital 'scope.  My favorite scheme to debounce is to sample the switch every millisecond or so and use the on/off value to increment or decrement a counter which saturates at 0 and (say) 20.  The bouncing causes a series of increments and decrements which keep the count value low, and the counter only counts to its full value once it has reliable contact.

     

    Or, you can simply check the switch 20 msec after it changes value and see if it's still at the new value.

     

    If PiFace has inputs with hysteresis you can use an RC network with your switch.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • e14 Contributor
    e14 Contributor over 13 years ago in reply to johnbeetem

    >I guess you've learned the hard way

     

    Actually - what's *really* painful is that I know that.  Notch up another failure due to being in a hurry. image

     

    So - using your idea I added this method to check what was happening

     

    def debounce(self,pin):

         state = 0

         for i in range(0,10):

              state += p.digital_read(pin)

              sleep(0.01)

         print ("debounce " + str(state))

         return state

     

    Then the callback thread checks for verification (>8 or <2) before initiating anything. Turns out that one of the relay control input switches is hosed. Sigh. A classic 10c part taking out a $80 one.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • e14 Contributor
    e14 Contributor over 13 years ago in reply to johnbeetem

    >I guess you've learned the hard way

     

    Actually - what's *really* painful is that I know that.  Notch up another failure due to being in a hurry. image

     

    So - using your idea I added this method to check what was happening

     

    def debounce(self,pin):

         state = 0

         for i in range(0,10):

              state += p.digital_read(pin)

              sleep(0.01)

         print ("debounce " + str(state))

         return state

     

    Then the callback thread checks for verification (>8 or <2) before initiating anything. Turns out that one of the relay control input switches is hosed. Sigh. A classic 10c part taking out a $80 one.

    • 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 © 2026 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.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube