upm/examples/java/WT5001_Example.java
Noel Eck c54d6de054 JAVA: Unified Java Example names
Unified all Java examples to *match* <LIBRARY>[_otherstuf]_Example.java.
Note, a handful of the examples have a pseudo-random string for the
first component (see FlexSensor_Example.java, ideally this would be
Flex_Example.java).

This commit allows for quick development on a single sensor library
since a -DMODULE_LIST=mysensorlib now works with Java examples
(previously Java examples would fail generation when using
MODULE_LIST).

    * Renamed examples
    * Updated class names
    * Updated library descriptor .json files
    * Updated sample mapping file

TODO: Make this work like the C/C++ examples - grab the target library
name from the filename and grab all dependencies from that target
library.  Fix the handful of example names which don't conform.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-02-27 15:28:48 -08:00

130 lines
3.6 KiB
Java

import java.io.IOException;
/*
* Author: Stefan Andritoiu <stefan.andritoiu@intel.com>
* Copyright (c) 2015 Intel Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
//NOT TESTED!!!
public class WT5001_Example {
static private void printUsage() {
System.out.println("Usage: java WT5001_Example <command>");
System.out.println("Commands:");
System.out.println("0 - stop playing");
System.out.println("1 - start playing track 1");
System.out.println("2 - pause/un-pause playback");
System.out.println("3 - next track");
System.out.println("4 - previous track");
}
public static void main(String[] args) {
// ! [Interesting]
// Instantiate a WT5001 serial MP3 player on uart 0
upm_wt5001.WT5001 mp3 = new upm_wt5001.WT5001(0);
int cmd = -1;
if (args.length > 0)
cmd = Integer.parseInt(args[0]);
// make sure port is initialized properly. 9600 baud is the default
if (!mp3.setupTty()) {
System.err.println("error in loading native library");
System.exit(-1);
}
switch (cmd) {
case 0 :
mp3.stop();
break;
case 1 :
mp3.play(upm_wt5001.WT5001.WT5001_PLAYSOURCE_T.SD, 1);
break;
case 2 :
mp3.pause();
break;
case 3 :
mp3.next();
break;
case 4 :
mp3.previous();
break;
default :
// nothing, just output usage, and info below
printUsage();
break;
}
// print out some information
try {
short vol;
vol = mp3.getVolume();
System.out.println("The current volume is: " + vol);
} catch (IOException e) {
e.printStackTrace();
}
try {
short ps;
ps = mp3.getPlayState();
System.out.println("The current play state is: " + ps);
} catch (IOException e) {
e.printStackTrace();
}
try {
int numf;
numf = mp3.getNumFiles(upm_wt5001.WT5001.WT5001_PLAYSOURCE_T.SD);
System.out.println("The number of files on the SD card is: " + numf);
} catch (IOException e) {
e.printStackTrace();
}
try {
int curf;
curf = mp3.getCurrentFile();
System.out.println("The current file is: " + curf);
} catch (IOException e) {
e.printStackTrace();
}
int year[] = new int[1];
short month[] = new short[1];
short day[] = new short[1];
if (mp3.getDate(year, month, day))
System.out.println("The device date is: " + year[0] + "/" + month[0] + "/" + day[0]);
short hour[] = new short[1];
short minute[] = new short[1];
short second[] = new short[1];
if (mp3.getTime(hour, minute, second))
System.out
.println("The device time is: " + hour[0] + ":" + minute[0] + ":" + second[0]);
// ! [Interesting]
}
}