全國最多中醫師線上諮詢網站-台灣中醫網
發文 回覆 瀏覽次數:2569
推到 Plurk!
推到 Facebook!

Barcode Reader 的 Wand Emulation 介面要如何讓 51 讀取呢

答題得分者是:dllee
bestlong
站務副站長


發表:126
回覆:734
積分:512
註冊:2002-10-19

發送簡訊給我
#1 引用回覆 回覆 發表時間:2004-08-31 12:33:47 IP:211.22.xxx.xxx 未訂閱
Barcode Reader 輸出介面常見的有 K/B, RS232, Wand Emulation 三種, 剛好手頭上有 Wand Emulation 規格的. 但是不知道該如何使用? 我是雪龍
------
http://blog.bestlong.idv.tw/
http://www.bestlong.idv.tw/
http://delphi-ktop.bestlong.idv.tw/
dllee
站務副站長


發表:321
回覆:2519
積分:1711
註冊:2002-04-15

發送簡訊給我
#2 引用回覆 回覆 發表時間:2004-09-12 10:10:43 IP:211.76.xxx.xxx 未訂閱
http://www.dataid.com/glossary.htm#sectW
引言: Wand Emulation When a wand scans a bar code, it sends a digital picture of the bar code to an external decoder. When a decoded output scanner connects to an external decoder (such as a portable data terminal), wand emulation mode is used. The decoded output scanner decodes the bar code and outputs the information as a digital picture just as if a wand had scanned the bar code.
Wand 似乎是提供 BarCode 的數位影像資料,還要再自己寫解碼的樣子, 為什麼不用最簡單的 RS232 模式? 一般的 BarCode 都可以設定 RS232 字元模式,直接輸出的就已經是解碼好的字串, 用 RS232 是最方便的,用電腦打開超級終端機就可以看到 BarCode 輸出。 使用 8051 只要參考任一本寫到如何使用 8051 的 COM Port 接收資料的 就可以得到 BarCode 輸出了。 吃軟也吃硬 dllee.ktop.com.tw 視動科技 VMASK - ViewMove Automation Software Kernel
------
http://www.ViewMove.com
bestlong
站務副站長


發表:126
回覆:734
積分:512
註冊:2002-10-19

發送簡訊給我
#3 引用回覆 回覆 發表時間:2004-09-17 23:07:51 IP:61.59.xxx.xxx 未訂閱
非常感謝您的回覆, 事實上我也知道採用 RS-232 規格的很好處理. 只是剛好手頭上的七八個讀卡槽都是 Wand Emulation 所以想知道這樣的規格該如何處理. 我是雪龍
------
http://blog.bestlong.idv.tw/
http://www.bestlong.idv.tw/
http://delphi-ktop.bestlong.idv.tw/
dllee
站務副站長


發表:321
回覆:2519
積分:1711
註冊:2002-04-15

發送簡訊給我
#4 引用回覆 回覆 發表時間:2004-09-18 07:40:42 IP:211.76.xxx.xxx 未訂閱
我上網找不到 Wand Emulation 的規格... 只有一些說明 不知道是否有相關的網頁或檔案可以下載的呢?    StatPlus2系統資源監測器 視動科技 VMASK - ViewMove Automation Software Kernel
------
http://www.ViewMove.com
bestlong
站務副站長


發表:126
回覆:734
積分:512
註冊:2002-10-19

發送簡訊給我
#5 引用回覆 回覆 發表時間:2004-09-21 23:02:37 IP:61.59.xxx.xxx 未訂閱
引言: 我上網找不到 Wand Emulation 的規格... 只有一些說明 不知道是否有相關的網頁或檔案可以下載的呢?
這就是我面臨的困難阿, 找不到規格資料根本就無從下手 我是雪龍
------
http://blog.bestlong.idv.tw/
http://www.bestlong.idv.tw/
http://delphi-ktop.bestlong.idv.tw/
dllee
站務副站長


發表:321
回覆:2519
積分:1711
註冊:2002-04-15

發送簡訊給我
#6 引用回覆 回覆 發表時間:2004-09-22 09:25:10 IP:220.139.xxx.xxx 未訂閱
RS232 不是一般都會提供的介面嗎? 用它就好啦。 而且幾乎每一個都可以設定 RS232 的資料格式,如 是否使用 Header 及 Header 字元選用; 是否使用 Tailer 及 Tailer 字元選用, 只需要寫一個程式讀 RS232 幾乎可以通吃, 所要作的只是在使用前,先把 BCR 設定為 RS232 及 其 Header/Tailer 滿足現有的程式即可。    StatPlus 系統資源監測器 視動科技 VMASK - ViewMove Automation Software Kernel
------
http://www.ViewMove.com
Eigen
初階會員


發表:19
回覆:36
積分:26
註冊:2002-12-05

發送簡訊給我
#7 引用回覆 回覆 發表時間:2004-09-30 09:04:23 IP:61.218.xxx.xxx 未訂閱
wand 直接輸出 high /low (barcode的黑白(01)寬度配合你的移動速度) 你可以試著用示波器來看 然後你要『懂』barcode的編碼原則,然後解碼成我們看得種的ascii(文字) 別人寫的編碼程式 http://www.alumni.caltech.edu/~josephc/barcode.html
bestlong
站務副站長


發表:126
回覆:734
積分:512
註冊:2002-10-19

發送簡訊給我
#8 引用回覆 回覆 發表時間:2004-10-18 08:10:59 IP:211.22.xxx.xxx 未訂閱
引言: wand 直接輸出 high /low (barcode的黑白(01)寬度配合你的移動速度) 你可以試著用示波器來看 然後你要『懂』barcode的編碼原則,然後解碼成我們看得種的ascii(文字) 別人寫的編碼程式 http://www.alumni.caltech.edu/~josephc/barcode.html
這樣也是個辦法, 不過也提升了難度, 光是要一台示波器可就是大手筆了. 我是雪龍
------
http://blog.bestlong.idv.tw/
http://www.bestlong.idv.tw/
http://delphi-ktop.bestlong.idv.tw/
系統時間:2024-07-02 0:21:19
聯絡我們 | Delphi K.Top討論版
本站聲明
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。
2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。
3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇!