Microsoft Word 八月第二篇V4

Size: px
Start display at page:

Download "Microsoft Word 八月第二篇V4"

Transcription

1 物聯網系列 : 單色圖形顯示介紹 (NOKIA 5110 LCD 開發篇 ) 2016 年 8 月 15 日八月, 2016 文 \ 曹永忠 本篇是接續上篇文章 物聯網系列 : 單色圖形顯示介紹 (NOKIA 5110 LCD 基本篇 ), 已經可以讓 Nokia 5110 LCD 模組顯示字形 ( 曹永忠, 2016d), 畫出基本的幾何圖形, 甚至是簡單的動畫, 但是這些例子並不容易, 所以本文要教讀者如何顯示文字 如何放大文字 畫出幾合圖形, 對一般讀者仍不太容易理解 所以本文告訴讀者, 如何使用 Nokia 5110 LCD 模組的函式庫, 來顯示字形, 如何放大文字 顯示圖片, 甚至簡單的動畫等等即為本文開發篇的主要內容 模組電路組立 NOKIA 5110 是一款基於圖形顯示的 LCD 螢幕 ( 如下圖所示 ), 主要這款螢幕, 被手機大廠 NOKIA 用來裝置在 5110 系列手機, 因而大受歡迎並且有很多的應用 Nokia 5110 LCD 使用的 PCD8544 控制器,NOKIA 3110 用的也是這款控制器, PCD8554 是一款低功耗的 CMOS LCD 控制器, 用於驅動 48 行 84 列的圖形顯示, 並且採用串列匯流排界面與微控制器相連, 大大減少了週邊控制線的數量, 在使用時十分的方便, 而且相對於 LCD1602 LCD12864 都有著自己的獨特優勢

2 圖 1 Nokia 5110 LCD 模組 在 Arduino 官網 : 也有介介紹 Nokia 5110 LCD 模組, 讀者者可以參考考下表之腳位位說明, 進進行電路組立 Nokia 5110 接腳 VCC GND SCE/CE RST/Reset D/C DN/MOSI SCLK LED 表 1 Nokia 5110 LCD 接腳說明 5V( 正 ) 接地晶片致能晶片重置 Data/Comma and select 資料 / 命令選選擇 Serial Data Out 資料輸出 Serial Clockk Out 脈波控制輸輸出被光電源 LCD 模組接接腳表開發版腳位 +5C GND D7 D6 D5 D4 D3 用途供電 ( 正 ) 供電 ( 接地 ) 數位腳位 7 數位腳位 6 數位腳位 5 數位腳位 4 數位腳位 V 3.3V 供電 ( 正 )

3 Nokia 5110 LCD 開發版 顯示文字 首先, 我們要教讀者者在 Nokia 5110 LCD 模組顯示文文字, 首先先我們依上面面電路組組立將 Nokia 5110 LCD 模組與開開發版連接接完成, 再進進行程式寫寫作 本程式需需要用到兩個個函式庫 ( 曹永忠, 2016e), 關於 Adafruit_PCD8544.h, 請到到網址 : uit-pcd8544-nokia-5110 或 或 進行下載,

4 關於 Adafruit_GFX.h, 請到網址 : aries/adafruit_gfx, 進行下載 我們, 請讀者鍵入 Sketch IDE 軟體 ( 軟體下載請到 : 編譯完成後上傳到開發版進行測試 表 2 Nokia 5110 LCD 模組文字測試程式一 Nokia 5110 LCD 模組文字測試程式一 (NOKIA_Text_Show) /******************************************************************** * This is an example sketch for our Monochrome Nokia 5110 LCD Displays Pick one up today in the adafruit shop! > These displays use SPI to communicate, 4 or 5 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information All text above, and the splash screen must be included in any redistribution ********************************************************************* / #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_PCD8544.h> #define PIN_SCE 7 #define PIN_RESET 6

5 #define PIN_DC 5 #define PIN_SDIN 4 #define PIN_SCLK 3 // Software SPI (slower updates, more flexible pin options): //=== old version pin out====== // pin 7 - Serial clock out (SCLK) // pin 6 - Serial data out (DIN) // pin 5 - Data/Command select (D/C) // pin 4 - LCD chip select (CS) // pin 3 - LCD reset (RST) Adafruit_PCD8544 display = Adafruit_PCD8544(PIN_SCLK, PIN_SDIN, PIN_DC, PIN_SCE, PIN_RESET); // Adafruit_PCD8544 display = Adafruit_PCD8544(SCLK, DIN, D/C, CS/SCE, RST); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 void setup() { // put your setup code here, to run once: Serial.begin(9600); display.begin(); // init done //init Nokia 5110 display // you can change the contrast around to adapt the display // for the best viewing! display.setcontrast(50); //set Contrast display.cleardisplay(); // 清除螢幕 display.display(); // show splashscreen // display.settextsize(1); // 設定字形大小 display.settextcolor(black); // 設定字形顏色黑色 display.setcursor(0,0); // 位置歸零

6 display.println("hello, world!"); // 印出字 display.settextcolor(white, BLACK); // 反白文字 display.println( ); // 印出字 display.settextsize(2); // 設定字形大小 display.settextcolor(black); // 設定字形顏色黑色 display.print("0x"); display.println(0xdeadbeef, HEX); // 印出字 display.display(); // 顯示所有上面內容, 必要在所有秀字命令後, 一定要的 delay(2000); void loop() { // put your main code here, to run repeatedly: 程式下載網址 : 如下圖所示, 我們可以看到 Nokia 5110 LCD 模組資訊顯示出來文字 ( 曹永忠, 2016a, 2016b, 2016c, 2016d; 曹永忠, 許智誠, & 蔡英德, 2015a, 2015b, 2015c, 2015d, 2015e, 2015f; 曹永忠, 許碩芳, 許智誠, & 蔡英德, 2015a, 2015b)

7 圖 2 Nokia 5110 LCD 模組文字測試程式一結果畫面 顯示點幾何圖形 首先, 我們要教讀者在 Nokia 5110 LCD 模組畫出許多點, 首先我們依上面電路組立將 Nokia 5110 LCD 模組與開發版連接完成, 再進行程式寫作 本程式需要用到兩個函式庫 ( 曹永忠, 2016e), 關於 Adafruit_PCD8544.h, 請到網址 : uit-pcd8544-nokia-5110 或 或 進行下載, 關於 Adafruit_GFX.h, 請到網址 : aries/adafruit_gfx, 進行下載 我們, 請讀者鍵入 Sketch IDE 軟體 ( 軟體下載請到 : 編譯完成後上傳到開發版進行測

8 試 表 3 Nokia 5110 LCD 模組畫點測試程式一 N Nokia 5110 LCD 模組畫點測試程式一 (NOKIA_drawpixel) /******************************************************************** * This is an example sketch for our Monochrome Nokia 5110 LCD Displays Pick one up today in the adafruit shop! > These displays use SPI to communicate, 4 or 5 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information All text above, and the splash screen must be included in any redistribution ********************************************************************* / #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_PCD8544.h> #define PIN_SCE 7 #define PIN_RESET 6 #define PIN_DC 5 #define PIN_SDIN 4 #define PIN_SCLK 3 // Software SPI (slower updates, more flexible pin options): //=== old version pin out====== // pin 7 - Serial clock out (SCLK)

9 // pin 6 - Serial data out (DIN) // pin 5 - Data/Command select (D/C) // pin 4 - LCD chip select (CS) // pin 3 - LCD reset (RST) Adafruit_PCD8544 display = Adafruit_PCD8544(PIN_SCLK, PIN_SDIN, PIN_DC, PIN_SCE, PIN_RESET); // Adafruit_PCD8544 display = Adafruit_PCD8544(SCLK, DIN, D/C, CS/SCE, RST); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 void setup() { // put your setup code here, to run once: Serial.begin(9600); display.begin(); // init done //init Nokia 5110 display // you can change the contrast around to adapt the display // for the best viewing! display.setcontrast(50); //set Contrast display.cleardisplay(); // 清除螢幕 display.display(); // show splashscreen // // draw a single pixel display.drawpixel(10, 10, BLACK); display.drawpixel(10, 12, BLACK); display.drawpixel(10, 14, BLACK); display.drawpixel(10, 16, BLACK); display.drawpixel(10, 18, BLACK); display.drawpixel(10, 20, BLACK); display.drawpixel(14, 10, BLACK); display.drawpixel(14, 12, BLACK); display.drawpixel(14, 14, BLACK);

10 display.drawpixel(14, 16, BLACK); display.drawpixel(14, 18, BLACK); display.drawpixel(14, 20, BLACK); display.drawpixel(18, 10, BLACK); display.drawpixel(18, 12, BLACK); display.drawpixel(18, 14, BLACK); display.drawpixel(18, 16, BLACK); display.drawpixel(18, 18, BLACK); display.drawpixel(18, 20, BLACK); display.drawpixel(22, 10, BLACK); display.drawpixel(22, 12, BLACK); display.drawpixel(22, 14, BLACK); display.drawpixel(22, 16, BLACK); display.drawpixel(22, 18, BLACK); display.drawpixel(22, 20, BLACK); display.display(); // 顯示所有上面內容, 必要在所有秀字命令後, 一定要的 delay(2000); void loop() { // put your main code here, to run repeatedly: 程式下載網址 : 如下圖所示, 我們可以看到 Nokia 5110 LCD 模組畫出許多點 ( 曹永忠, 2016a, 2016b, 2016c, 2016d; 曹永忠, 許智誠, et al., 2015a, 2015b, 2015c, 2015d, 2015e, 2015f; 曹永忠, 許碩芳, et al., 2015a, 2015b)

11 圖 3 Nokia 5110 LCD 模組畫點測試程式一結果畫面 顯示線幾何圖形 首先, 我們要教讀者在 Nokia 5110 LCD 模組畫出線, 首先我們依上面電路組立將 Nokia 5110 LCD 模組與開發版連接完成, 再進行程式寫作 本程式需要用到兩個函式庫 ( 曹永忠, 2016e), 關於 Adafruit_PCD8544.h, 請到網址 : uit-pcd8544-nokia-5110 或 或 進行下載, 關於 Adafruit_GFX.h, 請到網址 : aries/adafruit_gfx, 進行下載 我們, 請讀者鍵入 Sketch IDE 軟體 ( 軟體下載請到 : 編譯完成後上傳到開發版進行測

12 試 表 4 Nokia 5110 LCD 模組畫線測試程式一 Nokia 5110 LCD 模組畫線測試程式一 (NOKIA_Text_Show) /******************************************************************** * This is an example sketch for our Monochrome Nokia 5110 LCD Displays Pick one up today in the adafruit shop! > These displays use SPI to communicate, 4 or 5 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information All text above, and the splash screen must be included in any redistribution ********************************************************************* / #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_PCD8544.h> #define PIN_SCE 7 #define PIN_RESET 6 #define PIN_DC 5 #define PIN_SDIN 4 #define PIN_SCLK 3 // Software SPI (slower updates, more flexible pin options): //=== old version pin out====== // pin 7 - Serial clock out (SCLK)

13 // pin 6 - Serial data out (DIN) // pin 5 - Data/Command select (D/C) // pin 4 - LCD chip select (CS) // pin 3 - LCD reset (RST) Adafruit_PCD8544 display = Adafruit_PCD8544(PIN_SCLK, PIN_SDIN, PIN_DC, PIN_SCE, PIN_RESET); // Adafruit_PCD8544 display = Adafruit_PCD8544(SCLK, DIN, D/C, CS/SCE, RST); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 void setup() { // put your setup code here, to run once: Serial.begin(9600); display.begin(); // init done //init Nokia 5110 display // you can change the contrast around to adapt the display // for the best viewing! display.setcontrast(50); //set Contrast display.cleardisplay(); // 清除螢幕 display.display(); // show splashscreen // // draw a single line for (int16_t i=0; i<display.width(); i+=4) { display.drawline(0, 0, i, display.height()-1, BLACK); display.display(); for (int16_t i=0; i<display.height(); i+=4) { display.drawline(0, 0, display.width()-1, i, BLACK); display.display();

14 display.display(); 要的 delay(2000); // 顯示所有上面內容, 必要在所有秀字命令後, 一定 void loop() { // put your main code here, to run repeatedly: 程式下載網址 : 如下圖所示, 我們可以看到 Nokia 5110 LCD 模組資畫出許多線 ( 曹永忠, 2016a, 2016b, 2016c, 2016d; 曹永忠, 許智誠, et al., 2015a, 2015b, 2015c, 2015d, 2015e, 2015f; 曹永忠, 許碩芳, et al., 2015a, 2015b) 圖 4 Nokia 5110 LCD 模組畫線測試程式一結果畫面

15 顯示矩形幾何形狀 首先, 我們要教讀者在 Nokia 5110 LCD 模組畫出幾何圖形 : 矩形, 首先我們依上面電路組立將 Nokia 5110 LCD 模組與開發版連接完成, 再進行程式寫作 本程式需要用到兩個函式庫 ( 曹永忠, 2016e), 關於 Adafruit_PCD8544.h, 請到網址 : uit-pcd8544-nokia-5110 或 或 進行下載, 關於 Adafruit_GFX.h, 請到網址 : aries/adafruit_gfx, 進行下載 我們, 請讀者鍵入 Sketch IDE 軟體 ( 軟體下載請到 : 編譯完成後上傳到開發版進行測試 表 5 Nokia 5110 LCD 模組矩形幾何形狀測試程式一 Nokia 5110 LCD 模組矩形幾何形狀測試程式一 (NOKIA_drawGEO) /******************************************************************** * This is an example sketch for our Monochrome Nokia 5110 LCD Displays Pick one up today in the adafruit shop! > These displays use SPI to communicate, 4 or 5 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing

16 products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information All text above, and the splash screen must be included in any redistribution ********************************************************************* / #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_PCD8544.h> #define PIN_SCE 7 #define PIN_RESET 6 #define PIN_DC 5 #define PIN_SDIN 4 #define PIN_SCLK 3 // Software SPI (slower updates, more flexible pin options): //=== old version pin out====== // pin 7 - Serial clock out (SCLK) // pin 6 - Serial data out (DIN) // pin 5 - Data/Command select (D/C) // pin 4 - LCD chip select (CS) // pin 3 - LCD reset (RST) Adafruit_PCD8544 display = Adafruit_PCD8544(PIN_SCLK, PIN_SDIN, PIN_DC, PIN_SCE, PIN_RESET); // Adafruit_PCD8544 display = Adafruit_PCD8544(SCLK, DIN, D/C, CS/SCE, RST); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 void setup() { // put your setup code here, to run once:

17 Serial.begin(9600); display.begin(); // init done //init Nokia 5110 display // you can change the contrast around to adapt the display // for the best viewing! display.setcontrast(50); //set Contrast display.cleardisplay(); // 清除螢幕 display.display(); // show splashscreen // // draw a 多個矩形 for (int16_t i=0; i<display.height()/2; i+=2) { display.drawrect(i, i, display.width()-2*i, display.height()-2*i, BLACK); display.display(); display.display(); 要的 delay(2000); // 顯示所有上面內容, 必要在所有秀字命令後, 一定 void loop() { // put your main code here, to run repeatedly: 程式下載網址 : 如下圖所示, 我們可以看到 Nokia 5110 LCD 模組畫出幾何圖形 : 矩形 ( 曹永忠, 2016a, 2016b, 2016c, 2016d; 曹永忠, 許智誠, et al., 2015a, 2015b, 2015c, 2015d, 2015e, 2015f; 曹永忠, 許碩芳, et al., 2015a, 2015b)

18 圖 5 Nokia 5110 LCD 模組矩形幾何形狀測試程式一結果畫面 顯示圓形幾何形狀 首先, 我們要教讀者在 Nokia 5110 LCD 模組畫出幾何圖形 : 圓形, 首先我們依上面電路組立將 Nokia 5110 LCD 模組與開發版連接完成, 再進行程式寫作 本程式需要用到兩個函式庫 ( 曹永忠, 2016e), 關於 Adafruit_PCD8544.h, 請到網址 : uit-pcd8544-nokia-5110 或 或 進行下載, 關於 Adafruit_GFX.h, 請到網址 : aries/adafruit_gfx, 進行下載 我們, 請讀者鍵入 Sketch IDE 軟體 ( 軟體下載請到 : 編譯完成後上傳到開發版進行測

19 試 表 6 Nokia 5110 LCD 模組圓形幾何形狀測試程式一 Nokia 5110 LCD 模組圓形幾何形狀測試程式一 (NOKIA_drawGEO1) /******************************************************************** * This is an example sketch for our Monochrome Nokia 5110 LCD Displays Pick one up today in the adafruit shop! > These displays use SPI to communicate, 4 or 5 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit! Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information All text above, and the splash screen must be included in any redistribution ********************************************************************* / #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_PCD8544.h> #define PIN_SCE 7 #define PIN_RESET 6 #define PIN_DC 5 #define PIN_SDIN 4 #define PIN_SCLK 3 // Software SPI (slower updates, more flexible pin options): //=== old version pin out====== // pin 7 - Serial clock out (SCLK)

20 // pin 6 - Serial data out (DIN) // pin 5 - Data/Command select (D/C) // pin 4 - LCD chip select (CS) // pin 3 - LCD reset (RST) Adafruit_PCD8544 display = Adafruit_PCD8544(PIN_SCLK, PIN_SDIN, PIN_DC, PIN_SCE, PIN_RESET); // Adafruit_PCD8544 display = Adafruit_PCD8544(SCLK, DIN, D/C, CS/SCE, RST); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 void setup() { // put your setup code here, to run once: Serial.begin(9600); display.begin(); // init done //init Nokia 5110 display // you can change the contrast around to adapt the display // for the best viewing! display.setcontrast(50); //set Contrast display.cleardisplay(); // 清除螢幕 display.display(); // show splashscreen // // draw a 多個矩形 for (int16_t i=0; i<display.height(); i+=6) { display.drawcircle(display.width()/2, display.height()/2, i/2, BLACK); display.display(); display.display(); 要的 delay(2000); // 顯示所有上面內容, 必要在所有秀字命令後, 一定

21 void loop() { // put your main code here, to run repeatedly: 程式下載網址 : 如下圖所示, 我們可以看到 Nokia 5110 LCD 模組畫出幾何圖形 : 圓形形狀 ( 曹永忠, 2016a, 2016b, 2016c, 2016d; 曹永忠, 許智誠, et al., 2015a, 2015b, 2015c, 2015d, 2015e, 2015f; 曹永忠, 許碩芳, et al., 2015a, 2015b) 圖 6 Nokia 5110 LCD 模組圓形幾何形狀測試程式一結果畫面

22 顯示三角形幾何形狀 首先, 我們要教讀者在 Nokia 5110 LCD 模組畫出幾何圖形 : 三角形幾何形狀, 首先我們依上面電路組立將 Nokia 5110 LCD 模組與開發版連接完成, 再進行程式寫作 本程式需要用到兩個函式庫 ( 曹永忠, 2016e), 關於 Adafruit_PCD8544.h, 請到網址 : uit-pcd8544-nokia-5110 或 或 進行下載, 關於 Adafruit_GFX.h, 請到網址 : aries/adafruit_gfx, 進行下載 我們, 請讀者鍵入 Sketch IDE 軟體 ( 軟體下載請到 : 編譯完成後上傳到開發版進行測試 表 7 Nokia 5110 LCD 模組畫三角形幾何形狀測試程式一 Nokia 5110 LCD 模組畫三角形幾何形狀測試程式一 (NOKIA_drawGEO2) /******************************************************************** * This is an example sketch for our Monochrome Nokia 5110 LCD Displays Pick one up today in the adafruit shop! > These displays use SPI to communicate, 4 or 5 pins are required to interface Adafruit invests time and resources providing this open source code, please support Adafruit and open-source hardware by purchasing products from Adafruit!

23 Written by Limor Fried/Ladyada for Adafruit Industries. BSD license, check license.txt for more information All text above, and the splash screen must be included in any redistribution ********************************************************************* / #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_PCD8544.h> #define PIN_SCE 7 #define PIN_RESET 6 #define PIN_DC 5 #define PIN_SDIN 4 #define PIN_SCLK 3 // Software SPI (slower updates, more flexible pin options): //=== old version pin out====== // pin 7 - Serial clock out (SCLK) // pin 6 - Serial data out (DIN) // pin 5 - Data/Command select (D/C) // pin 4 - LCD chip select (CS) // pin 3 - LCD reset (RST) Adafruit_PCD8544 display = Adafruit_PCD8544(PIN_SCLK, PIN_SDIN, PIN_DC, PIN_SCE, PIN_RESET); // Adafruit_PCD8544 display = Adafruit_PCD8544(SCLK, DIN, D/C, CS/SCE, RST); #define NUMFLAKES 10 #define XPOS 0 #define YPOS 1 #define DELTAY 2 void setup() { // put your setup code here, to run once: Serial.begin(9600);

24 display.begin(); // init done //init Nokia 5110 display // you can change the contrast around to adapt the display // for the best viewing! display.setcontrast(50); //set Contrast display.cleardisplay(); // 清除螢幕 display.display(); // show splashscreen // // draw a 多個矩形 for (int16_t i=0; i<display.height()/2; i+=4) { // display.drawtriangle(x0,y0,x1,y1,x2,y2, 顏色 ); display.drawtriangle(display.width()/2, i, 0+i*2, display.height()-2-i, display.width()-i*2, display.height()-2-i, BLACK); display.display(); // delay(2000) ; display.display(); 要的 delay(2000); // 顯示所有上面內容, 必要在所有秀字命令後, 一定 void loop() { // put your main code here, to run repeatedly: 程式下載網址 : 如下圖所示, 我們可以看到 Nokia 5110 LCD 模組畫出幾何圖形 : 三角形幾

25 何形狀 ( 曹永忠, 2016a, 2016b, 2016c, 2016d; 曹永忠, 許智誠, et al., 2015a, 2015b, 2015c, 2015d, 2015e, 2015f; 曹永忠, 許碩芳, et al., 2015a, 2015b) 圖 7 Nokia 5110 LCD 模組畫三角形幾何形狀測試程式一結果畫面 本文為 物聯網系列 系列第三篇 : 單色圖形顯示介紹 (NOKIA 5110 LCD 開發篇 ), 主要是介紹物聯網產品開發時, 常用的單色圖形微型 LCD 顯示介面, 如何顯示資料 文字 畫出幾何圖形等在顯示螢幕上 本篇是作者開啟的一個新專欄 : 物聯網系列, 主要是透過本專欄的介紹, 讓讀者可以了解物聯網 (Internet of Thing:IOT) 更多相關的使用 開發 設計等技術, 期望在往後專欄之中, 可以實作出更多物聯網的產品或實驗, 後續筆者還會繼續發表 物聯網系列 系列的文章, 在未來我們可以創造出更優質, 更具未來性的物聯網 (Internet of Thing:IOT) 產品開發相關技術 敬請期待更多的文章 筆者介紹曹永忠 (Yung-Chung Tsao): 目前為自由作家, 專注於軟體工程 軟體開發與

26 設計計 物件導向向程式設計計 物聯網系系統開發 Arduino 開發 嵌入式式系統開發, 商品品攝影及人人像攝影 長長期投入資資訊系統設計計與開發 企業應用系系統開發 軟體工工程 新產產品開發管理理 商品及及人像攝影等等領域, 並持續發表作作品及相關關專業著著作 com,line ID:dr. brucetsaoo Arduino 部落格 : 臉書書社群 (Arduino.Taiwan): 活動動官網 : Youtube: youtube.com/channel/uccyg2yy_u0m1aotca4hrrgq 程式式下載網址 : 參考考文獻 : 曹永永忠. (2016a). 物聯網系系列 : 彩色色顯示介紹 (2.4~3.2 TFT 基本篇篇 ) 智慧家庭. Retrieved from 曹永永忠. (2016b). 物聯網系列 : 彩色色顯示介紹 (2.4~3.2 TFT 進階篇篇 ). 智慧家庭. Retrieved from 曹永永忠. (2016c). 物聯網系系列 : 彩色色顯示介紹 (OLED LCD 篇 ). 智智慧家庭. Retrieved from tw/project/view/1102 曹永永忠. (2016d). 物聯網系列 : 單色色圖形顯示介介紹 (NOKIA 5110 LCD 基本篇 ).) 智慧家庭. Retrieved from 曹永永忠. (2016e). 智慧家庭 : 如何安安裝各類感測器的函式式庫. 智慧家家庭. Retrieved from tw/project/view/651 曹永永忠, 許智誠, & 蔡英英德. (2015a). Arduino 程式教學 ( 入門篇 ):Arduino Programming (Basic Skills & Tricks) ( 初版 ed.). 台湾 彰化 : 渥玛数位有有限公司. 曹永永忠, 許智誠, & 蔡英英德. (2015b). Arduino 程式教學 ( 常用模組篇篇 ):Arduino Programming (37 Sensor Modules) ( 初版 ed.). 台湾湾 彰化 : 渥渥玛数位有有限公司. 曹永永忠, 許智誠, & 蔡英英德. (2015c). Arduino 程式教學 ( 無線通訊篇篇 ):Arduino Programming (Wireless Communication) ( 初版 ed.) ). 台湾 彰彰化 : 渥瑪數數位有限公公司. 曹永永忠, 許智誠, & 蔡英英德. (2015d). Arduino 编程教学 ( 无线通讯篇篇 ):Arduino

27 Programming (Wireless Communication) ( 初版 ed.). 台湾 彰化 : 渥瑪數位有限公司. 曹永忠, 許智誠, & 蔡英德. (2015e). Arduino 编程教学 ( 常用模块篇 ):Arduino Programming (37 Sensor Modules) ( 初版 ed.). 台湾 彰化 : 渥玛数位有限公司. 曹永忠, 許智誠, & 蔡英德. (2015f). Arduino 編程教学 ( 入门篇 ):Arduino Programming (Basic Skills & Tricks) ( 初版 ed.). 台湾 彰化 : 渥玛数位有限公司. 曹永忠, 許碩芳, 許智誠, & 蔡英德. (2015a). Arduino 程式教學 (RFID 模組篇 ):Arduino Programming (RFID Sensors Kit) ( 初版 ed.). 台湾 彰化 : 渥瑪數位有限公司. 曹永忠, 許碩芳, 許智誠, & 蔡英德. (2015b). Arduino 編程教学 (RFID 模块篇 ):Arduino Programming (RFID Sensors Kit) ( 初版 ed.). 台湾 彰化 : 渥瑪數位有限公司.

Microsoft Word 一月第一篇V3

Microsoft Word 一月第一篇V3 智慧家庭 :ARDUINO 永遠的時間 靈魂 -RTC 時鐘模組 2016 年 1 月 15 日 一月, 2016 文 \ 曹永忠 前言 智慧家庭的核心就是人, 而人的最重視的事是時間, 所以如何讓創客神器 Arduino 來顯示出時間, 並且時間是連續 不可磨滅的一件事, 但是創客神器 Arduino 開發版的確缺少這個非常重要的核心功能, 雖然創客神器 Arduino 可以自己計時, 但是關機或重開機後,

More information

Microsoft Word 十一月第二篇V3

Microsoft Word 十一月第二篇V3 物聯網系列 : 替 UP BOARD 開發 板加上眼睛 2016 年 11 月 24 日十一月, 2016 文 \ 曹永忠 本篇為 物聯網系列 系列電腦音效子系列第六篇 : 替 UP BOARD 開發版加上眼睛, 主要告訴讀者, 台灣自行開發 製造 行銷到全世界的物聯網神兵利器 -UP BOARD 開發版, 如何安裝 WebCamera, 讓 UP BOARD 開發版可以開始看看這個世界 至於 UP

More information

Microsoft Word WIFI第一步V3

Microsoft Word WIFI第一步V3 智慧家庭 : 如何使用 AMEBA 的 WIFI 模組連上網際網路 2016 年 3 月 31 日 三月, 2016 文 \ 曹永忠 前言 智慧家庭的核心技術就是網際網路, 而連上網際網路最簡單的解 決方案無線網路 所以如何讓物聯網神器 Ameba 來連上網際網路, 就 是一件最重要的事, 所幸物聯網神器 Ameba 開發版本身就內含 Wifi 無 線網路模組, 所以連接上網際網路是一件非常簡單的事,

More information

Microsoft Word 二月第一篇V4

Microsoft Word 二月第一篇V4 智慧家庭 :ARDUINO 物聯網的時 間靈魂 - 網路校時 2016 年 3 月 3 日 二月, 2016 文 \ 曹永忠 前文提要 前文中我們介紹 RTC 時鐘模組, 該模組具備時間功能, 並且為了 斷電時依然可以保留時間, 補足了 Arduino 開發板並沒有內置時鐘 (Internal Clock) 的功能, 正好可以使用該時間模組 如下圖所示, 可以見到 Tiny RTC I2C 時鐘模組的外觀圖,

More information

Microsoft Word 八月第一篇V3

Microsoft Word 八月第一篇V3 人類的未來 - 智慧家庭 如果一切電器都可以用手機操 控那該有多好 2015 年 8 月 14 日 文 \ 曹永忠 許智誠 蔡英德 行動時代的來臨, 我們隨身不了手機 平板, 炎炎夏天, 家居生活少不了電風扇讓我們涼爽與舒適, 但是這麼熱的天氣, 又要起身去開 關電風扇是一件難過的事 如果我們能夠用創客神器來 Arduino, 加上我們隨身智慧型手機, 隨時來搖控開 關我們家中的電器, 那該有多好

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

Microsoft Word 七月第二篇V3

Microsoft Word 七月第二篇V3 人類的未來 - 物聯網 透過網路監控居家亮度 2015 年 8 月 7 日 七月, 2015 文 \ 曹永忠 許智誠 蔡英德 我們在家居生活中, 亮度是保護我們眼睛最重要的靈藥, 家中許 多高齡長者 幼童等在房間裡面, 如果亮度不足, 不但沒有安全感, 對視力的保健, 更是一大殺手 如果我們如果在家裡看到這樣的情 形, 當然可以馬上調整光線, 但是如果我們在外面上班, 就不太容易 查覺到這樣隱藏的問題

More information

Microsoft Word 十月第一篇V5

Microsoft Word 十月第一篇V5 物聯網系列 : 讓開發板發出音效 (WT588D-U 語音模組基本篇 ) 2016 年 10 月 15 日十月, 2016 文 \ 曹永忠 隨著數位化技術的推進, 電子數位應用產品為人類生活帶來極佳的便利性與樂趣, 而越來越多的數位產品, 因應高齡使用者與弱勢族權, 語音提示顯示內容的需求越來越迫切, 因此, 語音模組已成為產業的關注焦點, 全球相關廠商也投注資源開發語音模組之新技術 新應用, 並為提昇人類便利使用而努力前文

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

<4D F736F F D20B942A5CE E4F20A441A4D3BAF4B8F4C258A552AA4FABD8A5DFA5CEA4E1BADDA475A8E3B57BA6A128A55AA55829>

<4D F736F F D20B942A5CE E4F20A441A4D3BAF4B8F4C258A552AA4FABD8A5DFA5CEA4E1BADDA475A8E3B57BA6A128A55AA55829> 物聯網網系統開開發 運運用 ARDUIN NO 乙太太網路路擴充板建立立用戶端端工具程程式 曹永忠發表於 2017 年 6 月 22 日 15:06 http://www.techbang.com/posts/52039 internet system development established cl ient tools using arduino ethernet add on board

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

ICD ICD ICD ICD ICD

ICD ICD ICD ICD ICD MPLAB ICD2 MPLAB ICD2 PIC MPLAB-IDE V6.0 ICD2 usb PC RS232 MPLAB IDE PC PC 2.0 5.5V LED EEDATA MPLAB ICD2 Microchip MPLAB-IDE v6.0 Windows 95/98 Windows NT Windows 2000 www.elc-mcu.com 1 ICD2...4 1.1 ICD2...4

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

- June 意 味 上 梁 不 正 下 梁 歪 地 动 辄 失 去 理 性 而 对 部 下 狂 吠 给 我 滚, 毛 也 曾 因 被 吵 醒 而 对 哨 兵 猛 吼 老 子 揍 你! 并 罚 站 254) 和 大 红 灯 笼 高 高 挂 成 叠 影 的 一 是 太 太 被 老 爷 惯 坏 而 任

- June 意 味 上 梁 不 正 下 梁 歪 地 动 辄 失 去 理 性 而 对 部 下 狂 吠 给 我 滚, 毛 也 曾 因 被 吵 醒 而 对 哨 兵 猛 吼 老 子 揍 你! 并 罚 站 254) 和 大 红 灯 笼 高 高 挂 成 叠 影 的 一 是 太 太 被 老 爷 惯 坏 而 任 从 称 谓 魔 杖 管 窥 中 国 政 要 心 迹 及 中 国 社 会 规 则 ( 中 ) 晚 年 周 恩 来 毛 泽 东 私 人 医 生 回 忆 录 毛 家 湾 纪 实 国 家 的 囚 徒 大 红 灯 笼 高 高 挂 等 禁 域 深 宫 话 语 联 析 夏 刚 君 子 豹 变 和 小 人 革 面 : 主 客 伸 缩 高 下 反 转 的 炎 凉 翻 覆 诸 态 据 传 毛 将 见 上 帝 前 向 毛

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

an153f

an153f 153 2016 1 Linduino Michael Jones (PSM) LTpowerPlay (BMC) PSM PSM PMBus PMBus SMBus SMBus I2C PSM BMC Linduino (API) PSM Linduino PSM BMC BMC Robust PMBus System Software for the LTC3880) I 2 C / SMBus

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

ansoft_setup21.doc

ansoft_setup21.doc Cadence Cadence Cadence 1000 (1) (2) CIC (3).. CIC Cadence (a) CIC license license server license CIC license CIC license (b) 2000 Cadence license 92 1 1 license server CIC 92 1 1 Cadence license licenser

More information

<4D6963726F736F667420576F7264202D20D4D3D6BECEC4B8E5C4A3B0E52E646F63>

<4D6963726F736F667420576F7264202D20D4D3D6BECEC4B8E5C4A3B0E52E646F63> 1/8 文 / 杜 洋 自 从 我 的 爱 上 单 片 机 一 书 问 世, 爱 上 一 词 就 在 电 子 制 作 的 圈 子 里 小 火 了 一 把 随 后 又 出 现 了 爱 上 制 作 爱 上 Arduino, 还 有 一 大 堆 类 似 名 字 的 出 版 物 虽 然 每 一 本 的 内 容 都 很 精 彩, 但 总 这 么 爱 来 爱 去 的, 是 不 是 有 点 审 美 疲 劳 呢?

More information

untitled

untitled 說 E-mail: sales@liteputer.com.tw 錄 : 識 Lite-Puter... 說... CP-2B / CP-3B 3-1 CP-2B...6 3-2 CP-3B...7 CP-3B 說 4-1 路 (Channel) 說 路 亮度 連 數 路 亮度 路 亮度 路 亮度 4-2 (Scene) 說 路 亮度 行 行 行 4-3 說 不 行 路 亮度 4-4 (TIME)

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

<4D F736F F D20A670A6F3A8CFA5CE4C696E6B ABD8A5DFB4BCBC7AB7C5ABD7BACAB1B1A5ADA578A15DA457A15E28A55AA55829>

<4D F736F F D20A670A6F3A8CFA5CE4C696E6B ABD8A5DFB4BCBC7AB7C5ABD7BACAB1B1A5ADA578A15DA457A15E28A55AA55829> Project 如何使用 Linkit 7697 建立智慧溫度 監控平台 ( 上 ) http://makerpro.cc/2017/07/make a smart temperature monitor platform by linkit7 697 part one/ Posted on 七月 3, 2017 作者 : 曹建國 物聯網興起之後, 聯發科技創意實驗室 (MediaTek Labs)

More information

68369 (ppp quickstart guide)

68369 (ppp quickstart guide) Printed in USA 04/02 P/N 68369 rev. B PresencePLUS Pro PC PresencePLUS Pro PresencePLUS Pro CD Pass/Fails page 2 1 1. C-PPCAM 2. PPC.. PPCAMPPCTL 3. DB9D.. STPX.. STP.. 01 Trigger Ready Power 02 03 TRIGGER

More information

中文手册

中文手册 PCC-3428 PC/104 1. PCC-3428 1.1 PCC-3428 90mm 96mm ST CPU STPC Atlas Atlas CPU 486 DX/DX2 CPU DX2 133MHz Atlas 2D LCD/CRT 100MHz SDRAM 64MBytes PCC-3428 10/100Mbps DOC EIDE USB PC/104 ST STPC Atlas STPC

More information

600 500 400 300 200 100 0 2007 2008 2009 2010 2014 2015 503 2005 2006 2007 2008 2009 2010 2011(e) 2015(f) ( ) 200 260 340 400 310 450 503 900 4,000 5,000 6,000 7,000 7,000 8,000 9,000 20,000 4 PMC was

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Your Field Guide to More Effective Global Video Conferencing As a global expert in video conferencing, and a geographically dispersed company that uses video conferencing in virtually every aspect of its

More information

USB解决方案.ppt

USB解决方案.ppt USB USB? RS232 USB USB HID U modem ADSL cable modem IrDA Silabs USB CP210x USB UART USB RS-232 USB MCU 15 USB 12 FLASH MCU 3 USB MCU USB MCU C8051F32x 10 ADC 1.5%, Vref CPU 25MIPS 8051 16KB Flash -AMUX

More information

83.indd

83.indd 2011 年 8 月 随 着 LED 的 大 量 被 采 用, 有 越 来 越 多 的 技 术 如 动 态 背 光 控 制 技 术 超 薄 技 术 散 热 技 术 被 应 用 到 背 光 模 组 之 中, 使 背 光 模 组 产 业 逐 渐 改 变 了 以 往 劳 动 密 集 型 的 特 点, 具 备 了 越 来 越 多 的 技 术 附 加 价 值, 在 产 业 链 中 的 作 用 也 越 来 越

More information

开眼看世界

开眼看世界 感 想 1: 开 眼 看 世 界 二 〇 一 四 欧 洲 旅 行 感 悟 时 隔 一 年, 我 又 一 次 出 国 虽 只 隔 一 年, 我 却 是 怀 着 两 种 心 情 去 旅 行, 人 都 会 在 看 似 无 情 却 有 情 的 岁 月 里 成 长, 二 〇 一 四, 我 感 悟 颇 多 去 年 去 美 国, 我 还 是 一 个 少 不 更 事 的 顽 童, 但 今 年 去 欧 洲, 我 认

More information

1692_UG.book

1692_UG.book 1692 IP 1.0 1725-15649-022 16-603398ZH-CN 1 2009 7 2009 Avaya Inc. Avaya Inc. Avaya IP GSM Avaya Avaya Inc. / Avaya Avaya Avaya Inc. Avaya Avaya Inc. Avaya Avaya http://www.avaya.com/support Avaya +1-800-643-2353

More information

編 者 的 話 理 財 的 概 念 要 從 小 培 養 還 記 得 小 時 候, 一 個 香 腸 包 賣 多 少 錢 嗎? 3 元? 4 元? 5 元? 現 在 又 需 要 幾 多 錢 才 可 買 一 個 呢? 6 元? 8 元? 10 元? 十 年 後 又 賣 多 少 錢?( 大 概 20 元 有

編 者 的 話 理 財 的 概 念 要 從 小 培 養 還 記 得 小 時 候, 一 個 香 腸 包 賣 多 少 錢 嗎? 3 元? 4 元? 5 元? 現 在 又 需 要 幾 多 錢 才 可 買 一 個 呢? 6 元? 8 元? 10 元? 十 年 後 又 賣 多 少 錢?( 大 概 20 元 有 34 第 期 二 O 一 三 年 六 月 專 題 : 培 養 孩 子 的 財 商 活 動 消 息 : 義 工 上 海 交 流 之 旅 義 工 土 風 舞 美 國 交 流 記 主 題 : 理 財 編 者 的 話 理 財 的 概 念 要 從 小 培 養 還 記 得 小 時 候, 一 個 香 腸 包 賣 多 少 錢 嗎? 3 元? 4 元? 5 元? 現 在 又 需 要 幾 多 錢 才 可 買 一 個 呢?

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

More information

Microsoft Word - 实验34.doc

Microsoft Word - 实验34.doc 实 验 三 : 软 件 产 品 概 念 的 表 达 - 全 自 动 洗 衣 机 的 分 析 ( 请 将 实 验 结 果 发 给 你 的 TA 如 果 你 对 产 品 创 意 有 信 心, 请 同 时 发 一 份 给 指 导 老 师 ) 课 程 : 软 件 工 程 专 业 导 论 学 号 : 姓 名 : 实 验 目 的 : 1: 通 过 网 络, 研 究 全 自 动 洗 衣 机 产 品 2: 掌 握

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

More information

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation

Applied Biosystems StepOne™ Real-Time PCR System Quick Reference Card for Installation Applied Biosystems StepOne Real-Time PCR System StepOne 系统安装 快速参考卡 本文档提供在并置布局中安装 StepOne 系统的简明指导 有关 完整步骤或独立安装步骤 请参阅 Applied Biosystems StepOne Real-Time PCR System 安装 联网和维护指南 目录 1. 安装准备........................................

More information

Microsoft Word - 办事指南汇总20160401(140x203mm).doc

Microsoft Word - 办事指南汇总20160401(140x203mm).doc 厦 门 人 才 政 策 新 十 八 条 及 相 关 办 事 指 南 汇 编 中 共 厦 门 市 委 人 才 工 作 领 导 小 组 办 公 室 印 2016 年 3 月 目 录 1 中 共 厦 门 市 委 厦 门 市 人 民 政 府 关 于 印 发 关 于 进 一 步 激 励 人 才 创 新 创 业 的 若 干 措 施 的 通 知...() 2 国 家 千 人 计 划 省 百 人 计 划 市 双

More information

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode]

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode] AWOL Windows - Tips & Tricks Resolution, color depth & refresh rate Background color Service packs Disk cleanup (cleanmgr) Disk defragmentation AWOL Windows Resolution, Color Depth & Refresh Rate The main

More information

WFC40810

WFC40810 9000086873 (PD 85 05 10) Operating and Installation Instructions Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

# 0aa00010_5_* 1996 10 21 1996 10

More information

JLX

JLX PRODUCT:LCD MODULE. Model No.: JLX177-006 Product Type: 1.77 inch QVGA TFT Modoule. 产品规格书 晶联讯研发研发部 : Written By Checked By Approved By 客户名称 : 结构电子核准 地址 : 深圳市宝安区西乡宝安大道东华工业区 A3 栋 6 楼电话 :0755-29784961 Http://www.jlxlcd.cn

More information

untitled

untitled EDM12864-GR 1 24 1. ----------------------------------------------------3 2. ----------------------------------------------------3 3. ----------------------------------------------------3 4. -------------------------------------------------------6

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

CX_300 Manual.book

CX_300 Manual.book PC PC 45~80 80~320 260 LCD 1 ...1...3 /...3...3...4 /...4...5...5...6...6...7 SD...8...9 SD...9...10...12...16...18...19 DSC...20...23...23 Mini USB...23...24...25...25...26...27...28 2 / 1. 2. / LCD 3.

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

More information

LK110_ck

LK110_ck Ck 电子琴 LK110CK1A Ck-1 1. 2. 1. 2. 3. (+) ( ) Ck-2 1. 2. 3. * 1. 2. 3. Ck-3 Ck-4 LCD LCD LCD LCD LCD LCD 15 * * / MIDI Ck-5 100 50 100 100 100 1 2 MIDI MIDI Ck-6 ... Ck-1... Ck-6... Ck-8... Ck-9... Ck-10...

More information

Microsoft Word - LP doc

Microsoft Word - LP doc 第七組顯示卡規範書及答標單 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 : GeForce 8400 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對 應到主要規格之項次 ) GeForce 1-1-2. 繪圖介面 : 支援 PCI Express 介面 16X( 含 ) 以上高速繪圖晶片 8400 低階顯 1-1-3. 提供 512MB DDR2 SDRAM(

More information

!"#!$ %!$"" %%$&&''!(!)!*+,,!%*& -./ *##)' * %$" ',!*+/!*+ / - 0,1 #$*#2 #$*#2'' *($#3 *($#3'' -. 45,67!&$#6)*$ , ' 189

!#!$ %!$ %%$&&''!(!)!*+,,!%*& -./ *##)' * %$ ',!*+/!*+ / - 0,1 #$*#2 #$*#2'' *($#3 *($#3'' -. 45,67!&$#6)*$ , ' 189 !"#!$ %!$""%%$&&''!(!)!*+,,!%*& -./ *##)' * %$" ',!*+/!*+ / - 0,1 #$*#2#$*#2'' *($#3*($#3'' -. 45,67!&$#6)*$+689. 0, ' 189 (# 9(##(# '!# ( $,F, A(#./F/ #-'-* 2>F> *'-* $3F>>/ "96((* ( (" 9 96 4>/ E> #-'-*

More information

wedding calendar

wedding calendar W TAIPEI PRESENTS YOUR WEDDING YOUR WAY W SELECTED WEDDING DAY W JANUARY FEBRUARY MARCH APRIL 4 5 6 4 5 6 7 7 8 9 10 11 12 13 8 9 10 11 12 13 14 14 15 16 17 18 19 20 15 16 17 18 19 20 21 21 22 23 24 25

More information

untitled

untitled \ \ \ DOP11B 06/2011 16929837 / ZH SEW-EURODRIVE Driving the world 1 5 1.1 5 1.2 5 1.3 6 1.4 6 1.5 6 1.6 6 1.7 6 2 7 2.1 7 2.2 7 2.3 8 2.4 8 2.5 8 2.6 9 2.7 / 11 2.8 11 2.9 11 2.10 11 2.11 12 3 (DOP11B-10

More information

WVT new

WVT new Operating and Installation Instructions 5120 004601 (PD 84 09 25) Please read this specification carefully before you use the product. Any failure and losses caused by ignoring the above mentioned items

More information

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8

TPM BIOS Infineon TPM Smart TPM Infineon TPM Smart TPM TPM Smart TPM TPM Advanced Mode...8 Smart TPM Rev. 1001 Smart TPM Ultra TPM Smart TPM TPM...3 1. BIOS... 3 2. Infineon TPM Smart TPM... 4 2.1. Infineon TPM...4 2.2. Smart TPM...4 3. TPM... 5 3.1. Smart TPM TPM...5 3.2. Advanced Mode...8

More information

桌上型個人電腦採購規格說明表

桌上型個人電腦採購規格說明表 第三組顯示卡規範書 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 :NVIDIA GeForce 8400 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對 NVIDIA 應到主要規格之項次 ) GeForce 1-1-2. 繪圖介面 : 支援 PCI Express 介面 16X( 含 ) 以上高速繪圖晶片 8400 低階顯 1-1-3. 提供 256MB

More information

目录

目录 ALTERA_CPLD... 3 11SY_03091... 3 12SY_03091...4....5 21 5 22...8 23..10 24..12 25..13..17 3 1EPM7128SLC.......17 3 2EPM7032SLC.......18 33HT46R47......19..20 41..20 42. 43..26..27 5151DEMO I/O...27 52A/D89C51...28

More information

51 C 51 isp 10 C PCB C C C C KEIL

51 C 51 isp 10   C   PCB C C C C KEIL http://wwwispdowncom 51 C " + + " 51 AT89S51 In-System-Programming ISP 10 io 244 CPLD ATMEL PIC CPLD/FPGA ARM9 ISP http://wwwispdowncom/showoneproductasp?productid=15 51 C C C C C ispdown http://wwwispdowncom

More information

untitled

untitled EDM12832-08 : 25-1 : 116600 : (0411)7612956 7632020 7631122 : (0411)7612958 Model No.: Editor: LCD 1. ----------------------------------------------------3 2. ----------------------------------------------------3

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

Microsoft Word - Book9

Microsoft Word - Book9 葬 書 ( 下 ) 佈 陣 十 方 成 立 指 揮 中 心 層 巒 疊 障 千 山 翠 微, 紓 回 連 綿 的 重 山 復 重 山, 侍 朝 衛 迎, 前 後 有 序, 巋 巘 隱 逸 著 一 片 風 水 寶 地, 牛 臥 馬 馳, 鸞 飛 鳳 舞, 滕 蛇 委 蛇, 縈 藟 纏 繞 在 葺 襲 的 斷 續 峰 巒 之 間! 離 正 午 十 二 時 整 還 有 半 個 鐘 頭, 接 近 天 頂 的

More information

電腦設備LP 第七組顯示卡規範書

電腦設備LP 第七組顯示卡規範書 第七組顯示卡規範書 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 : GeForce 8400 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對 應到主要規格之項次 ) GeForce 1-1-2. 繪圖介面 : 支援 PCI Express 介面 16X( 含 ) 以上高速繪圖晶片 8400 低階顯 1-1-3. 提供 512MB DDR2 SDRAM(

More information

2 12

2 12 SHENZHEN BRILLIANT CRYSTAL TECHNOLOGIC CO.,LTD. The specification for the following models Graphic LCM serial communication control board CB001 PROPOSED BY APPROVED Design Approved TEL:+86-755-29995238

More information

:5-6

:5-6 License Agreement for Bible Texts These Scriptures: May not be altered or modified in any form. They must remain in their original context. May not be sold or offered for sale in any form. May not be used

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11

Edge-Triggered Rising Edge-Triggered ( Falling Edge-Triggered ( Unit 11 Latches and Flip-Flops 3 Timing for D Flip-Flop (Falling-Edge Trigger) Unit 11 Latches and Flip-Flops 11.1 Introduction 11.2 Set-Reset Latch 11.3 Gated D Latch 11.4 Edge-Triggered D Flip-Flop 11.5 S-R Flip-Flop 11.6 J-K Flip-Flop 11.7 T Flip-Flop 11.8 Flip-Flops with additional Inputs

More information

!!

!! !! Noise Suppression by EMIFILr Application Guide Application Manual Cat.No.C35C !! 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 10 YYYYYYYYYYYYYYYYYYYYYY........................ YYYYYYYYYYYYYYYYYYYY........................

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

PCM-3386用户手册.doc

PCM-3386用户手册.doc PCM-3386 BBPC-4x86 10/100M PC/104 (Lanry technology Co. Ltd. Zhuhai) 38 1012836 (Address: Room 1012,Linhai Building,No. 38,west of Shihua Road,Zhuhai City,Guangdong Province,China) (post code)519015 (phone)0756-3366659

More information

<B2C4A451A454A9A1A578A55FA4E5BEC7BCFAA740AB7EB6B02DA5FEA4E52E706466>

<B2C4A451A454A9A1A578A55FA4E5BEC7BCFAA740AB7EB6B02DA5FEA4E52E706466> 220 Blue John 221 Ladies and gentlemen, it s show time 222 Fuck Transposition 223 pub 224 pub 225 pub 226 fuck up Fuck up Fuck up fuck up I am the world FUCK UP UP FUCK UP FUCK UP 227 cheer up fuck up

More information

何 日 生 : 西 方 新 聞 媒 體 強 調 價 值 中 立, 這 是 存 在 幾 個 迷 思 的, 首 先 是 強 調 例 外, 例 如 人 咬 狗 才 是 新 聞 ; 其 次 是 懷 疑 和 批 判, 正 如 同 西 方 常 說 的, If your mother says she loves

何 日 生 : 西 方 新 聞 媒 體 強 調 價 值 中 立, 這 是 存 在 幾 個 迷 思 的, 首 先 是 強 調 例 外, 例 如 人 咬 狗 才 是 新 聞 ; 其 次 是 懷 疑 和 批 判, 正 如 同 西 方 常 說 的, If your mother says she loves 慈 濟 大 愛 台 10 年 耕 耘 建 構 式 新 聞 研 發 部 資 深 研 究 員 何 國 華 2016 年 2 月 數 位 時 代 的 媒 體 環 境 大 幅 改 變, 新 聞 機 構 由 單 一 新 聞 媒 體 (News Media), 轉 型 成 為 新 聞 品 牌 (News Brand), 以 及 公 民 新 聞 衍 生 的 多 層 次 新 聞 (Layered Journalism)

More information

電腦設備LP _第七組顯示卡規範書

電腦設備LP _第七組顯示卡規範書 第七組顯示卡規範書 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 : GeForce 210 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對 GeForce 1-1-2. 繪圖介面 : 支援 PCI Express 2.0( 含 ) 以上高速繪圖晶片 210 低階顯 1-1-3. 提供 512MB DDR2 SDRAM( 含 ) 以上顯示記憶體, 具 2560

More information

桌上型個人電腦採購規格說明表

桌上型個人電腦採購規格說明表 第三組顯示卡規範書 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 :NVIDIA GeForce 6200 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對應低階顯示卡到主要規格之項次 ) ( 備註 : 對應 1-1-2. 繪圖介面 : 支援 AGP 介面 8X( 含 ) 以上高速繪圖晶片項次為第 1 1-1-3. 提供 128MB 64 位元 DDR SDRAM(

More information

恩 典 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动 所 需 材 料 1 欢 迎 持 续 在 门 口 欢 迎 学 生, 聆 听 他 们 分 享 本 周 开 心 或 烦 恼 的 事 预 备 活 动 <10 分 钟 A 猜 猜 是 谁 B 上 帝 的 礼 物 无 孩 子 们 的 儿 时

恩 典 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动 所 需 材 料 1 欢 迎 持 续 在 门 口 欢 迎 学 生, 聆 听 他 们 分 享 本 周 开 心 或 烦 恼 的 事 预 备 活 动 <10 分 钟 A 猜 猜 是 谁 B 上 帝 的 礼 物 无 孩 子 们 的 儿 时 第 十 一 课 最 好 的 礼 物 经 文 路 2:1-17; 历 代 愿 望 第 四 章 存 心 节 上 帝 爱 世 人, 甚 至 将 祂 的 独 生 子 赐 给 他 们, 叫 一 切 信 祂 的, 不 至 灭 亡, 反 得 永 生 ( 约 3:16) 教 学 目 标 孩 子 们 可 以 知 道 : 耶 稣 是 上 帝 恩 典 的 礼 物, 祂 给 我 们 带 来 盼 望 和 喜 乐 感 受 :

More information

团 契 就 体 力 来 说, 参 孙 乃 是 地 上 极 强 壮 的 人 ; 但 在 自 制 忠 贞 和 坚 稳 上, 他 却 是 人 间 最 软 弱 的 了 先 祖 与 先 知 第 571-573 页 教 室 布 置 见 第 一 课 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动

团 契 就 体 力 来 说, 参 孙 乃 是 地 上 极 强 壮 的 人 ; 但 在 自 制 忠 贞 和 坚 稳 上, 他 却 是 人 间 最 软 弱 的 了 先 祖 与 先 知 第 571-573 页 教 室 布 置 见 第 一 课 课 堂 教 学 概 览 课 堂 环 节 持 续 时 间 活 动 第 三 课 外 强 中 干 经 文 士 16 先 祖 与 先 知 第 564-573 页 存 心 节 上 帝 啊, 求 你 为 我 造 清 洁 的 心 ( 诗 51:10) 教 学 目 标 孩 子 们 可 以 知 道 : 我 们 的 言 行 举 止 都 影 响 着 周 围 的 人 感 受 : 当 我 们 的 言 行 困 扰 别 人 时 要 感 到 难 过 回 应 : 要 知 道 且 接 受, 当 我

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win

Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Microsoft Win Serial ATA ( Nvidia nforce430)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( Nvidia nforce430)

More information

12232A LED LED LED EL EL CCFL EL CCF

12232A LED LED LED EL EL CCFL EL CCF 12232A 0 50-20 +70-30 +85 LED LED LED EL EL CCFL EL CCF 122 x 32 1/32Duty 1/5Bias 6:00 STN( ), EL LED EL/100VAC 400HZ LED/4.2VDC 1 / VDD-VSS 0 6.5 V Ta=25 LCD VDD-V0 0 12.0 V V1 0 VDD V VDD-VSS - 4.75

More information

(陈其工、凌有铸)安徽省高等学校质量工程项目进展报告 自动化专业教学团队.doc

(陈其工、凌有铸)安徽省高等学校质量工程项目进展报告  自动化专业教学团队.doc 附 件 2: 项 目 类 别 : 教 学 团 队 安 徽 省 高 等 学 校 质 量 工 程 项 目 进 展 报 告 项 目 名 称 : 自 动 化 专 业 教 学 团 队 项 目 负 责 人 : 陈 其 工 凌 有 铸 联 系 方 式 : 0553-2871262 所 在 单 位 : 安 徽 工 程 大 学 立 项 时 间 : 2010 年 11 月 9 日 填 表 时 间 : 2012 年 8

More information

9 什 么 是 竞 争 与 冒 险 现 象? 怎 样 判 断? 如 何 消 除?( 汉 王 笔 试 ) 在 组 合 逻 辑 中, 由 于 门 的 输 入 信 号 通 路 中 经 过 了 不 同 的 延 时, 导 致 到 达 该 门 的 时 间 不 一 致 叫 竞 争 产 生 毛 刺 叫 冒 险 如

9 什 么 是 竞 争 与 冒 险 现 象? 怎 样 判 断? 如 何 消 除?( 汉 王 笔 试 ) 在 组 合 逻 辑 中, 由 于 门 的 输 入 信 号 通 路 中 经 过 了 不 同 的 延 时, 导 致 到 达 该 门 的 时 间 不 一 致 叫 竞 争 产 生 毛 刺 叫 冒 险 如 FPGA 工 程 师 面 试 试 题 一 1 同 步 电 路 和 异 步 电 路 的 区 别 是 什 么?( 仕 兰 微 电 子 ) 2 什 么 是 同 步 逻 辑 和 异 步 逻 辑?( 汉 王 笔 试 ) 同 步 逻 辑 是 时 钟 之 间 有 固 定 的 因 果 关 系 异 步 逻 辑 是 各 时 钟 之 间 没 有 固 定 的 因 果 关 系 3 什 么 是 " 线 与 " 逻 辑, 要 实

More information

128 ( ) ( ) [ 1 ] [2] [3] (1) (2) (3) [1] [2] [3] 10 2 ( ) (1997.6) ( ) 64

128 ( ) ( ) [ 1 ] [2] [3] (1) (2) (3) [1] [2] [3] 10 2 ( ) (1997.6) ( ) 64 BIBLID 1026-5279 (2005) 94:2 p. 127-154 (2005.12) 127 Keywords Digital Library High School Library Library Website Open Source E-mail frank@hchs.hc.edu.tw 128 (2005.12) ( ) 6 0 68 [ 1 ] [2] [3] (1) (2)

More information

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro

Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A (6) Micro Serial ATA ( nvidia nforce4 Ultra/SLI)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 9 (5) S A T A... 11 (6) Microsoft Windows 2000... 14 Ác Åé å Serial ATA ( nvidia

More information

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

More information

<4D F736F F D20A7EBBCD0B6B7AABEAAFEA5F3322D3935A67EB2C432A6B8B2C433B2D5C5E3A5DCA564B357BD64AED12E646F63>

<4D F736F F D20A7EBBCD0B6B7AABEAAFEA5F3322D3935A67EB2C432A6B8B2C433B2D5C5E3A5DCA564B357BD64AED12E646F63> 第三組顯示卡規範書 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 :NVIDIA GeForce 6600 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對應低階顯示卡到主要規格之項次 ) ( 備註 : 對應 1-1-2. 繪圖介面 : 支援 AGP 介面 8X( 含 ) 以上高速繪圖晶片項次為第 1 1-1-3. 提供 128MB 64 位元 DDR SDRAM(

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

桌上型個人電腦採購規格說明表

桌上型個人電腦採購規格說明表 第三組顯示卡規範書 1. Nvidia 繪圖晶片 1-1. 1-1-1. 繪圖晶片 :NVIDIA GeForce 7600 系列 ( 含 ) 以上 ( 請註明採用商品之廠牌及型號, 並於型錄標示對低階顯示卡應到主要規格之項次 ) ( 備註 : 對應 1-1-2. 繪圖介面 : 支援 AGP 介面 8X( 含 ) 以上高速繪圖晶片項次為第 1 1-1-3. 提供 128MB 64 位元 DDR SDRAM(

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

SHIMPO_表1-表4

SHIMPO_表1-表4 For servo motor ABLEREDUCER SSeries Coaxial shaft series Features S series Standard backlash is 3 arc-min, ideal for precision control. High rigidity & high torque were achived by uncaged needle roller

More information