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 PiFaceDigital 2 board seems not to respond to .init
  • 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 0 replies
  • Subscribers 663 subscribers
  • Views 179 views
  • Users 0 members are here
  • raspberry_pi
  • piface digital 2
Related

PiFaceDigital 2 board seems not to respond to .init

Former Member
Former Member over 9 years ago

Hi,

 

I have some written some code for a Pi with a PiFaceDigital 2 card which is a reaction timer game.

 

The programme starts in a menu with 2 options - option 1 is to play the game, option 2 is to quit. Once in game play, the screen clears, and the programme waits for an input from one of the four buttons on the PifaceDigital. When someone presses a button, the programme reports which button was pressed, and the time elapsed since starting the game.

 

All works well, except if a button is pressed on the PiFace whilst in the menu section of the game, as soon as gameplay starts, the programme immediatly reports that a button has been pressed.

 

Whilst a sensible answer is "don;t press any buttons then!", that's not quite possible, as the game is based on external sensors, and they will be reset during this time.

 

I have used the .init command to reset the board, but it doesn't seem to work.

 

Code below....any ideas?

 

import pifacedigitalio
import time
import os

pfd = pifacedigitalio.PiFaceDigital()

def print_flag(event):
    print ("The winner is station ",event.pin_num + 1)
    end = time.time()
    print end - start
    pfd.leds[1].turn_on()
    time.sleep(2)
    pfd.leds[1].turn_off()
    time.sleep(1)
    pfd.leds[1].turn_on()
    time.sleep(2)
    pfd.leds[1].turn_off()
    time.sleep(1)
    pfd.leds[1].turn_on()
    time.sleep(2)
    pfd.leds[1].turn_off()
    time.sleep(1)
    global quit
    quit = True

ans=True
while ans:
    os.system('clear')
    quit = False
    print("""
    1. Play game
    2. Quit
    """)
    ans=raw_input("Please select...")
    if ans=="1":
        pd = pifacedigitalio.PiFaceDigital()
        os.system('clear')
        print("The game has begun...")
        print("")
        pd.deinit_board
        pifacedigitalio.init()

        listener = pifacedigitalio.InputEventListener(chip=pd)
        start=time.time()
        
        # set up listeners for all buttons
        listener.register(0, pifacedigitalio.IODIR_ON, print_flag)
        listener.register(1, pifacedigitalio.IODIR_ON, print_flag)
        listener.register(2, pifacedigitalio.IODIR_ON, print_flag)
        listener.register(3, pifacedigitalio.IODIR_ON, print_flag)
        
        # Start listening for events.  This spawns a new thread.
        listener.activate() 
        
        # Hang around and wait for a button press
        while not quit:
            time.sleep(1)
        listener.deactivate()
        pd.deinit_board
    elif ans=="2":
        break
    else:
        print ("Not a valid choice, please try again")
        time.sleep(1)

  • 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