【Qt】qtimagefilters


Image Filters http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Utilities/qtimagefilters
image 

裡面內附 example 提供研究。

【Qt】serial port (tbd)


【安裝】

  1. 首先下載QextSerialPort 並編譯。
    image
  2. build目路底下會產生出兩個檔案
    image
    1. qextserialportd.dll 放到 C:\Qt\2010.03\qt\bin
    2. libqextserialportd.a 放到 C:\Qt\2010.03\qt\lib
    3. qextserialport.h 放到 src(?)

【使用】
 

【方法】

  1. 直接用 termios/open/close
    http://tldp.org/HOWTO/Serial-Programming-HOWTO.html
  2. 用 QextSerialPort
    http://qextserialport.sourceforge.net/

【參考】

【Qt】Xml


(tbd)

【參考】

【Qt】QSettings


【Proposal】

  1. read/parse ini file。

【Code and Related-file】

  1. data.ini
    [profile]
    name= sam lee
    brithday= 1980/01/01
  2. include define
    #include <QtDebug>
    #include <QSettings>
  3. code
    QSettings settings("data.ini", QSettings::IniFormat);
    settings.beginGroup("profile");
    const QStringList childKeys = settings.childKeys();
    foreach (const QString &childKey, childKeys)
                 qDebug() << settings.value(childKey);
    settings.endGroup();

【Result】

  1. Result
    QVariant(QString, "1980/01/01") 
    QVariant(QString, "sam lee") 

【Question】

  1. How to create ini file If file not exist?

【Reference】

  1. How to use QSettings to read INI file
    http://www.qtcentre.org/threads/21473-How-to-use-QSettings-to-read-INI-file

【8051】繪圖型 LCD/LCG


【目的】

  1. 在 LCG(Liquid Crystal Display) 顯示文字。
  2. 抓取字型並顯示到 LCG。

【原理】

  1. SG12864/DG-128064/ 基本硬體接腳,總共 20Pins
    1. Vss (GND)
    2. Vdd (+5V)
    3. Vo (LCD亮度控制,0 V最亮)
    4. D/I(0:指令/1:資料)
    5. R/W (1:由LCG讀取資料/0:寫資料給LCG)
    6. E (致能LCG,負緣動作)
    7. D0 (LCG資料線)
    8. D1 (LCG資料線)
    9. D2 (LCG資料線)
    10. D3 (LCG資料線)
    11. D4 (LCG資料線)
    12. D5 (LCG資料線)
    13. D6 (LCG資料線)
    14. D7 (LCG資料線)
    15. CS1(晶片選擇,H 致能第一個 64X64 (左半邊)
    16. CS2(晶片選擇,H 致能第二個 64X64 (右半邊)
    17. RST(L 重置LCG,可直接接Vcc)
    18. VEE(LCG驅動電壓)
    19. N.C(none)
    20. N.C(none)
  2. 初始化與設定
  3. ASCII 輸出
  4. 抓取字型表並輸出到LCG

【參考】

  1. 8051實作電子手錶 - 逢甲大學
    http://myiecs.iecs.fcu.edu.tw/upload/paper_uni/912pdf/910222.pdf
  2. 太陽能電動車充電模組
    http://www.google.com.tw/url?sa=t&source=web&cd=5&ved=0CDIQFjAE&url=http%3A%2F%2Fetd.lib.stut.edu.tw%2FETD-db%2FETD-search%2Fgetfile%3FURN%3Detd-0407109-183717-1390%26filename%3Detd-0407109-183717-1390-001.pdf&ei=ciwgTNOROMKB8gacorhu&usg=AFQjCNEwnvrxIaHQXG9YktUyBJJv1GJvPw&sig2=yTULlMuIIpTsA33-5W_ajQ
 

Ed32. Copyright 2008 All Rights Reserved Revolution Two Church theme by Brian Gardner Converted into Blogger Template by Bloganol dot com