The Research and Implementation of Vehicle Bluetooth Hands-free Devices Key Parameters Downloading Algorithm

Size: px
Start display at page:

Download "The Research and Implementation of Vehicle Bluetooth Hands-free Devices Key Parameters Downloading Algorithm"

Transcription

1 Available online at Physics Procedia 25 (2012 ) International Conference on Solid State Devices and Materials Science The Research and Implementation of Vehicle Bluetooth Hands-free Devices Key Parameters Downloading Algorithm ZHAG Xiao-bo, WAG Zhi-xue, LI Jian-xin, MA Jian-hui, LI ang, LI an-qiang Shandong Provincial Key Laboratory of Automotive Electronic Technology Institute of Automation, Shandong Academy of Sciences Jinan, Shandong Province, China Abstract In order to facilitate Bluetooth function realization and information can be effectively tracked in the process of production, the vehicle Bluetooth hands-free devices need to download such key parameters as Bluetooth address, CVC license and base plate numbers, etc. Therefore, it is the aim to search simple and effective methods to download parameters for each vehicle Bluetooth hands-free device, and to control and record the use of parameters. In this paper, by means of Bluetooth Serial Peripheral Interface programmer device, the parallel port is switched to SPI. The first step is to download parameters is simulating SPI with the parallel port. To perform SPI function, operating the parallel port in accordance with the SPI timing. The next step is to achieve SPI data transceiver functions according to the programming parameters of options. Utilizing the new method, downloading parameters is fast and accurate. It fully meets vehicle Bluetooth hands-free devices production requirements. In the production line, it has played a large role Published by Elsevier Ltd. B.V. Selection and/or peer-review under responsibility of of [name Garry organizer] Lee Open access under CC B-C-D license. Keywords: SPI, CVC License, LAP I. Introduction In recent years, more and more car owners begin to attach importance to the safety and ease of talking on the phone while driving [1]. The vehicle Bluetooth hands-free devices gradually prevailed in many countries. By means of the vehicle Bluetooth hands-free devices, drivers can answer the phone by Bluetooth hands-free calls. So security can get ensuring, their hearing can avoid be ruined with earphones. And the effect of mobile phone radiation is at greatly reduced Published by Elsevier B.V. Selection and/or peer-review under responsibility of Garry Lee Open access under CC B-C-D license. doi: /j.phpro

2 1092 Zhang Xiao-bo et al. / Physics Procedia 25 ( 2012 ) As a Bluetooth product, the vehicle Bluetooth hands-free devices must have a globally unique Bluetooth address. Each product has only base plate numbers which are in one to one corresponding to Bluetooth address. Otherwise, drivers are not allowed to answer the phone by hand in many countries for the pursuit of driving safety. It provides a wide market for vehicle Bluetooth hands-free devices using Bluetooth technology. To realize the vehicle Bluetooth hands-free functions listing, one of the important problems to be solved is Bluetooth technology. Another one is the quality of voice communication, which includes echo and noise problem inside an automobile [2-4]. To reduce noise and remove undesired echoes, the vehicle Bluetooth hands-free devices adopt CSR s CVC algorithm. Because CVC license is necessary for the algorithm parameters, it must also be downloaded to the vehicle Bluetooth hands-free devices. It can be seen that the essential procedure during production is to download such key parameters as Bluetooth address, CVC license and base plate numbers, etc. For manufacturers, the Bluetooth address is a logo which the vehicle Bluetooth hands-free device is affiliated with the company [5]. Bluetooth address and CVC license is two big input costs. Therefore, it is necessary to strictly control the use of Bluetooth address and CVC license and to record the use of parameters for each vehicle Bluetooth hands-free device. Artificial record is not advisable in the existing production line. Therefore, two of the important problems to be solved are to download parameters for each vehicle Bluetooth hands-free device, and to control and record the use of parameters. 2. The key parameters download algorithm The vehicle Bluetooth hands-free devices use CSR Bluetooth single-chip, which download parameters by SPI. By means of Bluetooth SPI programmer device, the parallel port is switched to SPI. The connect signals between Bluetooth SPI programmer device and the vehicle Bluetooth hands-free device include GD, MOSI, MISO, CSB, CLK, VCC-3.3. When in use, connect one end of Bluetooth SPI programmer device to the vehicle Bluetooth hands-free device, the other end to PC Parallel Port. Bluetooth SPI programmer device will be powered by the vehicle Bluetooth hands-free device. Finally, power on the vehicle Bluetooth hands-free device, and be ready to download key parameters. The vehicle Bluetooth hands-free device key parameters downloading algorithm as shown in Figure 1. There are two major steps in the realization of downloading parameters. The first step is to download parameters is simulating SPI with the parallel port. To perform SPI function, operating the parallel port in accordance with the SPI timing. The next step is to achieve SPI data transceiver functions according to the programming parameters of options. The following is the main realization method.

3 Zhang Xiao-bo et al. / Physics Procedia 25 ( 2012 ) Connect to Bluetooth SPI programmer device Set CVC license Judge CVC license s legality Input base plate numbers Judge base plate number s legality Input Bluetooth address Judge Bluetooth address s legality Establish SPI connection Write Bluetooth address Download the next device Write base plate numbers Write CVC license Warm Reset Read-back check Bluetooth address and base plate numbers Update writing log Fig. 1 Vehicle Bluetooth hands-free devices key parameters downloading algorithm 1) Before Bluetooth device s production, the manufacturers need buy Bluetooth address from SIG association, and then provide Bluetooth address to CSR in order to generate the corresponding CVC license. In general, CSR generate only one CVC license for a number of Bluetooth addresses. In other words, it is one many-to-one relationship between Bluetooth address and CVC license. Therefore, we should set CVC license and judge whether it is legal before download one batch of device parameters. If not, you are warned to reset CVC license. 2) Input 12-bit base plate number, and judge whether it is legal. If not, you are warned to try again. Due to the parameter must be downloaded to the device in uint16 format, so the base plate number

4 1094 Zhang Xiao-bo et al. / Physics Procedia 25 ( 2012 ) preprocessing is essential. The preprocessing algorithm is shown in Figure 2. And the algorithm has written as in the following script. // BEGI tempstring = m_id; tempstring.trimleft(); tempstring.trimright(); idstr=tempstring; if(tempstring.getlength() == 12) k=0; while(k<6) cid = tempstring.getat(2*k); // Get the previous character i1= cid; // Get the previous character s ASCII value cid = tempstring.getat(2*k+1); //Get the next character i2 = cid; // Get the next character s ASCII value i1=i1<<8; id[k]=i1 + i2; k = k+1; } } // ED 3) Input Bluetooth address. Each Bluetooth product is allocated a unique 48-bit device address [6-9]. It is divided into a 24-bit LAP field, a 16-bit AP field and an 8-bit UAP field. Bluetooth address is printed on stickers which are attached to the Bluetooth product. So it can be read easily by barcode scanner. The next, judge whether it is legal, including whether the Bluetooth address is already recorded in writing log. If not, you are warned to reset it again. This can avoid that different products are downloaded to the same Bluetooth address, so as to ensure that the product has the only global Bluetooth address. If the address is legal, the necessary SPI connection will be established. 4) If the SPI connection is established successfully, the vehicle Bluetooth hands-free devices will download in turn such key parameters as Bluetooth address, CVC license and base plate numbers, etc. 5) After it has finished downloading, warm reset the device. CSR Bluetooth single-chip must be reset after the key parameters are successfully downloaded. Otherwise, the three key parameters won't really play a role. If Bluetooth address remains disabled, Bluetooth function testing won't be begun. This is because Bluetooth address is used for locating the under-test device. By warm reset, the SPI connection is still available after reset successfully. We must ensure that the SPI connection is available during the whole of testing. 6) To ensure that the key parameters is no wrong, we need to Read-back and check both Bluetooth address and base plate numbers after reset has succeeded. Compared with two input values, if not equal, then the process starts all over again. Read-back and check base plate numbers has written as in the following script. // begin to Read-back and check base plate numbers idstr=""; if(id_result==1) // Read-back successfully

5 Zhang Xiao-bo et al. / Physics Procedia 25 ( 2012 ) } //end for(int k =0; k < 6;k++) // Get the previous character s ASCII value i1=id[k]&(0xff00); i1=i1>>8; idstr = idstr+(char)i1; // Get the next character s ASCII value i2=id[k]&(0x00ff); idstr = idstr+(char)i2; } Input the plate number(idstr) GetLength (idstr)= =12? K=0; cid =idstr.getat(2*k); // Get the previous character i1= cid; // Get the previous character sasciivalue i1=i1<<8; id[k] cid = idstr.getat(2*k+1); //Get the next character i2 = cid; // Get the next character s ASCII value k = k+1; K<6? Continue Fig. 2 The preprocessing algorithm 7) Update writing log. This is a step that the key parameters are automatically recorded in the EXCEL file. It ensures accurate and effective grasp of production as well as address utilization each day.

6 1096 Zhang Xiao-bo et al. / Physics Procedia 25 ( 2012 ) Conclusion Practice proves that the method downloading parameters is fast and accurate. The key parameters are automatically recorded in the writing log. It gives enterprises better control over Bluetooth address, thus avoiding resources wasting. This process can fully satisfy the requirement of production. Acknowledgment R.B.G. thanks Shandong Province Key Laboratory of Automotive Electronic Technology--- Shandong province of major scientific and technological special project Development and industrialization of car body network and electronic products interrelated ECU (the project number: 2007ZHZX10503). References [1] Xiao Wei, ang Tao. Core Architecture of Bluetooth Technology, Telecommunications Science, 2001(1): [2] DOG Li-jun, FAG Chao, QI Ran,LIU Xiao-ming, SHE Lian-feng. Research and realization of embedded Bluetooth gateway for voice communication, Journal of Chongqing University of Posts and Telecommunications, 2005, 17(4):1-5. [3] Ma Jian-hui, Ma Gong-li, Deng Li-bao. Application of Bluetooth Technology in Automotive Infotainment System, Electronic Design & Application World for Design and Application Engineers, [4] LIAG Qi-jun,WU Xi-lan,FA Xin. Design of wireless teaching aided tool PPTCtrl with Bluetooth SmartPhone, Computer Engineering and Design, 2010, 31(7): [5] A El-Hoiydi. Interference between Bluetooth etworks-upper Bound on the Packet Error Rate[J].IEEE Commun. Lett. (S ), 2001, 5(6): [6] Brian S Peterson, Rusty O Baldwin, Jeffrey P Kharoufeh, et al.refinements to the Packet Error Rate Upper Bound for Bluetooth etworks[j].ieee Commun. Lett. (S ), 2003, 7(8): [7] Fredrik Florén, AndréStranne, Ove Edfors, et al. Throughput of Strongly Interfering Slow Frequency-Hopping etworks[j].ieee transactions on communications(s ),2004,52(7): [8] Saswati Sarkar, Farooq Anjum, Ratul Guha. Optimal Communication in Bluetooth Piconets[J].IEEE Transaction on Vehicular Technology(S ),2005,54(2): [9] Borja Gomez Zarce?o.Mobile applications with J2ME and JSR82:Bluetooth enabled Java applications for mobile phones[z].acs Seminar,2004.

Development of a Rapid Design System for Aerial Work Truck Subframe with UG Secondary Development Framework

Development of a Rapid Design System for Aerial Work Truck Subframe with UG Secondary Development Framework Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2961 2965 Advanced in Control Engineering and Information Science Development of a Rapid Design System for Aerial Work Truck Subframe

More information

Analysis of the Power Consumption for Wireless Sensor Network Node Based on Zigbee

Analysis of the Power Consumption for Wireless Sensor Network Node Based on Zigbee Available online at www.sciencedirect.com rocedia Engineering 29 (2012) 1994 1998 2012 International Workshop on Information and Electronics Engineering (IWIEE) Analysis of the ower Consumption for Wireless

More information

World Scientific Research Journal (WSRJ) ISSN: Design and Implementation of Stepper Motor Control System Based on 52 MCU

World Scientific Research Journal (WSRJ) ISSN: Design and Implementation of Stepper Motor Control System Based on 52 MCU World Scientific Research Journal (WSRJ) ISSN: 2472-3703 www.wsr-j.org Design and Implementation of Stepper Motor Control System Based on 52 MCU Xinglan Zhang a, Xianda Zhang b, * and Xin Zhong c School

More information

A Tentative Study on Ward Monitoring System based on Zigbee Technology Jifeng Liang

A Tentative Study on Ward Monitoring System based on Zigbee Technology Jifeng Liang 7th International Conference on Education, Management, Computer and Medicine (EMCM 2016) A Tentative Study on Ward Monitoring System based on Zigbee Technology Jifeng Liang Xi an Fanyi University, Xi an

More information

Design on a method for interactive editing fault polygon

Design on a method for interactive editing fault polygon Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3584 3589 Advanced in Control Engineering and Information Science Design on a method for interactive editing fault polygon TANG

More information

Intelligent bus temperature measurement system based on Zigbee networks

Intelligent bus temperature measurement system based on Zigbee networks 4th International Conference on Mechatronics, Materials, Chemistry and Computer Engineering (ICMMCCE 2015) Intelligent bus temperature measurement system based on networks Gang Ma1,a, WenGong Jiang2,b

More information

An Active RFID Tag for Outdoor Billboard Management

An Active RFID Tag for Outdoor Billboard Management 2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: 978-1-60595-498-1 An Active RFID Tag for Outdoor Billboard Management Hui JIANG 1,2,

More information

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system

The IIC interface based on ATmega8 realizes the applications of PS/2 keyboard/mouse in the system Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 673 678 International Workshop on Automobile, Power and Energy Engineering The IIC interface based on ATmega8 realizes the applications

More information

Design of Intelligent System for Watering Flowers Based on IOT

Design of Intelligent System for Watering Flowers Based on IOT 4th International Conference on Computer, Mechatronics, Control and Electronic Engineering (ICCMCEE 2015) Design of Intelligent System for Watering Flowers Based on IOT Hong-Jun GU a, Shi-Dong Zhu, Yan-Fen

More information

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI *

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI * 2017 2nd International onference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: 978-1-60595-491-2 Research of Traffic Flow Based on SVM Method Deng-hong YIN, Jian WANG and Bo

More information

result, it is very important to design a simulation system for dynamic laser scanning

result, it is very important to design a simulation system for dynamic laser scanning 3rd International Conference on Multimedia Technology(ICMT 2013) Accurate and Fast Simulation of Laser Scanning Imaging Luyao Zhou 1 and Huimin Ma Abstract. In order to design a more accurate simulation

More information

Research on monitoring technology of Iu-PS interface in WCDMA network

Research on monitoring technology of Iu-PS interface in WCDMA network Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2354 2358 Advanced in Control Engineering and Information Science Research on monitoring technology of Iu-PS interface in WCDMA

More information

Design of Soybean Milk Machine Control System based on STC89C52. Ya-gang SUN, Yue ZHANG, Zhi-gang YANG, Rui-cheng ZHANG and Xiao-wei SHEN

Design of Soybean Milk Machine Control System based on STC89C52. Ya-gang SUN, Yue ZHANG, Zhi-gang YANG, Rui-cheng ZHANG and Xiao-wei SHEN 2016 International Conference on Advanced Manufacture Technology and Industrial Application (AMTIA 2016) ISBN: 978-1-60595-387-8 Design of Soybean Milk Machine Control System based on STC89C52 Ya-gang

More information

CIRCLE USER S GUIDE (DRAFT 5B) Table of Contents

CIRCLE USER S GUIDE (DRAFT 5B) Table of Contents CIRCLE BLUETOOTH WIRELESS HANDSFREE CAR KIT USER S GUIDE (DRAFT 5B) Table of Contents Introduction...2 Feature Highlights...4 About Bluetooth...4 Identifying the Parts...5 Package Contents...7 Set-Up and

More information

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption

Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption International Conference on Manufacturing Science and Engineering (ICMSE 2015) Research on Software Scheduling Technology Based on Multi-Buffered Parallel Encryption Zeng Rong 1, a, Xia Wei 2, Wang Hongkai

More information

Qingdao, , China. China. Keywords: Deep sea Ultrahigh pressure, Water sound acquisition, LabVIEW, NI PXle hardware.

Qingdao, , China. China. Keywords: Deep sea Ultrahigh pressure, Water sound acquisition, LabVIEW, NI PXle hardware. 2016 International Conference on Control and Automation (ICCA 2016) ISBN: 978-1-60595-329-8 Research and Design on Water Sound Acquisition System of Deep Sea Ultrahigh Pressure Environment Gang TONG 1,

More information

Product Instruction. Functional units as shown in below:

Product Instruction. Functional units as shown in below: WIT Product Instruction Thank you for purchasing our product. This wireless Bluetooth earphones support Bluetooth 4.1, it is compatible with smartphones, tablets, laptops, iphone and other Bluetooth enabled

More information

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology

Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology 2010 China International Conference on Electricity Distribution 1 Research on Power Quality Monitoring and Analyzing System Based on Embedded Technology Zhang Hong-tao, Ye Ying, An Qing China Zhoukou Power

More information

Research on the Application of Interactive Electronic Whiteboard in Network Teaching

Research on the Application of Interactive Electronic Whiteboard in Network Teaching Available online at www.sciencedirect.com Procedia Environmental Sciences 12 (2012 ) 1151 1156 2011 International Conference on Environmental Science and Engineering (ICESE 2011) Research on the Application

More information

The Research and Application of Firewall based on Netfilter

The Research and Application of Firewall based on Netfilter Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 1231 1235 2012 International Conference on Solid State Devices and Materials Science The Research and Application of Firewall based

More information

Preliminary Research on Distributed Cluster Monitoring of G/S Model

Preliminary Research on Distributed Cluster Monitoring of G/S Model Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 860 867 2012 International Conference on Solid State Devices and Materials Science Preliminary Research on Distributed Cluster Monitoring

More information

The Research about Interactive Intelligent Projection Handwritten System Based on Wiimote Wei Zhou, Yao Deng, Luxi Li, Di Hu

The Research about Interactive Intelligent Projection Handwritten System Based on Wiimote Wei Zhou, Yao Deng, Luxi Li, Di Hu The Research about Interactive Intelligent Projection Handwritten System Based on Wiimote Wei Zhou, Yao Deng, Luxi Li, Di Hu Nanjing university of posts and telecommunication, China Zhouw1223@foxmail.com

More information

The Design of the Embedded WEB Server Based on ENC28J60

The Design of the Embedded WEB Server Based on ENC28J60 Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 2670 2674 Advanced in Control Engineering and Information Science The Design of the Embedded WEB Server Based on ENC28J60 Shisheng

More information

2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN:

2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: 2017 2nd International Conference on Communications, Information Management and Network Security (CIMNS 2017) ISBN: 978-1-60595-498-1 Vulnerability Scanning System Used in the Internet of Things for Intelligent

More information

An Overview of Optical Label Switching Technology

An Overview of Optical Label Switching Technology Physics Procedia 22 (2011) 392 396 2011 International Conference on Physics Science and Technology (ICPST 2011) An Overview of Optical Label Switching Technology Fugen Su a,hongli Jin b,fulu Jin c a* a

More information

Available online at Procedia Engineering 29 (2012) 69 73

Available online at   Procedia Engineering 29 (2012) 69 73 Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 69 73 2012 International Workshop on Information and Electronics Engineering (IWIEE) Research on the Planning and Construction of

More information

Queuing theory based service performance evaluation under H2H and M2M blending traffic arriving

Queuing theory based service performance evaluation under H2H and M2M blending traffic arriving Available online at www.sciencedirect.com Procedia Environmental Sciences 11 (2011) 478 485 Queuing theory based service performance evaluation under H2H and M2M blending traffic arriving Xue-fen Chi,Jia-sheng

More information

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2

The Analysis and Research of IPTV Set-top Box System. Fangyan Bai 1, Qi Sun 2 Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 256-259, pp 2898-2901 doi:10.4028/www.scientific.net/amm.256-259.2898 2013 Trans Tech Publications, Switzerland The Analysis and

More information

Research on Design Information Management System for Leather Goods

Research on Design Information Management System for Leather Goods Available online at www.sciencedirect.com Physics Procedia 24 (2012) 2151 2158 2012 International Conference on Applied Physics and Industrial Engineering Research on Design Information Management System

More information

Research on software development platform based on SSH framework structure

Research on software development platform based on SSH framework structure Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3078 3082 Advanced in Control Engineering and Information Science Research on software development platform based on SSH framework

More information

Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,*

Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,* International Conference on Computational Science and Engineering (ICCSE 2015) Design of Greenhouse Temperature and Humidity Monitoring System Based on ZIGBEE Technique Ming Xin 1,a, Wei Zhongshan 1,b,*

More information

Applications of wireless sensor network in the agriculture environment monitoring

Applications of wireless sensor network in the agriculture environment monitoring Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 608 614 International Workshop on Automobile, Power and Energy Engineering Applications of wireless sensor network in the agriculture

More information

An Adaptive Histogram Equalization Algorithm on the Image Gray Level Mapping *

An Adaptive Histogram Equalization Algorithm on the Image Gray Level Mapping * Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 601 608 2012 International Conference on Solid State Devices and Materials Science An Adaptive Histogram Equalization Algorithm on

More information

Arduino Based Speech Controlled Robot for Human Interactions

Arduino Based Speech Controlled Robot for Human Interactions Arduino Based Speech Controlled Robot for Human Interactions B. Sathish kumar 1, Dr. Radhika Baskar 2 1BE Scholar, Electronics and Communication Engineering, Saveetha School of Engineering, Kuthamakkam,

More information

Wireless Noise-Cancelling Over-ear Headphones. Instruction Manual GTCBTNC16

Wireless Noise-Cancelling Over-ear Headphones. Instruction Manual GTCBTNC16 Wireless Noise-Cancelling Over-ear Headphones Instruction Manual GTCBTNC16 Contents Safety Warnings...4 Unpacking...6 Product Overview...7 Charging the Battery...8 Switching Bluetooth On/Off...9 Bluetooth

More information

Design of New Oscillograph based on FPGA

Design of New Oscillograph based on FPGA Available online at www.sciencedirect.com Procedia Engineering 23 (2011) 60 64 Design of New Oscillograph based on FPGA Hu Haoran,ZHANG Fei School of Computer & Information, Anqing Teachers College, Anqing

More information

Available online at AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics

Available online at   AASRI Procedia 1 (2012 ) AASRI Conference on Computational Intelligence and Bioinformatics Available online at www.sciencedirect.com AASRI Procedia 1 (2012 ) 74 81 AASRI Procedia www.elsevier.com/locate/procedia 2012 AASRI Conference on Computational Intelligence and Bioinformatics The Research

More information

Data Processing System to Network Supported Collaborative Design

Data Processing System to Network Supported Collaborative Design Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3351 3355 Advanced in Control Engineering and Information Science Data Processing System to Network Supported Collaborative Design

More information

Framework Research on Privacy Protection of PHR Owners in Medical Cloud System Based on Aggregation Key Encryption Algorithm

Framework Research on Privacy Protection of PHR Owners in Medical Cloud System Based on Aggregation Key Encryption Algorithm Framework Research on Privacy Protection of PHR Owners in Medical Cloud System Based on Aggregation Key Encryption Algorithm Huiqi Zhao 1,2,3, Yinglong Wang 2,3*, Minglei Shu 2,3 1 Department of Information

More information

Embedded Smart Home System Based on ZigBee Song Chi

Embedded Smart Home System Based on ZigBee Song Chi International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 2015) Embedded Smart Home System Based on ZigBee Song Chi Liaoning Jidian Polytechnic North Gold and Jewelry

More information

The Study and Implementation of Text-to-Speech System for Agricultural Information

The Study and Implementation of Text-to-Speech System for Agricultural Information The Study and Implementation of Text-to-Speech System for Agricultural Information Huoguo Zheng 1,2,*, Haiyan Hu 1,2, Shihong Liu 1,2, and Hong Meng 1,2 1 Agricultural Information Institute, Chinese Academy

More information

Available online at ScienceDirect. Procedia Manufacturing 6 (2016 ) 33 38

Available online at  ScienceDirect. Procedia Manufacturing 6 (2016 ) 33 38 Available online at www.sciencedirect.com ScienceDirect Procedia Manufacturing 6 (2016 ) 33 38 16th Machining Innovations Conference for Aerospace Industry - MIC 2016 Multi-point Clamping with Automatic

More information

Study on GA-based matching method of railway vehicle wheels

Study on GA-based matching method of railway vehicle wheels Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(4):536-542 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Study on GA-based matching method of railway vehicle

More information

The Controller Development of Multi-layer Parking Equipment Based on STM32

The Controller Development of Multi-layer Parking Equipment Based on STM32 Vol.8, o.1 (2014), pp.303-310 http://dx.doi.org/10.14257/ijsh.2014.8.1.31 The Controller Development of Multi-layer Parking Equipment Based on STM32 Zhang ongde 1, Zhang Qinxiang 1, Jiang Jingang 1, b,

More information

6th International Conference on Management, Education, Information and Control (MEICI 2016)

6th International Conference on Management, Education, Information and Control (MEICI 2016) The Simulation Study of the Locking Device in Platform Screen Door System Haiying Zhang 1 a, Weiyan Xu 1 b* and Xiangyan Yu 2,c 1 Qingdao Binhai University, Qingdao, China, 266555 2 Qingdao Qian wan Container

More information

The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication

The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication The Design of Supermarket Electronic Shopping Guide System Based on ZigBee Communication Yujie Zhang, Liang Han, and Yuanyuan Zhang College of Electrical and Information Engineering, Shaanxi University

More information

Cache Performance Research for Embedded Processors

Cache Performance Research for Embedded Processors Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 1322 1328 2012 International Conference on Solid State Devices and Materials Science Cache Performance Research for Embedded Processors

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(6): Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(6): Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 204, 6(6):2298-2302 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 TCP-like congestion control algorithm for stream

More information

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,*

The Design of Electronic Color Screen Based on Proteus Visual Designer Ting-Yu HOU 1,a, Hao LIU 2,b,* 2016 Joint International Conference on Service Science, Management and Engineering (SSME 2016) and International Conference on Information Science and Technology (IST 2016) ISBN: 978-1-60595-379-3 The

More information

Design of Temperature and Humidity Data Acquisition System. Based on ARM

Design of Temperature and Humidity Data Acquisition System. Based on ARM 2017 International Conference on Computational Science and Engineering (ICCSE 2017) Design of Temperature and Humidity Data Acquisition System Based on ARM Pei-xue Liu 1, a, Yu-jie Chen 1, b, Bao-hua Jiang

More information

Design of point to multi-point wireless communication system based on ZigBee

Design of point to multi-point wireless communication system based on ZigBee Design of point to multi-point wireless communication system based on ZigBee Tinting Meng, Chengdong Wu, Bo Shang, Chengxi Goo, unzhou Zhang College of Information Science and Engineering Northeastern

More information

The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based on CAN Bus

The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based on CAN Bus Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 1461-1465 1461 Open Access The Study of Intelligent Scheduling Algorithm in the Vehicle ECU based

More information

The MAC Protocol Optimization of Industrial Wireless Ad-hoc Network

The MAC Protocol Optimization of Industrial Wireless Ad-hoc Network Sensors & Transducers 203 by IFSA http://www.sensorsportal.com The MAC Protocol Optimization of Industrial Wireless Ad-hoc Network Jun Wang, 2 Jian Wang, 2 Yujun Pang Dept. of Computer Science & Technology,

More information

3 The standard grid. N ode(0.0001,0.0004) Longitude

3 The standard grid. N ode(0.0001,0.0004) Longitude International Conference on Information Science and Computer Applications (ISCA 2013 Research on Map Matching Algorithm Based on Nine-rectangle Grid Li Cai1,a, Bingyu Zhu2,b 1 2 School of Software, Yunnan

More information

Qiqihar University, China *Corresponding author. Keywords: Highway tunnel, Variant monitoring, Circle fit, Digital speckle.

Qiqihar University, China *Corresponding author. Keywords: Highway tunnel, Variant monitoring, Circle fit, Digital speckle. 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 Research on Tunnel Support Deformation Based on Camera and Digital Speckle Improvement

More information

Improvement of AODV Routing Protocol with QoS Support in Wireless Mesh Networks

Improvement of AODV Routing Protocol with QoS Support in Wireless Mesh Networks Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 1133 1140 2012 International Conference on Solid State Devices and Materials Science Improvement of AODV Routing Protocol with QoS

More information

Design of a Simple 3-Lead ECG Acquisition System Based on MSP430F149

Design of a Simple 3-Lead ECG Acquisition System Based on MSP430F149 2011 International Conference on Computer and Automation Engineering (ICCAE 2011) IPCSIT vol. 44 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V44.15 Design of a Simple 3-Lead ECG Acquisition

More information

Zhi-Quan Luo Electrical and Computer Engineering

Zhi-Quan Luo Electrical and Computer Engineering Sun, Ruoyu, and Zhi-Quan Luo. 2015. Interference alignment using finite and dependent channel extensions: The single beam case. IEEE Transactions on Information Theory 61 (1) (JAN 01): 239-55. Baligh,

More information

Numerical simulation of 3-D seepage field in tailing pond and its practical application

Numerical simulation of 3-D seepage field in tailing pond and its practical application Available online at www.sciencedirect.com Procedia Engineering (0) 70 76 0 SREE Conference on Engineering Modelling and Simulation Numerical simulation of -D seepage field in tailing pond and its practical

More information

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2 International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 015) An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng

More information

Design and Implementation of Real-Time Data Exchange Software of Maneuverable Command Automation System

Design and Implementation of Real-Time Data Exchange Software of Maneuverable Command Automation System Design and Implementation of Real-Time Data Exchange Software of Maneuverable Command Automation System Shi Chuan, Zhang Yang and Zhou Yuefei 1 Introduction Command automation system provides an effective

More information

A Partition Method for Graph Isomorphism

A Partition Method for Graph Isomorphism Available online at www.sciencedirect.com Physics Procedia ( ) 6 68 International Conference on Solid State Devices and Materials Science A Partition Method for Graph Isomorphism Lijun Tian, Chaoqun Liu

More information

The Analysis and Detection of Double JPEG2000 Compression Based on Statistical Characterization of DWT Coefficients

The Analysis and Detection of Double JPEG2000 Compression Based on Statistical Characterization of DWT Coefficients Available online at www.sciencedirect.com Energy Procedia 17 (2012 ) 623 629 2012 International Conference on Future Electrical Power and Energy Systems The Analysis and Detection of Double JPEG2000 Compression

More information

Wireless temperature & humidity monitor and control system

Wireless temperature & humidity monitor and control system Wireless temperature & humidity monitor and control system ang Zhou 1, Qiaodi Zhou 2, Qingpeng Kong 3, Wenyu Cai 4 Hangzhou dianzi University Electronic information institute, Hangzhou 310018,China Abstract

More information

Recovering the Communication of Power System Protection Quickly Via ZigBee Wireless Network for the Intelligent Protection Center Research

Recovering the Communication of Power System Protection Quickly Via ZigBee Wireless Network for the Intelligent Protection Center Research 2016 International Conference on Material Science and Civil Engineering (MSCE 2016) ISBN: 978-1-60595-378-6 Recovering the Communication of Power System Protection Quickly Via ZigBee Wireless Network for

More information

International Conference on Electromechanical Control Technology and Transportation (ICECTT 2015)

International Conference on Electromechanical Control Technology and Transportation (ICECTT 2015) International Conference on Electromechanical Control Technology and Transportation (ICECTT 015) The Analysis and Implementation of Edge Detection Algorithms in Image Processing Based on Matlab Yang Bao-liang1,a*,

More information

101. Design and realization of virtual prototype of shotcrete robot based on OpenGL

101. Design and realization of virtual prototype of shotcrete robot based on OpenGL 101. Design and realization of virtual prototype of shotcrete robot based on OpenGL Pei-si Zhong 1, Yi Zheng 2, Kun-hua Liu 3 1, 2, 3 Shandong University of Science and Technology, Qingdao, China 2 Qingdao

More information

Development and Application of Database System for Rubber Material

Development and Application of Database System for Rubber Material 4th International Conference on Information Systems and Computing Technology (ISCT 2016) Development and Application of Database System for Rubber Material Ningfei WU, Yan CAO, Yu BAI, Hu QIAO Department

More information

2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN:

2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN: 2017 International Conference on Economics, Management Engineering and Marketing (EMEM 2017) ISBN: 978-1-60595-502-5 Design of Attendance Check System Based on Ethernet Technology and Fingerprint Recognition

More information

Research on Heterogeneous Communication Network for Power Distribution Automation

Research on Heterogeneous Communication Network for Power Distribution Automation 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) Research on Heterogeneous Communication Network for Power Distribution Automation Qiang YU 1,a*, Hui HUANG

More information

Enhanced Data Rate (EDR) compliant with V2.0.E.2 of the. specification for both 2Mbps and 3Mbps modulation modes

Enhanced Data Rate (EDR) compliant with V2.0.E.2 of the. specification for both 2Mbps and 3Mbps modulation modes Key Features Fully Qualified Bluetooth V2.0+EDR Enhanced Data Rate (EDR) compliant with V2.0.E.2 of the specification for both 2Mbps and 3Mbps modulation modes BTM-06B CSR,BC417143 B-IRN-E4 REV 02 May

More information

Cemetery Navigation and Information Query System Based on Android and Java Web

Cemetery Navigation and Information Query System Based on Android and Java Web 2017 3rd International Conference on Computational Systems and Communications (ICCSC 2017) Cemetery Navigation and Information Query System Based on Android and Java Web Chao Ding1, a, Yongjie Yang1, b,

More information

Research on QR Code Image Pre-processing Algorithm under Complex Background

Research on QR Code Image Pre-processing Algorithm under Complex Background Scientific Journal of Information Engineering May 207, Volume 7, Issue, PP.-7 Research on QR Code Image Pre-processing Algorithm under Complex Background Lei Liu, Lin-li Zhou, Huifang Bao. Institute of

More information

A Design of Remote Monitoring System based on 3G and Internet Technology

A Design of Remote Monitoring System based on 3G and Internet Technology National Conference on Information Technology and Computer Science (CITCS 2012) A Design of Remote Monitoring System based on 3G and Internet Technology Shouxian WEN Lei XU Xingguo SUN Xiaohui LI* Abstract

More information

Speech Recognition Based on Efficient DTW Algorithm and Its DSP Implementation

Speech Recognition Based on Efficient DTW Algorithm and Its DSP Implementation Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 832 836 2012 International Workshop on Information and Electronics Engineering (IWIEE) Speech Recognition Based on Efficient DTW

More information

CATIA V5 Robust Design Method to Prevent Feature Failure Lihua Sun 1, Baoqing Zhang 2, Bo Li 3, Wei Yin 3

CATIA V5 Robust Design Method to Prevent Feature Failure Lihua Sun 1, Baoqing Zhang 2, Bo Li 3, Wei Yin 3 International Conference on Automation, Mechanical Control and Computational Engineering (AMCCE 2015) CATIA V5 Robust Design Method to Prevent Feature Failure Lihua Sun 1, Baoqing Zhang 2, Bo Li 3, Wei

More information

Hole repair algorithm in hybrid sensor networks

Hole repair algorithm in hybrid sensor networks Advances in Engineering Research (AER), volume 116 International Conference on Communication and Electronic Information Engineering (CEIE 2016) Hole repair algorithm in hybrid sensor networks Jian Liu1,

More information

Research on friction parameter identification under the influence of vibration and collision

Research on friction parameter identification under the influence of vibration and collision Research on friction parameter identification under the influence of vibration and collision Qiang Chen 1, Yingjun Wang 2, Ying Chen 3 1, 2 Department of Control and System Engineering, Nanjing University,

More information

A New Method Of VPN Based On LSP Technology

A New Method Of VPN Based On LSP Technology 2nd Joint International Information Technology, Mechanical and Electronic Engineering Conference (JIMEC 2017) A New Method Of VPN Based On LSP Technology HaiJun Qing 1, 2 1, 2, ChaoXiang Liang, LiPing

More information

Resarch and design for Low-power Wireless Meter Reading System

Resarch and design for Low-power Wireless Meter Reading System SCIREA Journal of Computer http://www.scirea.org/journal/computer April 19, 2017 Volume 2, Issue 2, April 2017 Resarch and design for Low-power Wireless Meter Reading System SU De-chao, ang Zhen-yu Department

More information

Design and Simulation Based on Pro/E for a Hydraulic Lift Platform in Scissors Type

Design and Simulation Based on Pro/E for a Hydraulic Lift Platform in Scissors Type Available online at www.sciencedirect.com Procedia Engineering 16 (2011 ) 772 781 International Workshop on Automobile, Power and Energy Engineering Design and Simulation Based on Pro/E for a Hydraulic

More information

Keywords: Cloud computing, ZigBee, Smart home, Security cloud

Keywords: Cloud computing, ZigBee, Smart home, Security cloud 2016 International Conference on Information Engineering and Communications Technology (IECT 2016) ISBN: 978-1-60595-375-5 Design of the Smart-home Security System based on Cloud Computing Yan Wang 1,a,

More information

Hands-Free Car Kit BT-600 SEE THE WORLD HANDS-FREE!

Hands-Free Car Kit BT-600 SEE THE WORLD HANDS-FREE! Hands-Free Car Kit BT-600 SEE THE WORLD HANDS-FREE! Quick User Guide Blue Warrior Car Kit. FCC Statement This device complies with part 15 of the FCC rules. Operation is subject to the following two conditions:

More information

Study on Intelligent Transportation Moving Targets Detection Based on. background Image Difference Method

Study on Intelligent Transportation Moving Targets Detection Based on. background Image Difference Method International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 5, Issue 7 (July 2016), PP.01-05 Study on Intelligent Transportation Moving Targets Detection

More information

ENGLISH TRUE WIRELESS EARPHONES OWNER S MANUAL

ENGLISH TRUE WIRELESS EARPHONES OWNER S MANUAL TRUE WIRELESS EARPHONES OWNER S MANUAL INTRODUCTION Thank you for purchasing a pair of PSB Speakers M4U TW1 earphones. Producing natural musical dynamics and precisely imaged sound, these high fidelity

More information

Design and Implementation of Dual-Mode Wireless Video Monitoring System

Design and Implementation of Dual-Mode Wireless Video Monitoring System Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Design and Implementation of Dual-Mode Wireless Video Monitoring System BAO Song-Jian, YANG Shou-Liang ChongQing University

More information

Skyrider Blue Kids Headphones

Skyrider Blue Kids Headphones Skyrider Blue Kids Headphones Instruction Manual GKIDBTB18 / GKIDBTP18 Contents Safety Warnings...4 Unpacking...6 Product Overview...7 Charging the Battery...8 Switching On/Off...9 Bluetooth Pairing...10

More information

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e*

AN WIRELESS COLLECTION AND MONITORING SYSTEM DESIGN BASED ON ARDUINO. Lu Shaokun 1,e* Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1076-1080 doi:10.4028/www.scientific.net/amr.971-973.1076 2014 Trans Tech Publications, Switzerland AN WIRELESS COLLECTION

More information

A Game Map Complexity Measure Based on Hamming Distance Yan Li, Pan Su, and Wenliang Li

A Game Map Complexity Measure Based on Hamming Distance Yan Li, Pan Su, and Wenliang Li Physics Procedia 22 (2011) 634 640 2011 International Conference on Physics Science and Technology (ICPST 2011) A Game Map Complexity Measure Based on Hamming Distance Yan Li, Pan Su, and Wenliang Li Collage

More information

2nd Annual International Conference on Advanced Material Engineering (AME 2016)

2nd Annual International Conference on Advanced Material Engineering (AME 2016) 2nd Annual International Conference on Advanced Material Engineering (AME 2016) Experimental and Modeling Studies of Engine Rubber Bushing Subjected to Impact Loading Xiong-Li-Ren JIANG1,a,, Na YANG1,b,*,

More information

Research on Semantics implementation method of domain specific modeling language of air-combat decision behavior based on Python.

Research on Semantics implementation method of domain specific modeling language of air-combat decision behavior based on Python. International Conference on Manufacturing Science and Engineering (ICMSE 2015) Research on Semantics implementation method of domain specific modeling language of air-combat decision behavior based on

More information

FIFTH SEMESTER. 12CS52 Computer Networks-I CSE CS53 Microprocessor & Microcontroller CSE

FIFTH SEMESTER. 12CS52 Computer Networks-I CSE CS53 Microprocessor & Microcontroller CSE R. V. COLLEGE OF ENGINEERING, BENGALURU 59. (An Autonomous Institution affiliated to VTU, Belgavi) DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING SCHEME OF TEACHING AND EXAMINATION FIFTH SEMESTER No. Course

More information

An Agricultural Tri-dimensional Pollution Data Management Platform Based on DNDC Model

An Agricultural Tri-dimensional Pollution Data Management Platform Based on DNDC Model An Agricultural Tri-dimensional Pollution Data Management Platform Based on DNDC Model Lihua Jiang 1,2, Wensheng Wang 1,2, Xiaorong Yang 1,2, Nengfu Xie 1,2, and Youping Cheng 3 1 Agriculture Information

More information

Citation for the original published paper (version of record):

Citation for the original published paper (version of record): http://www.diva-portal.org This is the published version of a paper published in Procedia Engineering. Citation for the original published paper (version of record): Zhang, D., Lu, J., Wang, L., Li, J.

More information

A new Class of Priority-based Weighted Fair Scheduling Algorithm

A new Class of Priority-based Weighted Fair Scheduling Algorithm Available online at www.sciencedirect.com Physics Procedia 33 (2012 ) 942 948 2012 International Conference on Medical Physics and Biomedical Engineering A new Class of Priority-based Weighted Fair Scheduling

More information

WeVe: When Smart Wearables Meet Intelligent Vehicles

WeVe: When Smart Wearables Meet Intelligent Vehicles WeVe: When Smart Wearables Meet Intelligent Vehicles Jiajia Liu School of Cyber Engineering, Xidian University, Xi an, China Smart wearables and intelligent vehicles constitute indispensable parts of Internet

More information

The Design of Wireless Data Acquisition and Remote Transmission Interface in Micro-seismic Signals

The Design of Wireless Data Acquisition and Remote Transmission Interface in Micro-seismic Signals Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Design of Wireless Data Acquisition and Remote Transmission Interface in Micro-seismic Signals Huan-Huan BIAN, Yu-Duo

More information

Related Work The Concept of the Signaling. In the mobile communication system, in addition to transmit the necessary user information (usually voice

Related Work The Concept of the Signaling. In the mobile communication system, in addition to transmit the necessary user information (usually voice International Conference on Information Science and Computer Applications (ISCA 2013) The Research and Design of Personalization preferences Based on Signaling analysis ZhiQiang Wei 1,a, YiYan Zhang 1,b,

More information

Quick-Start Guide...3. Operation...5. Volume Control...4. Sound Quality...4. Dial tones and speaker mute note...5. Connection...5. Dial...

Quick-Start Guide...3. Operation...5. Volume Control...4. Sound Quality...4. Dial tones and speaker mute note...5. Connection...5. Dial... Owner s Manual Index English Quick-Start Guide...3 Operation...5 Volume Control...4 Sound Quality...4 Dial tones and speaker mute note...5 Connection...5 Dial...6 End a Call...6 Reject a Call...6 Private

More information

Online Teaching Evaluation System Design and Implementation

Online Teaching Evaluation System Design and Implementation International Conference on Humanities Science, Management and Education Technology (HSMET 2017) Online Teaching Evaluation System Design and Implementation Baosheng Qi Department of Information Engineering

More information