Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
embedded_systems_public
Java-Exercises-8-JNI-PiFaceCAD
Commits
c503d5ee
Commit
c503d5ee
authored
Jan 17, 2018
by
Martin Deinhofer
Browse files
HelloJNI.c
parent
7a293255
Changes
1
Hide whitespace changes
Inline
Side-by-side
jni/HelloJNI.c
View file @
c503d5ee
...
...
@@ -11,7 +11,11 @@ JNIEXPORT void JNICALL Java_java_1exercises8_11_11_HelloJNI_sayHello(JNIEnv *env
pifacecad_open
();
pifacecad_lcd_backlight_on
();
pifacecad_lcd_write
(
"Java SE Embedded rocks"
);
pifacecad_lcd_set_cursor
(
0
,
0
);
pifacecad_lcd_write
(
"Java SE Embedded"
);
pifacecad_lcd_set_cursor
(
0
,
1
);
pifacecad_lcd_write
(
"rocks!!"
);
pifacecad_lcd_backlight_off
();
pifacecad_close
();
return
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment