2015-10-09 14:36:54 +03:00
|
|
|
/*
|
|
|
|
|
* Author: Andrei Vasiliu <andrei.vasiliu@intel.com>
|
|
|
|
|
* Copyright (c) 2015 Intel Corporation.
|
|
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* This program and the accompanying materials are made available under the
|
|
|
|
|
* terms of the The MIT License which is available at
|
|
|
|
|
* https://opensource.org/licenses/MIT.
|
2015-10-09 14:36:54 +03:00
|
|
|
*
|
2019-07-30 19:41:32 -07:00
|
|
|
* SPDX-License-Identifier: MIT
|
2015-10-09 14:36:54 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import upm_pulsensor.*;
|
|
|
|
|
|
2018-02-27 12:12:09 -08:00
|
|
|
public class Pulsensor_Example {
|
2015-10-09 14:36:54 +03:00
|
|
|
static class PulsensorCallback extends Callback {
|
|
|
|
|
public PulsensorCallback() {
|
|
|
|
|
super();
|
|
|
|
|
}
|
|
|
|
|
public void run (clbk_data arg) {
|
|
|
|
|
System.out.println();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void main (String[] args) throws InterruptedException {
|
|
|
|
|
// ! [Interesting]
|
|
|
|
|
Callback obj_call = new PulsensorCallback();
|
|
|
|
|
Pulsensor p = new Pulsensor(obj_call);
|
|
|
|
|
p.start_sampler();
|
|
|
|
|
Thread.sleep(1000);
|
|
|
|
|
p.stop_sampler();
|
|
|
|
|
// ! [Interesting]
|
|
|
|
|
}
|
|
|
|
|
}
|