博碩士論文 103552027 詳細資訊




以作者查詢圖書館館藏 以作者查詢臺灣博碩士 以作者查詢全國書目 勘誤回報 、線上人數:58 、訪客IP:3.142.197.121
姓名 陳皇志(Huang-Chih Chen)  查詢紙本館藏   畢業系所 資訊工程學系在職專班
論文名稱 智慧牙刷物聯網閘道器設計與實作
(Design and Implementation of an IoT Gateway for the Smart Toothbrush)
相關論文
★ 整合GRAFCET虛擬機器的智慧型控制器開發平台★ 分散式工業電子看板網路系統設計與實作
★ 設計與實作一個基於雙攝影機視覺系統的雙點觸控螢幕★ 智慧型機器人的嵌入式計算平台
★ 一個即時移動物偵測與追蹤的嵌入式系統★ 一個固態硬碟的多處理器架構與分散式控制演算法
★ 基於立體視覺手勢辨識的人機互動系統★ 整合仿生智慧行為控制的機器人系統晶片設計
★ 嵌入式無線影像感測網路的設計與實作★ 以雙核心處理器為基礎之車牌辨識系統
★ 基於立體視覺的連續三維手勢辨識★ 微型、超低功耗無線感測網路控制器設計與硬體實作
★ 串流影像之即時人臉偵測、追蹤與辨識─嵌入式系統設計★ 一個快速立體視覺系統的嵌入式硬體設計
★ 即時連續影像接合系統設計與實作★ 基於雙核心平台的嵌入式步態辨識系統
檔案 [Endnote RIS 格式]    [Bibtex 格式]    [相關文章]   [文章引用]   [完整記錄]   [館藏目錄]   [檢視]  [下載]
  1. 本電子論文使用權限為同意立即開放。
  2. 已達開放權限電子全文僅授權使用者為學術研究之目的,進行個人非營利性質之檢索、閱讀、列印。
  3. 請遵守中華民國著作權法之相關規定,切勿任意重製、散佈、改作、轉貼、播送,以免觸法。

摘要(中) 本研究建構了一套智慧牙刷物聯網閘道器在多人的環境中使用,使用者學習完刷牙正確姿勢後,可以在家裡刷牙時利用手機比對自己目前刷牙的姿勢與貝氏刷牙法的有何不同。研究中開發智慧牙刷物聯網閘道器和牙醫雲端系統,智慧牙刷物聯網閘道器包含了藍牙通訊、GUI動畫呈現和SQLite資料庫,負責處理接收刷牙區塊、顯示刷牙流程及編碼並儲存個人刷牙資訊。牙醫雲端系統包含MQTT Broker與MQTT Client for Server、雲端資料庫及牙醫監測軟體,負責接收並解碼個人刷牙資訊、分析刷牙時間及顯示不同使用者的刷牙資訊給牙醫師。研究中對系統進行一連串的測試,其中包含刷牙區域判別與MQTT傳輸。在刷牙區域判別中,智慧牙刷會依序或亂數變更刷牙區塊,並讓每區塊都可以達到50次的測試,在結果可以觀察到即便變更刷牙區塊,閘道器程式也可正確判斷區塊的位置,此外在MQTT傳輸測試中,三位使用者會傳送300筆不同的Topic資料至MQTT Broker,測試MQTT Client for APP、MQTT Broker及MQTT Client for Server對資料處理能力,其結果表示MQTT Client for APP、MQTT Broker及MQTT Client for Server對於傳送或讀取都維持高度正確性。
摘要(英) This study established a set of smart toothbrush networking gateway for use in an environment with many people. This enables users to compare whether their current tooth brushing technique is different from the Bass technique of tooth brushing by using their mobile phone after they have learnt the correct method of tooth brushing. The user’s tooth brushing records are obtained using this system and transmitted to the cloud-based server designed in this study using MQTT. Thus, in an environment with many people, each person can use their own smart toothbrush for tooth brushing and the mobile phone gateway program will show the time taken for tooth brushing and level of completion, so that everyone can understand and maintain oral health. Dentists can also use this system to understand their patients’ current tooth brushing status, so that patients and dentists can achieve a better dentist-patient relationship.
關鍵字(中) ★ 智慧牙刷
★ 低功率藍牙
★ iOS
★ Node.js
★ MQTT
★ JSON
關鍵字(英) ★ Smart Toothbrush
★ BLE
★ iOS
★ Node.js
★ MQTT
★ JSON
論文目次 目錄
摘要 i
Abstract ii
致謝 iii
目錄 iv
圖目錄 vii
表目錄 ix
第一章、緒論 1
1.1研究背景 1
1.2研究目的 3
1.3論文架構 3
第二章、文獻回顧 5
2.1 口腔保健 5
2.1.1 貝式刷牙法 5
2.1.2 智慧牙刷 6
2.2 Bluetooth Low Energy, BLE 8
2.2.1 傳統BT與BLE架構 9
2.2.2 BLE通訊協定 10
2.3 Generic Access Profile, GAP 13
2.3.1 設備角色 13
2.3.2 廣播數據 13
2.3.3 廣播流程 14
2.3.4 廣播的網絡拓撲結構 15
2.4 Generic Attribute Profile, GATT 16
2.4.1 GATT 連接的網絡拓撲 16
2.4.2 GATT 通信 17
2.4.3 GATT 結構 17
2.5 Message Queuing Telemetry Transport, MQTT介紹 19
2.5.1 Publisher、Subscriber及Broker 19
2.5.2 MQTT Quality 20
2.5.3 Message Type 21
2.6. JavaScript Object Notation, JSON 26
2.6.1 JSON 簡介 26
2.6.2 JSON安全存取 28
第三章、智慧牙刷物聯網閘道器設計 29
3.1 智慧牙刷物聯網閘道器 29
3.1.1 藍牙通訊模組 30
3.1.2 GUI動畫呈現及刷牙紀錄模組 31
3.1.3 SQLite 資料庫 33
3.1.4 MQTT Client for Application 35
3.2 智慧牙刷雲端系統 36
3.3 MQTT Broker與 MQTT Client for Server 38
3.3.1 MQTT Broker 39
3.3.2 MQTT Client for Server 39
第四章 實驗結果與討論 41
4.1 實驗平台 41
4.1.1 Raspberry Pi 3 簡介 41
4.1.2 iPhone 7簡介 43
4.1.3智慧牙刷 45
4.2 智慧牙刷物聯網閘道器 46
4.3智慧牙刷雲端系統 50
4.4 實驗與討論 52
4.4.1 刷牙區域判別測試 53
4.4.2 MQTT傳輸測試 56
第五章 結論與未來方向 58
5.1 結論 58
5.2 未來展望 59
參考文獻 60
參考文獻

參考文獻
[1] 衛生福利部統計處. 健保門診醫療費用 [Online]. Available: http://www.mohw.gov.tw/cht/DOS/
[2] 徐邦賢, "104年牙醫門診總額一般服務 執行成果評核報告," 衛生福利部2013.
[3] A. Pantelopoulos and N. G. Bourbakis, "A Survey on Wearable Sensor-Based Systems for Health Monitoring and Prognosis," IEEE Transactions on Systems, Man, and Cybernetics, Part C: Applications and Reviews, vol. 40, no. 1, pp. 1-12, 2010.
[4] O. Mazhelis, E. Luoma, and H. Warma, "Defining an Internet-of-Things Ecosystem," in Internet of Things, Smart Spaces, and Next Generation Networking: Springer, 2012, pp. 1-14.
[5] T. Tamura and I. Masuda, "Device Connectivity Technologies Using Short-distance Wireless Communications," Fujitsu Scientific & Technical Journal, vol. 49, no. 2, pp. 213-219, 2013.
[6] 中央健康保險署. 表 117 牙醫門診醫療費用明細-按性別及年齡別分 [Online]. Available: http://dep.mohw.gov.tw/DOSAASW/cp-2807-10144-113.html
[7] D. Harnacke, S. Mitter, M. Lehner, J. Munzert, and R. Deinzer, "Improving Oral Hygiene Skills by Computer-Based Training: A Randomized Controlled Comparison of the Modified Bass and the Fones Techniques," PLoS ONE, vol. 7, no. 5, p. e37072, 2012.
[8] J.-W. Lee, K.-H. Lee, K.-S. Kim, D.-J. Kim, and K. Kim, "Development of Smart Toothbrush Monitoring System for Ubiquitous Healthcare," 28th Annual International Conference of the IEEE Engineering in Medicine and Biology Society, pp. 6422-6425, 2006.
[9] K.-H. Lee, J.-W. Lee, K.-S. Kim, D.-J. Kim, K. Kim, H.-K. Yang, K. Jeong, and B. Lee, "Tooth brushing Pattern Classification using Three-Axis Accelerometer and Magnetic Sensor for Smart Toothbrush," Engineering in Medicine and Biology Society, pp. 4211-4214, Aug. 2007.
[10] T. Zhang, J. Lu, F. Hu, and Q. Hao, "Bluetooth Low Energy for Wearable Sensor-Based Healthcare Systems," 2014 IEEE Healthcare Innovation Conference, pp. 251-254, 2014.
[11] 中華民國牙醫師公會全國聯合會. 貝氏刷牙法( Bass Method) [Online]. Available: http://www.cda.org.tw/index.htm
[12] D. M. Bowen, "History of Dental Hygiene Research," American Dental Hygienists Association, vol. 87, no. suppl 1, pp. 5-22, 2013.
[13] Y.-J. Lee, P.-J. Lee, K.-S. Kim, W. Park, K.-D. Kim, D. Hwang, and J.-W. Lee, "Toothbrushing Region Detection Using Three-Axis Accelerometer and Magnetic Sensor," IEEE Transactions on Biomedical Engineering, vol. 59, no. 3, pp. 872-881, 2012.
[14] Y.-J. Lee, P.-J. Lee, J.-W. Lee, K.-S. Kim, J.-S. Jeong, W. Park, and K.-D. Kim, "Quantitative Assessment of Toothbrushing Education Efficacy Using Smart Toothbrush," 4th International Conference on Biomedical Engineering and Informatics vol. 2, pp. 1160-1164, 2011.
[15] E. Mackensen, M. Lai, and T. M. Wendt, "Bluetooth Low Energy (BLE) Based Wireless Sensors," IEEE Sensors, pp. 1-4, 2012.
[16] K.-H. Chang, "Bluetooth: a Viable Solution for IoT?[Industry Perspectives]," IEEE Wireless Communications, vol. 21, no. 6, pp. 6-7, 2014.
[17] C. Gomez, J. Oller, and J. Paradells, "Overview and Evaluation of Bluetooth Low Energy: An Emerging Low-Power Wireless Technology," Sensors, vol. 12, no. 9, pp. 11734-11753, 2012.
[18] U. Hunkeler, H. L. Truong, and A. Stanford-Clark, "MQTT-S—A Publish/Subscribe Protocol for Wireless Sensor Networks," 3rd international conference on Communication systems software and middleware and workshops, pp. 791-798, 2008.
[19] S. Ahmed, A. Topalov, and A. Topalov, "A Robotized Wireless Sensor Network Based on. MQTT Cloud Computing," 2017 IEEE International Workshop of Electronics, Control, Measurement, Signals and their Application to Mechatronics pp. 1-6, May 2017.
[20] M. Schmidt and R. Obermaisser, "Middleware for the Integration of Bluetooth LE Devices Based On MQTT and ISO/IEEE 11073," 2017 IEEE 30th Canadian Conference on Electrical and Computer Engineering, pp. 1-4, May 2017.
[21] E. Upton and G. Halfacree, Raspberry Pi User Guide. John Wiley & Sons, 2014.
[22] Apple. iPhone 7 [Online]. Available: https://www.apple.com/iphone-7/
[23] 吳曜瑋, "應用於智能牙刷的六軸運動辨識," 國立中央大學資訊工程學系碩士論文, 2016.
[24] N. Nesa and I. Banerjee, "IoT-based Sensor Data Fusion for Occupancy Sensing using Dempster-Shafer Evidence Theory for Smart Buildings," IEEE Internet of Things Journal, vol. PP, no. 99, pp. 1-1, 2017.
[25] B. Javed, M. W. Iqbal, and H. Abbas, "Internet of Things (IoT) Design Considerations for Developers and Manufacturers," 2017 IEEE International Conference on Communications Workshops, pp. 834-839, May 2017.
指導教授 陳慶瀚(Chin-Han Chen) 審核日期 2017-7-24
推文 facebook   plurk   twitter   funp   google   live   udn   HD   myshare   reddit   netvibes   friend   youpush   delicious   baidu   
網路書籤 Google bookmarks   del.icio.us   hemidemi   myshare   

若有論文相關問題,請聯絡國立中央大學圖書館推廣服務組 TEL:(03)422-7151轉57407,或E-mail聯絡  - 隱私權政策聲明