aboutsummaryrefslogtreecommitdiffstats
path: root/examples/java/FTDITest.java
blob: c58a2f37c3653475b9cf2bf2743be70c162fa73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Author: Petre Eftime <petre.p.eftime@intel.com>
 * Copyright (c) 2016 Intel Corporation.
 *
 * SPDX-License-Identifier: MIT
 */

import mraa.*;

public class FTDITest {

    public static void main(String[] args) throws InterruptedException {
        String board = mraa.getPlatformName();
        String version = mraa.getVersion();

        System.out.println(String.format("Version: %s", version));
        System.out.println(String.format("Running on %s", board));

        if (mraa.hasSubPlatform()) {
            System.out.println("Subplatform detected");

            /* Print when button is pressed */
            Gpio button = new Gpio(515);
            button.dir(Dir.DIR_IN);
            button.isr(Edge.EDGE_FALLING, new Runnable() {

                @Override
                public void run() {
                    System.out.println("Button pressed");
                }
            });

            /* Blink FTDI board LED */
            Gpio led = new Gpio(514);
            led.dir(Dir.DIR_OUT);
            for (int i = 100; i > 0; --i) {
                led.write(i % 2);
                Thread.sleep(500);
            }
        } else {
            System.out.println("Subplatform not detected");
        }
    }
}