This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to openjdk nashorn project. | |
Please check "samples" directory in http://hg.openjdk.java.net/jdk9/dev/nashorn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to openjdk nashorn project. | |
Please check "samples" directory in http://hg.openjdk.java.net/jdk9/dev/nashorn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to openjdk nashorn project. | |
Please check "samples" directory in http://hg.openjdk.java.net/jdk9/dev/nashorn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple example to read IR remote key and show it on LCD | |
// using Induino R3 board, LCD shield and Sony IR remote. | |
// See also: | |
// | |
// InduinoX libraries and samples download here: | |
// http://downloads.simplelabs.co.in/induinox_samples.zip | |
// | |
// Interfacing LED shield: | |
// http://induino.blogspot.in/2012/03/induinox-user-guide-interfacing-with.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Blink | |
Turns on an LED on for one second, then off for one second, repeatedly. | |
But, the blink interval can be modified via serial monitor. Check out | |
Tools->Serial Monitor menu which is enabled after connecting your board via USB. | |
This example code is in the public domain. | |
*/ | |
// Pin 13 has an LED connected on most Arduino boards. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to openjdk nashorn project. | |
Please check "samples" directory in http://hg.openjdk.java.net/jdk9/dev/nashorn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to openjdk nashorn project. | |
Please check "samples" directory in http://hg.openjdk.java.net/jdk9/dev/nashorn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to openjdk nashorn project. | |
Please check "samples" directory in http://hg.openjdk.java.net/jdk9/dev/nashorn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/jjs -fx | |
/** | |
* This #nashorn script demonstrates using JavaFX WebView | |
* and DOM interaction to extend the functionality of a | |
* pre-written webapp without changing that application code. | |
* jslogo implements Logo programming language with DOM and JS. | |
* In this example, we extend "jslogo" webapp to add a feature | |
* to load logo script file from local file system. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved as a blog entry: https://blogs.oracle.com/sundararajan/entry/using_javafx_fxml_with_nashorn |