Package se.glockner.raspberrypi

Examples of se.glockner.raspberrypi.Button


    private Led newMailLed;
    private Led checkMailLed;
   
    public void startApp() {
        try{
            checkButton = new Button(17, "CheckMail Button");
            newMailLed = new Led(18, "New Mail Arrived");
            checkMailLed = new Led(23, "Checking Mail");
           
            checkButton.setInputListener(new PinListener(){
                public void valueChanged(PinEvent event){
View Full Code Here

TOP

Related Classes of se.glockner.raspberrypi.Button

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.