Private
Public Access
2
0

examples/java: Update, indent and add [Interesting] tags to examples

Signed-off-by: Petre Eftime <petre.p.eftime@intel.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Petre Eftime
2015-09-30 13:21:23 +03:00
committed by Brendan Le Foll
parent 013c04c7b9
commit 0e44dfac44
5 changed files with 133 additions and 108 deletions

View File

@@ -24,31 +24,34 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
public class CyclePwm3 {
static {
try {
System.loadLibrary("mraajava");
} catch (UnsatisfiedLinkError e) {
System.err.println(
"Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" +
e);
System.exit(1);
}
}
public static void main(String argv[]) throws InterruptedException {
mraa.mraa.init();
mraa.Pwm pwm = new mraa.Pwm(3);
pwm.period_us(200);
pwm.enable(true);
import mraa.Pwm;
float value = 0;
while (true) {
value += 0.01;
pwm.write(value);
Thread.sleep(50);
if (value >= 1) {
value = 0;
}
public class CyclePwm3 {
static {
try {
System.loadLibrary("mraajava");
} catch (UnsatisfiedLinkError e) {
System.err.println(
"Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" +
e);
System.exit(1);
}
}
public static void main(String argv[]) throws InterruptedException {
//! [Interesting]
Pwm pwm = new mraa.Pwm(3);
pwm.period_us(200);
pwm.enable(true);
float value = 0;
while (true) {
value += 0.01;
pwm.write(value);
Thread.sleep(50);
if (value >= 1) {
value = 0;
}
}
//! [Interesting]
}
}
}