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 PiFaceCAD Looping Hello_Video Project
  • 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 1 reply
  • Subscribers 662 subscribers
  • Views 329 views
  • Users 0 members are here
  • raspberry
  • pifacecad
  • pi
  • video
  • piface_control_and_display
  • raspberry_pi
  • raspeberry_pi_accessories
  • piface_control_&_display
  • piface_control&display
  • piface_control
  • piface
Related

PiFaceCAD Looping Hello_Video Project

Former Member
Former Member over 11 years ago

Hello all. I'm somewhat of a NOOB to the Pi and the PiFace (more the PiFace than anything).

 

I'm working on a project that is based on this projects:raspi_video_loop - xuv's notebook where I'm using hello_video for a looping display.

I want to use the PiFace 0-4 buttons to fire off a script that will change what graphic is playing.

Ideally there'd be a menu on screen 1)FirstGraphic 2)SecondGraphic 3)Third Graphic 4)Fourth Graphic to indicate what graphics are loaded on which buttons (this will be static so won't need feedback from anything).

My biggest issue is that I really don't know a whole lot about python programming. I played around with the simple lcd_on lcd_of write text stuff that's on the page but beyond that I have no idea where to go with it.

 

Essentially it seems very simple to me. Press button 1. Fire off script which says "copy graphicone.h264" to overwrite the "loop.h264 graphic".

 

Can anyone point me in the right direction here? There's not a ton of info out there on this so was hoping y'all could help.

 

Regards,

SS

  • Sign in to reply
  • Cancel
  • Former Member
    Former Member over 11 years ago

    Ok! So thanks to the simple menu script This PiFace menu tutorial keeps it simple @Raspberry_Pi #piday #raspberrypi « adafruit industries blog I was able to manipulate the code and make it work for me.

    Here's what I ended up coming up with. Works for me. The only thing I'd like to change is the on/off backlight buttons leave the "3" and "4" on the screen after being pressed. Is it just a matter of doing a clear? Or?

     

    Start Code

     

    import pifacecad

    import time

     

     

    def update_pin_text(event):

            event.chip.lcd.write(str(event.pin_num))

            choice = event.pin_num

            if choice == 0:

                    cad.lcd.clear()

                    cad.lcd.write("Seal Selected")

                    import subprocess

                    p = subprocess.Popen("seal")

                    output, err = p.communicate()

                    cad.lcd.clear()

                    cad.lcd.backlight_on()

                    cad.lcd.write("1:Seal 2:Aerial\n3:Bars")

            if choice == 1:

                    cad.lcd.clear()

                    cad.lcd.write("Aerial Selected")

                    import subprocess

                    p = subprocess.Popen("aerial")

                    output, err = p.communicate()

                    cad.lcd.clear()

                    cad.lcd.backlight_on()

                    cad.lcd.write("1:Seal 2:Aerial\n3:Bars")

            if choice == 2:

                    cad.lcd.clear()

                    cad.lcd.write("Bars Selected")

                    import subprocess

                    p = subprocess.Popen("bars")

                    output, err = p.communicate()

                    cad.lcd.clear()

                    cad.lcd.backlight_on()

                    cad.lcd.write("1:Seal 2:Aerial\n3:Bars")

     

     

            if choice ==3:

                    cad.lcd.backlight_on()

            if choice ==4:

                    cad.lcd.backlight_off()

     

     

     

     

    cad = pifacecad.PiFaceCAD()

    cad.lcd.backlight_on()

    cad.lcd.write("DevPi \nv1.1")

    time.sleep(2)

    cad.lcd.clear()

    cad.lcd.write("1:Seal 2:Aerial\n3:Bars")

     

     

    listener = pifacecad.SwitchEventListener(chip=cad)

    for i in range (6):

            listener.register(i, pifacecad.IODIR_FALLING_EDGE, update_pin_text)

    listener.activate()

     

    END CODE

    • 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