diff --git a/README.md b/README.md index 24e011a..9d772fe 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Java Embedded ============ +## 2015/04/30:改版。支援Raspberry Pi 2 Model B與Pi4J 1.0。 + 2014年3月發佈的Java SE 8,Java嵌入式產品已經非常完整,可以達到大部份實務應用的要求,例如內嵌在各種電器,或是在各種工業自動控制上的應用。開發人員可以量身打造適合的執行環境,讓Java應用程式可以在各種裝置上順利的運作,而且穩定性與效率都讓大家覺得很滿意。對Java技術開發人員來說,應該是一個非常棒的變化,你可以繼續使用Java程式設計語言,讓技術領域延伸到嵌入式應用程式。 1. [從 Raspberry Pi 開始](http://www.codedata.com.tw/java/java-embedded-getting-started-from-raspberry-pi/) @@ -11,10 +13,10 @@ Java Embedded 6. [認識 Raspberry Pi 的 GPIO](http://www.codedata.com.tw/java/java-embedded-6-raspberry-pi-gpio/) 7. [GPIO的基礎應用與實作(上)](http://www.codedata.com.tw/java/java-embedded-7-raspberry-pi-gpio-implementation-1/) 8. [GPIO的基礎應用與實作(下)](http://www.codedata.com.tw/java/java-embedded-7-raspberry-pi-gpio-implementation-2/) -9. [GPIO進階應用 – 超音波感應器](http://www.codedata.com.tw/java/java-embedded-9-gpio-ultrasonic-wave/) -10. [GPIO進階應用 – 伺服馬達](http://www.codedata.com.tw/java/java-embedded-10-gpio-motor/) -11. [整合應用 – 停車場模擬系統(上)](http://www.codedata.com.tw/java/java-embedded-11-parking-lot/) -12. 整合應用 – 停車場模擬系統(下) +9. [紅外線測距模組與類比數位轉換](http://www.codedata.com.tw/java/java-embedded-9-gpio-ultrasonic-wave/) +10. [GPIO進階應用 – 步進馬達](http://www.codedata.com.tw/java/java-embedded-10-gpio-motor/) +11. [控制直流馬達 - 使用L293D晶片](http://www.codedata.com.tw/java/java-embedded-11-parking-lot/) +12. [整合應用 – PiFan](http://www.codedata.com.tw/java/java-embedded-12-parking-lot-2/) ============ [CodeData - Michael](http://www.codedata.com.tw/author/michael) diff --git a/examples/04/FXThreadDemo/dist/web-files/dtjava.js b/examples/04/FXThreadDemo/dist/web-files/dtjava.js deleted file mode 100644 index aa5126e..0000000 --- a/examples/04/FXThreadDemo/dist/web-files/dtjava.js +++ /dev/null @@ -1,3286 +0,0 @@ -/* - * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. - * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. - */ - -/** - The Java Deployment Toolkit is utility to deploy Java content in - the browser as applets or applications using right version of Java. - If needed it can initiate upgrade of user's system to install required - components of Java platform. -

- Note that some of Deployment Toolkit methods may not be fully operational if - used before web page body is loaded (because DT native plugins could not be instantiated). - If you intend to use it before web page DOM tree is ready then dtjava.js - need to be loaded inside the body element of the page and before use of other DT APIs. - - @module java/deployment_toolkit -*/ -var dtjava = function() { - function notNull(o) { - return (o != undefined && o != null); - } - - function isDef(fn) { - return (fn != null && typeof fn != "undefined"); - } - - //return true if any of patterns from query list is found in the given string - function containsAny(lst, str) { - for (var q = 0; q < lst.length; q++) { - if (str.indexOf(lst[q]) != -1) { - return true; - } - } - return false; - } - - /* Location of static web content - images, javascript files. */ - var jscodebase = (function () { - //