OSDN Git Service

Added readme document for linux.
authortkawata <tkawata@users.sourceforge.jp>
Fri, 1 Jun 2012 15:15:38 +0000 (00:15 +0900)
committertkawata <tkawata@users.sourceforge.jp>
Fri, 1 Jun 2012 15:15:38 +0000 (00:15 +0900)
Documents/README_WIN.jp.txt
Documents/README_linux.en.txt [new file with mode: 0644]
Documents/README_linux.jp.txt [new file with mode: 0644]

index 9c76a3f..3701495 100644 (file)
@@ -10,7 +10,7 @@ Date: June 1, 2012
 
 
 - \83T\83\93\83v\83\8b\82Ì\83R\83\93\83e\83\93\83c\82ª\92ñ\8b\9f\82³\82ê\82Ä\82¢\82Ü\82·\81B
-  \83T\83\93\83v\83\8b\82Í Samples\Samples \83f\83B\83\8c\83N\83g\83\8a\94z\89º\82É\82 \82è\82Ü\82é\81B
+  \83T\83\93\83v\83\8b\82Í Samples\Samples \83f\83B\83\8c\83N\83g\83\8a\94z\89º\82É\82 \82è\82Ü\82·\81B
 \81@\8e\9f\82Ì\83T\83\93\83v\83\8b\82ª\92ñ\8b\9f\82³\82ê\82Ä\82¢\82Ü\82·\81B
 
     Sample1_SampleCells 
diff --git a/Documents/README_linux.en.txt b/Documents/README_linux.en.txt
new file mode 100644 (file)
index 0000000..169550a
--- /dev/null
@@ -0,0 +1,36 @@
+dennco project
+
+Alpha 1.0 release for windows
+Date: June 1, 2012
+
+- How to run:
+
+1. Execute StartEngine.sh. It will launch the "dennco engine" application.
+2. Press [Choose Dir] button and choose the directory contains the dennco 
+   application content.
+3. Press [Start] button. The application will be loaded into the engine and
+   start runnig.
+
+- A sample containers are provided. 
+  They are under Samples/Samples. Following samples are provided:
+    Sample1_SampleCells 
+      - demonstrate the functionalities of the cells.
+
+    Sample2_SimpleStorageCells 
+      - demonstrate the persistent storage functionality.
+
+    Sample3_Arduino1 
+      - demonstrate the serial communication functionality. 
+        Arduino uno is expected to be used as the device communicate to.
+        A sketch for arduino is provided under Arduino/sketch1
+
+    Sample4_Arduino2_PIDControl
+         - demonstrate the serial communicattion functionality.
+           This demo controls a motor. Arudino + Motor shield is used.
+               This demo read analog3 input from Arduino and control motor 
+               with PID controller.
+               
+       Sample5_SimplePerceptron
+         - A example to implement Perceptron neural network using dennco.
+           To implement the logic. Following URL is referenced.
+               http://en.wikipedia.org/wiki/Perceptron 
diff --git a/Documents/README_linux.jp.txt b/Documents/README_linux.jp.txt
new file mode 100644 (file)
index 0000000..96cd68a
--- /dev/null
@@ -0,0 +1,35 @@
+dennco project
+
+alpha 1.0 release for windows
+Date: June 1, 2012
+
+- 使い方:
+ 1. StartEngine.shを起動します。"dennco engine" アプリケーションが起動します。
+ 2.  [Choose Dir] ボタンを押して実行するコンテンツを選択します。
+ 3.  [Start] ボタンを押して実行を開始します。
+
+
+- サンプルのコンテンツが提供されています。
+  サンプルは Samples/Samples ディレクトリ配下にありまる。
+ 次のサンプルが提供されています。
+
+    Sample1_SampleCells 
+      - cell の基本的な機能を使ったサンプル
+
+    Sample2_SimpleStorageCells 
+      - 保存機能を用いたサンプル
+
+    Sample3_Arduino1 
+      - シリアル通信機能を使ったサンプル
+        通信相手として Arduino Uno を想定
+        analog0 の読み込みと PWD3 からのアナログ出力をコントロール
+        Arduino Uno で動作させるスケッチを Arduino/sketch1 に提供
+
+    Sample4_Arduino2_PIDControl
+      - シリアル通信で Arduino Uno と接続し、モータを制御するデモ
+        モータの制御は モータシールドを介して行うことを想定しています。
+        Aruduino の analog3 からの値を読み取り、これをもとに PID 制御を行います。
+
+    Sample5_SimplePerceptron
+      - パーセプトロン・ニューラスネットワークの dennco による実装例です。
+        理論は http://en.wikipedia.org/wiki/Perceptron を参考にしました。