Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen

Size: px
Start display at page:

Download "Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen"

Transcription

1 Applied Mechanics and Materials Online: ISSN: , Vols , pp doi: / Trans Tech Publications, Switzerland Realization of Automatic Keystone Correction for Smart mini Projector Projection Screen Baolong Zhang 1,a, Weiqi Ding 2,b, Shaojing Zhang 3,c and Huishuang Shi 4,d 1 College of Information and Automation, Tianjin University of Science and Technology, Tianjin, , China a eezbl@tust.edu.cn, b dwqqwdpl3000@163.com, c zhangshaojing111@sina.com, d shihuishuang@sina.com Keywords: Android; mini projector; keystone correction; acceleration sensor Abstract. With the rapid development of mobile internet, the projector becomes the terminal of mobile internet because of the network module embedded in smart projectors, which can provide a more convenient viewing experience. For traditional mini projector just as simple display equipment, the integration of Android operating system makes mini projector smarter, it is equivalent to a simple PC with projection function. This paper discusses the projection screen keystone distortion phenomenon of mini projector equipped with Android operating system under limiting projection environment because of different placement angle and how to eliminate the above-mentioned distortion, after elaborating the software and hardware architecture of smart mini projector, it focuses upon an analysis on how to achieve automatic correction of the projection screen using the digital acceleration sensor in hardware driver of the Android operating system. Introduction During the normal use of the projector, the axis is perpendicular to the projected plane in the projection light, and therefore, the rectangular projection screen can be displayed on the projection plane. If there is an angle θ between projector and horizontal plane, as shown in Fig.1, then there will be an angle α between projection optical axis of the projector and the projected screen in the vertical direction, at this time, the projection screen will produce vertical keystone distortion, similarly, if there is an angle between optical axis of the projector and the projected screen in the horizontal direction, then the projection screen will produce horizontal keystone distortion. During normal use of the projector, the protection optical axis usually cannot be perpendicular to the projected plane due to external environmental constraints, therefore, the projection screen keystone correction is emerged at the right moment, vertical keystone correction is more practical and common, the paper focuses on how to achieve the automatic keystone correction in vertical direction, the schematic diagram for keystone correction effect is as shown in Fig.2. The projection screen keystone correction of projector mainly includes optical keystone correction and electronic keystone correction, optical keystone correction means to correct keystone picture by adjusting the optical lenses, the electronic keystone correction is divided into hardware keystone correction and software keystone correction, respectively achieving keystone correction by electronic signal offset, software interpolation and other algorithms, the hardware keystone correction uses dedicated hardware circuits, the control operation of keystone correction is very simple, but the complexity of the hardware is increased; software keystone correction is achieved by interpolation and other software algorithms, without additional hardware circuit, but the display effect is not as good as dedicated hardware circuit, and it also takes up valuable CPU resources. This paper uses dedicated display chip integrated with keystone correction hardware module to achieve keystone correction. All rights reserved. No part of contents of this paper may be reproduced or transmitted in any form or by any means without the written permission of Trans Tech Publications, (ID: , Pennsylvania State University, University Park, USA-12/05/16,00:50:33)

2 Applied Mechanics and Materials Vols Fig. 1. Schematic diagram for keystone distortion Vertical keystone correction (before) Vertical keystone correction (after) Fig. 2. Schematic diagram for keystone correction effect System architecture of smart mini projector Laptop has solved the drawbacks of inconvenience to carry for desktop, but it is still very heavy and inconvenient, but smart phone, tablet, netbook and other equipment cross the gulf of "portability", however, its display screen size limitations can not meet people's visual needs. The mini projector becomes popular among people for its small size, easy to carry, large-screen display and other advantages. Traditional one will eventually be phased out only as a mini projector to display output device, and at present, the smart mini projector is combined with operating system, equipped with network capabilities and also becomes the terminal of mobile internet. Fig. 3. Framework diagram for smart mini projector hardware Fig.3 is a framework diagram for smart mini projector hardware, which is mainly divided into four parts - input module, output module, control core and network module. Input module includes the

3 506 Computer and Information Technology interactionequipment of user and mini projector and signal input interface, such as HDMI interface, touch tablet, infrared receiver, acceleration sensor, etc. The output module is divided into two parts, respectively including the audio output module and video output module. The audio output module consists of the audio decoding chip, power amplifier and loudspeaker. The video output module is based on LCoS (Liquid Crystal on Silicon) micro-projection technology and consists of the video encoding and decoding control chip, high-power LED drive circuit, LCoS control chip and optical engine lenses. Control core includes a memory or storage equipment, a CPU with ARM cortex-a8 architecture and an 8-bit microcontroller. The memory includes Samsung's flash and DDR3, used to store the operating system and data, SD card is used to make up for lack of storage space. Core processor shall be processing chip based on ARM cortex-a8, the dominant frequency is up to 1GHz, video processor subsystem is embedded within it and with good performance on processing video decoding, etc. Network function is a major feature of the smart projector, network communication consists of wireless radio frequency module, due to the integration of network functions, the smart projector becomes the terminal of mobile internet.the software operating system of smart projector shall be Android 2.3 operating system, originally, Android operating system is specially designed for smart phones based on the Linux open-source operating system in Google in November 2007, which has experienced generations of development, by virtue of its free open source characteristics, gradually developed and improved system performance and strong application market, making the integration of smart handheld terminal equipment become imperative. Fig. 4. Framework diagram for Android operating system Android operating system framework diagram is as shown in Fig.4; the Android operating system is established on basis of Linux kernel[2] and divided into application layer from top to bottom, application framework layer, system runtime library, Android operating environment, virtual machine layer and Linux kernel layer. Since Google has excellently optimized the software in the middle layer of Android operating system, therefore, its integration part with mini projector is mainly the combination of Linux kernel layer and hardware, namely, the programming of hardware driver on the bottom layer of Linux related to projector, and thus the screen automatic keystone correction focuses on the programming related to keystone correction driver in Linux kernel.acceleration sensor is used in the design to carry out real-time monitoring on the angle between mini projector and the horizontal plane, quantify the acceleration values related to the angle and then carry out further processing on quantitative data in acceleration sensor driver of Linux kernel. Because in the design, the image keystone correction is handled by image keystone correction module in video encoding and decoding

4 Applied Mechanics and Materials Vols display chip, it only needs to simply configure register control, therefore, after corresponding conversion of the data in acceleration sensor drive, configuring video encoding and decoding display chip register simply can achieve real-time keystone correction. Realization of projection screen automatic keystone correction using acceleration sensor Fig. 5. Schematic diagram for MMA8452Q Fig. 6. Linux I2C driver architecture MMA8452Q researched and developed by Freescale Company is a 3-axis 8/12-bit digital acceleration sensor[5], also known as accelerometer, shown in Fig.5, it can measure the relationship between the deflection angles of X, Y, Z-axis and vertical axis and can accordingly measure the acceleration in each direction. Mounting the accelerometer at a suitable position of the projector closely so that the X or Y axis of accelerometer can be parallel to the projection axis, the capacitance measuring circuit in accelerometer can measure the acceleration values related to the deflection angle of projector and horizontal plane and store quantitative data. MMA8452Q uses I2C (Inter-Integrated Circuit) protocol and microprocessor to transfer data or instructions, after the MMA8452Q senses the angle between the projector projection optical axis and the horizontal plane and quantifies the information into 12 or 8-bit data, the microprocessor can read the register of MMA8452Q to obtain quantitative data related to the angle. The Linux version in design is , MMA8452Q driver is established with I2C driver architecture as the skeleton, Linux kernel I2C driver architecture is as shown in Fig.6. I2C driver can be divided into two parts including I2C equipment driver and I2C bus driver[3][4]. Operation of I2C module is very simple, but its implementation in linux is more complex, the driver becomes complex due to highly abstract software module and software layering[1], but the layering idea of software improves service efficiency of software and makes maintenance and management convenient. I2C bus driver achieves the control on internal I2C controller of microprocessor and builds communication time sequence and this part is developed and optimized by the linux kernel maintainers, and without energy from application developers. The I2C equipment driver involves in specific hardware equipment, including the use of function reference in I2C-Core to complete the configuration of hardware registers, the achievement of communication with the upper layer and establishment of the application program interface, this part must be completed by the equipment vendors or application developers. MMA8452Q driver flowchart is as shown in Fig.7. MMA8452Q driver is character-driven, this driver is mainly divided into four software modules, the first is I2C module for MMA8452Q hardware initialization, which is used to configure the acceleration sensor, such as the resolution of the sensor, operation mode, the interrupt control and reading MMA8452Q sensing angle information, etc.; the second is the input subsystem in universal input equipment architecture, used for reporting data obtained by the sensor to the upper software of Android; the third module is programming interface left for the application, which can achieve interaction of the application on upper layer with MMA8452Q through this interface to a certain extent; the fourth module is used to create the node information in the sys file system, manage the equipment and also achieve mutual communication with other processes through it.

5 508 Computer and Information Technology I2C match N Get device ID Y Config control circuit interrupt Register input device Register misc deviece Creat node in sysfs Config accelerator End Fig. 7. MMA8452Q driver flowchart Fig. 8. Realization of keystone correction data stream in Android operating system The data is converted after the driver obtains the data related to the angle between the projector and the horizontal direction, then the software processing shall be conducted to obtain a stable angle value. And the value shall be reported to the android upper layer and used for adjusting the screen. The angle values after filtering software shall be transmitted to the driver of display chip and complete keystone correction through configuring the corresponding register of display chip. Processing of related keystone correction data in Android operating system The schematic diagram for processing of related keystone correction data in Android operating system is as shown in Fig.8, when the capacitance measuring circuit of accelerometer MMA8452Q detects there is deflection angle between projector projection axis and the horizontal plane, the acceleration values of three axis for accelerometer are changed, thereby generating data related to the offset angle, the accelerometer will quantify this data and send the interruption to the microprocessor. After the MMA8452Q driver in Linux kernel obtains the data after quantization through I2C, on the one hand, it will convert the data format, process them in package and report data to the Android system runtime library layer through Input subsystem, in hardware abstraction layer, it contains the function set of operating accelerometer, data can be further reported to the Android application framework layer through JNI (java native interface)[2]. In application framework layer, there is sensor manager to be responsible for the communication between application layer and the system runtime library layer so that the accelerometer data can be captured by the sensor event listener in application finally. Similarly, the upper software can call the set of functions from the system runtime library through sensor manager and JNI and obtain the configuration parameters through interface functions created by the misc equipment such as mma8452_open, mma8452_release, mma8452_ioctl and other function interfaces or operating mode for configuring MMA8452Q. On the other hand, the corresponding deflection angle value can be obtained after extracting the data of X -axis or Y-axis parallel to the projection axis from the obtained quantitative data and converting the data format, Due to mechanical shaking, measurement error and other reasons, a stable

6 Applied Mechanics and Materials Vols deflection angle value is required to obtain, therefore, it needs to conduct software processing on the values, simply taking average and taking mid-value in sequence can not meet the requirements in case of a occasional larger mechanical shaking value, this paper uses a kind of simple software state processing method, the data enters into the software processing module as entering into the queue, as shown in Fig.9, if there are m stable values in n continuous input data, the output shall be this stable value and the comparison parameter in software modules shall be updated to the stable value, if the new input data is equal to the comparison parameter, the data shall be output directly, adjusting m value is to regulate the error-tolerant rate, this method can obtain a more stable output value. After obtaining a stable output angle, the keystone correction module in function configuration image processing engine use exported from Optical Engine Driver through EXPORT_SYMBOL[4] can be used to obtain ideal keystone correction effect, when the deflection angle of the projector changes, real-time keystone correction can be carried out. Conclusion Fig. 9. Processing of software output stable value This paper analyzes the real-time keystone correction using digital acceleration sensor under the Android operating system platform, keystone correction display effect is better in the test. In Linux drive, it achieves the drive of optical engine driver and MMA8452Q digital accelerometer related to video display encoding and decoding chip, MMA8452Q driver conducts real-time monitoring on declination value of smart mini projector and the horizontal plane, using I2C communication to obtains data and using deflection angle value to configure the relevant register in optical engine driver can obtain keystone correction effect. This paper makes a general description on the realization of keystone correction data processing in Android operating system, briefly describes how to manipulate the data in the different Android software layers and also analyzes the stable output process of the data in software. References [1] Yu Zhang, Linux Kernel Module Programming Guide, third ed., Tsinghua University Press, Beijing, 2004 (in Chinese). [2] Zhuan Wu, Inside the Android Framework, Posts and Telecom Press, Beijing, 2012(in Chinese). [3] Miao Liu, Embedded System Interface Design and Linux Driver Development, Beihang University Press, Beijing, 2006 (in Chinese). [4] Guojin Fung, Embedded Linux Driver Design, Tsinghua University Press, Beijing, 2008 (in Chinese). [5] Information on

7 Computer and Information Technology / Realization of Automatic Keystone Correction for Smart Mini Projector Projection Screen /

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

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun

The Design of CAN Bus Communication System Based on MCP2515 and S3C2440 Jinmei Liu, Junhong Wang, Donghui Sun Advanced Materials Research Online: 2014-05-21 ISSN: 1662-8985, Vol. 933, pp 516-520 doi:10.4028/www.scientific.net/amr.933.516 2014 Trans Tech Publications, Switzerland The Design of CAN Bus Communication

More information

Design and Implementation of LED Display Screen Controller based on STM32 and FPGA Chi Zhang 1,a, Xiaoguang Wu 1,b and Chengjun Zhang 1,c

Design and Implementation of LED Display Screen Controller based on STM32 and FPGA Chi Zhang 1,a, Xiaoguang Wu 1,b and Chengjun Zhang 1,c Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 268-270, pp 1578-1582 doi:10.4028/www.scientific.net/amm.268-270.1578 2013 Trans Tech Publications, Switzerland Design and Implementation

More information

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2

Research on the Application of Digital Images Based on the Computer Graphics. Jing Li 1, Bin Hu 2 Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 4998-5002 doi:10.4028/www.scientific.net/amm.556-562.4998 2014 Trans Tech Publications, Switzerland Research on the

More information

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c

Research Of Data Model In Engineering Flight Simulation Platform Based On Meta-Data Liu Jinxin 1,a, Xu Hong 1,b, Shen Weiqun 2,c Applied Mechanics and Materials Online: 2013-06-13 ISSN: 1662-7482, Vols. 325-326, pp 1750-1753 doi:10.4028/www.scientific.net/amm.325-326.1750 2013 Trans Tech Publications, Switzerland Research Of Data

More information

A Digital Menu System Based on the Cloud client Technology Lin Dong 1, a, Weibo Li 1, b, Ping He 2,c,Jia Liu 1,d

A Digital Menu System Based on the Cloud client Technology Lin Dong 1, a, Weibo Li 1, b, Ping He 2,c,Jia Liu 1,d Applied Mechanics and Materials Online: 2012-11-29 ISSN: 1662-7482, Vol. 235, pp 389-393 doi:10.4028/www.scientific.net/amm.235.389 2012 Trans Tech Publications, Switzerland A Digital Menu System Based

More information

Design and Implementation of MP3 Player Based on FPGA Dezheng Sun

Design and Implementation of MP3 Player Based on FPGA Dezheng Sun Applied Mechanics and Materials Online: 2013-10-31 ISSN: 1662-7482, Vol. 443, pp 746-749 doi:10.4028/www.scientific.net/amm.443.746 2014 Trans Tech Publications, Switzerland Design and Implementation of

More information

The RTP Encapsulation based on Frame Type Method for AVS Video

The RTP Encapsulation based on Frame Type Method for AVS Video Applied Mechanics and Materials Online: 2012-12-27 ISSN: 1662-7482, Vols. 263-266, pp 1803-1808 doi:10.4028/www.scientific.net/amm.263-266.1803 2013 Trans Tech Publications, Switzerland The RTP Encapsulation

More information

The Design of Wireless Data Collector based on WIA-PA Ligang Li 1,2,a, Zhongfeng Wang 1,2,b, Jianlong Huang 1,2,c

The Design of Wireless Data Collector based on WIA-PA Ligang Li 1,2,a, Zhongfeng Wang 1,2,b, Jianlong Huang 1,2,c Advanced Materials Research Online: 04-06-5 ISSN: 66-8985, Vols. 97-97, pp 79-794 doi:0.408/www.scientific.net/amr.97-97.79 04 Trans Tech Publications, Switzerland The Design of Wireless Data Collector

More information

The Research about Embedded Soft PLC Running System Based on ARM

The Research about Embedded Soft PLC Running System Based on ARM Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com The Research about Embedded Soft PLC Running System Based on ARM Fang Ding, Suzhuo Wu College of Aeronautical Automation,

More information

Design and Development of Control System for Three- Dimensional Wireless Human-Computer

Design and Development of Control System for Three- Dimensional Wireless Human-Computer IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 3 Ver. II (May Jun. 2014), PP 71-76 Design and Development of Control System for

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 design of real-time image processing platform based on TMS320C6678

A design of real-time image processing platform based on TMS320C6678 Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1454-1458 doi:10.4028/www.scientific.net/amr.971-973.1454 2014 Trans Tech Publications, Switzerland A design of real-time

More information

The Application of Programmable Controller to Chip Design. Shihong Lan 1, Jian Zhang 2

The Application of Programmable Controller to Chip Design. Shihong Lan 1, Jian Zhang 2 Applied Mechanics and Materials Online: 2013-01-11 ISSN: 1662-7482, Vol. 273, pp 722-725 doi:10.4028/www.scientific.net/amm.273.722 2013 Trans Tech Publications, Switzerland The Application of Programmable

More information

Keywords: Interactive electronic technical manuals; GJB6600; XML markup language; Automatic control equipment

Keywords: Interactive electronic technical manuals; GJB6600; XML markup language; Automatic control equipment Applied Mechanics and Materials Submitted: 2014-06-11 ISSN: 1662-7482, Vols. 602-605, pp 1165-1168 Accepted: 2014-06-11 doi:10.4028/www.scientific.net/amm.602-605.1165 Online: 2014-08-11 2014 Trans Tech

More information

Applied Mechanics and Materials Vol

Applied Mechanics and Materials Vol Applied Mechanics and Materials Online: 2014-02-27 ISSN: 1662-7482, Vol. 532, pp 280-284 doi:10.4028/www.scientific.net/amm.532.280 2014 Trans Tech Publications, Switzerland A Practical Real-time Motion

More information

The Application Analysis and Network Design of wireless VPN for power grid. Wang Yirong,Tong Dali,Deng Wei

The Application Analysis and Network Design of wireless VPN for power grid. Wang Yirong,Tong Dali,Deng Wei Applied Mechanics and Materials Online: 2013-09-27 ISSN: 1662-7482, Vols. 427-429, pp 2130-2133 doi:10.4028/www.scientific.net/amm.427-429.2130 2013 Trans Tech Publications, Switzerland The Application

More information

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c

A CNC equipment distributed monitoring system based on cloud computing technology RangYong Zhang a, Geng Ma b, GuangHe Cheng c Advanced Materials Research Submitted: 2014-07-26 ISSN: 1662-8985, Vol. 1022, pp 392-395 Accepted: 2014-07-28 doi:10.4028/www.scientific.net/amr.1022.392 Online: 2014-08-28 2014 Trans Tech Publications,

More information

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu

Shape Optimization Design of Gravity Buttress of Arch Dam Based on Asynchronous Particle Swarm Optimization Method. Lei Xu Applied Mechanics and Materials Submitted: 2014-08-26 ISSN: 1662-7482, Vol. 662, pp 160-163 Accepted: 2014-08-31 doi:10.4028/www.scientific.net/amm.662.160 Online: 2014-10-01 2014 Trans Tech Publications,

More information

Study and Design of CAN / LIN Hybrid Network of Automotive Body. Peng Huang

Study and Design of CAN / LIN Hybrid Network of Automotive Body. Peng Huang Advanced Materials Research Online: 2014-06-30 ISSN: 1662-8985, Vol. 940, pp 469-474 doi:10.4028/www.scientific.net/amr.940.469 2014 Trans Tech Publications, Switzerland Study and Design of CAN / LIN Hybrid

More information

Design of a Smart Classroom Broadcasting System Based on WSN He Gong a, Zhu Wen b, Ziyu Wu b, Manhua Yu b

Design of a Smart Classroom Broadcasting System Based on WSN He Gong a, Zhu Wen b, Ziyu Wu b, Manhua Yu b Advanced Materials Research Online: 2013-12-13 ISSN: 1662-8985, Vols. 850-851, pp 520-524 doi:10.4028/www.scientific.net/amr.850-851.520 2014 Trans Tech Publications, Switzerland Design of a Smart Classroom

More information

Wireless Remote Water Meter Design of Automatic Meter Reading System

Wireless Remote Water Meter Design of Automatic Meter Reading System , pp. 289-298 http://dx.doi.org/10.14257/ijsh.2015.9.12.29 Wireless Remote Water Meter Design of Automatic Meter Reading System Zhu HengJun 1 and Zhu YiSheng 2 Communication and electronic engineering

More information

The Design of Distributed File System Based on HDFS Yannan Wang 1, a, Shudong Zhang 2, b, Hui Liu 3, c

The Design of Distributed File System Based on HDFS Yannan Wang 1, a, Shudong Zhang 2, b, Hui Liu 3, c Applied Mechanics and Materials Online: 2013-09-27 ISSN: 1662-7482, Vols. 423-426, pp 2733-2736 doi:10.4028/www.scientific.net/amm.423-426.2733 2013 Trans Tech Publications, Switzerland The Design of Distributed

More information

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b

Construction of the Library Management System Based on Data Warehouse and OLAP Maoli Xu 1, a, Xiuying Li 2,b Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 380-384, pp 4796-4799 doi:10.4028/www.scientific.net/amm.380-384.4796 2013 Trans Tech Publications, Switzerland Construction of

More information

Design and Implementation of Aquarium Remote Automation Monitoring and Control System

Design and Implementation of Aquarium Remote Automation Monitoring and Control System Design and Implementation of Aquarium Remote Automation Monitoring and Control System Yinchi Ma 1,2,* and Wen Ding 1,2 1 Beijing Fisheries Research Institute, Beijing, 100068, China 2 National Engineering

More information

Research on Mine Gas Monitoring System Based on Single-chip Microcomputer

Research on Mine Gas Monitoring System Based on Single-chip Microcomputer 2018 2nd International Conference on Systems, Computing, and Applications (SYSTCA 2018) Research on Mine Gas Monitoring System Based on Single-chip Microcomputer Shusen Meng Jiangsu Vocational Institute

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

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b

Constructing an University Scientific Research Management Information System of NET Platform Jianhua Xie 1, a, Jian-hua Xiao 2, b Applied Mechanics and Materials Online: 2013-12-04 ISSN: 1662-7482, Vol. 441, pp 984-988 doi:10.4028/www.scientific.net/amm.441.984 2014 Trans Tech Publications, Switzerland Constructing an University

More information

Research of Video Surveillance and Diagnosis System for Plant Diseases Based on DM6446 Wang Xiuqing 1, a Qie Xu 1, b Zhang Chunxia 1, c Zhao Na 1, d

Research of Video Surveillance and Diagnosis System for Plant Diseases Based on DM6446 Wang Xiuqing 1, a Qie Xu 1, b Zhang Chunxia 1, c Zhao Na 1, d Applied Mechanics and Materials Online: 2013-08-30 ISSN: 1662-7482, Vols. 373-375, pp 892-896 doi:10.4028/www.scientific.net/amm.373-375.892 2013 Trans Tech Publications, Switzerland Research of Video

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

Design of a Multi-parameter Measurement System

Design of a Multi-parameter Measurement System TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.4, April 2014, pp. 3118 ~ 3125 DOI: http://dx.doi.org/10.11591/telkomnika.v12i4.4782 3118 Design of a Multi-parameter Measurement System

More information

Flexible Calibration of a Portable Structured Light System through Surface Plane

Flexible Calibration of a Portable Structured Light System through Surface Plane Vol. 34, No. 11 ACTA AUTOMATICA SINICA November, 2008 Flexible Calibration of a Portable Structured Light System through Surface Plane GAO Wei 1 WANG Liang 1 HU Zhan-Yi 1 Abstract For a portable structured

More information

Design and Implementation of Archives Query System Based on B/S Structure Lianfeng Zhao

Design and Implementation of Archives Query System Based on B/S Structure Lianfeng Zhao Applied Mechanics and Materials Online: 2012-12-13 ISSN: 1662-7482, Vols. 241-244, pp 3098-3102 doi:10.4028/www.scientific.net/amm.241-244.3098 2013 Trans Tech Publications, Switzerland Design and Implementation

More information

Tablet MODECOM FreeTAB1004 IPS X4

Tablet MODECOM FreeTAB1004 IPS X4 MODECOM FreeTAB 1004 IPS X4 new member of Quad-Core family MODECOM FreeTAB 1004 IPS X4 is a tablet PC of outstanding technical parameters, efficiency and design and excellent price. This high-end device

More information

Design of Embedded Network Voice Communication Terminal Based on STM32 and μcosiii

Design of Embedded Network Voice Communication Terminal Based on STM32 and μcosiii Design of Embedded etwork Voice Terminal Based on STM32 and μcosiii Li Ji 1,*, Shao Qiongling 1, and Wang Shengjun 1 1 Aerospace Engineering University, The Bayi Road of Huairou District, Beijing, China

More information

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D

The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG 3, C, Dongxu XIANG 4,D International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) The Application of CAN Bus in Intelligent Substation Automation System Yuehua HUANG 1, a, Ruiyong LIU 2, b, Peipei YANG

More information

INTERRA I-MINI TOUCHPANEL GENERAL INFORMATION

INTERRA I-MINI TOUCHPANEL GENERAL INFORMATION INTERRA I-MINI TOUCHPANEL GENERAL INFORMATION INTERRA@2018 GENERAL INFORMATION INTERRA IMINI TOUCHPANEL is an electronic device used in building automation systems. TECHNICAL SPECIFICATION: CPU Memory

More information

CSC 170 Introduction to Computers and Their Applications. Computers

CSC 170 Introduction to Computers and Their Applications. Computers CSC 170 Introduction to Computers and Their Applications Lecture #4 Digital Devices Computers At its core, a computer is a multipurpose device that accepts input, processes data, stores data, and produces

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

IoT Based Disaster Detection and Early Warning Device

IoT Based Disaster Detection and Early Warning Device IoT Based Disaster Detection and Early Warning Device Amjath Ali J 1, B. Thangalakshmi 2, A. Vincy Beaulah 3 1 Lecturer, Department of Electrical and Electronics Engg., Ibra college of Technology, Oman

More information

Design and Implementation of CNC Operator Panel Control Functions Based on CPLD. Huaqun Zhan, Bin Xu

Design and Implementation of CNC Operator Panel Control Functions Based on CPLD. Huaqun Zhan, Bin Xu Advanced Materials Research Online: 2013-07-31 ISSN: 1662-8985, Vol. 722, pp 428-432 doi:10.4028/www.scientific.net/amr.722.428 2013 Trans Tech Publications, Switzerland Design and Implementation of CNC

More information

A Raspberry Pi Based System for ECG Monitoring and Visualization

A Raspberry Pi Based System for ECG Monitoring and Visualization A Raspberry Pi Based System for ECG Monitoring and Visualization S. Pisa, E. Pittella, E. Piuzzi, L. Cecchini, M. Tomassi Dept. of Information Engineering, Electronics and Telecommunications Sapienza University

More information

Android System Development Training 4-day session

Android System Development Training 4-day session Android System Development Training 4-day session Title Android System Development Training Overview Understanding the Android Internals Understanding the Android Build System Customizing Android for a

More information

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology

Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Agriculture Wireless Temperature and Humidity Sensor Network Based on ZigBee Technology Xi Wang 1 and Hui Gao 2 1 Heilongjiang Bayi Agricultural Reclamation University, Daqing 163319, China 2 Lanzhou Jiaotong

More information

MYD-SAMA5D3X Development Board

MYD-SAMA5D3X Development Board MYD-SAMA5D3X Development Board MYC-SAMA5D3X CPU Module as Controller Board DDR2 SO-DIMM 200-pin Signals Consistent with Atmel's Official Board 536MHz Atmel SAMA5D3 Series ARM Cortex-A5 Processors 512MB

More information

Web-Based Monitoring for Frequency Converters with USS Interface

Web-Based Monitoring for Frequency Converters with USS Interface Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 1866-1869 doi:10.4028/www.scientific.net/amr.971-973.1866 2014 Trans Tech Publications, Switzerland Web-Based Monitoring

More information

Research on Full-text Retrieval based on Lucene in Enterprise Content Management System Lixin Xu 1, a, XiaoLin Fu 2, b, Chunhua Zhang 1, c

Research on Full-text Retrieval based on Lucene in Enterprise Content Management System Lixin Xu 1, a, XiaoLin Fu 2, b, Chunhua Zhang 1, c Applied Mechanics and Materials Submitted: 2014-07-18 ISSN: 1662-7482, Vols. 644-650, pp 1950-1953 Accepted: 2014-07-21 doi:10.4028/www.scientific.net/amm.644-650.1950 Online: 2014-09-22 2014 Trans Tech

More information

IoT Based Traffic Signalling System

IoT Based Traffic Signalling System IoT Based Traffic Signalling System Ashok. P.V B.Tech Graduate, Department of Information Technology, SivaSankari.S Assistant Professor, Department of Information Technology, Vignesh Mani B.Tech Graduate,

More information

Intentionally Blank 0

Intentionally Blank 0 Intentionally Blank 0 Technology in Action Chapter 2 Looking at Computers: Understanding the Parts 1 Understanding Your Computer: Computers are Data Processing Devices Perform four major functions Input:

More information

Temperature Measurement and Control System Based on Embedded WEB

Temperature Measurement and Control System Based on Embedded WEB Temperature Measurement and Control System Based on Embedded WEB Limin Cai College of Physics and Information Engineering, Jianghan University Wuhan 430056, China Tel: 86-27-8422-6780 E-mail: cailm@yahoo.cn

More information

Optimal Design of the Data Center Environmental Temperature Monitoring ZhiXiang Yuan 1,2, a, ShuangBo Lai 2,b, Ming Liu 1,c, HuiYi Zhang 1,2, d

Optimal Design of the Data Center Environmental Temperature Monitoring ZhiXiang Yuan 1,2, a, ShuangBo Lai 2,b, Ming Liu 1,c, HuiYi Zhang 1,2, d Applied Mechanics and Materials Online: 2014-05-23 ISSN: 1662-7482, Vols. 556-562, pp 2810-2815 doi:10.4028/www.scientific.net/amm.556-562.2810 2014 Trans Tech Publications, Switzerland Optimal Design

More information

HAND GESTURE RECOGNITION USING MEMS SENSORS

HAND GESTURE RECOGNITION USING MEMS SENSORS HAND GESTURE RECOGNITION USING MEMS SENSORS S.Kannadhasan 1, R.Suresh 2,M.Shanmuganatham 3 1,2 Lecturer, Department of EEE, Tamilnadu Polytechnic College, Madurai, Tamilnadu, (India) 3 Senior Lecturer,

More information

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network

The Analysis of the Loss Rate of Information Packet of Double Queue Single Server in Bi-directional Cable TV Network Applied Mechanics and Materials Submitted: 2014-06-18 ISSN: 1662-7482, Vol. 665, pp 674-678 Accepted: 2014-07-31 doi:10.4028/www.scientific.net/amm.665.674 Online: 2014-10-01 2014 Trans Tech Publications,

More information

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b

Customizing dynamic libraries of Qt based on the embedded Linux Li Yang 1,a, Wang Yunliang 2,b Applied Mechanics and Materials Submitted: 2014-11-12 ISSN: 1662-7482, Vol. 740, pp 782-785 Accepted: 2014-12-02 doi:10.4028/www.scientific.net/amm.740.782 Online: 2015-03-09 2015 Trans Tech Publications,

More information

Design And Implementation Of Ordering System For Restaurants

Design And Implementation Of Ordering System For Restaurants Design And Implementation Of Ordering System For Restaurants V. Swapna (A), M. Firdouse Ali Khan (B) (a) Department of ECE, ATRI, Parvathapur, Hyderabad. (b) Snr.Asst.Professor, Department of ECE, ATRI,

More information

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li Applied Mechanics and Materials Submitted: 2014-08-05 ISSN: 1662-7482, Vols. 651-653, pp 1953-1957 Accepted: 2014-08-06 doi:10.4028/www.scientific.net/amm.651-653.1953 Online: 2014-09-30 2014 Trans Tech

More information

YI Mirror Dash Camera

YI Mirror Dash Camera YI Mirror Dash Camera 2018.01.17 上海小蚁科技有限公司 YI Mirror Dash Camera Reverse Image Easy Switch Picture in Picture Dual Recorder 4.3 Wide Touch Screen Night Vision 4G all-glass lens Emergency Recording Wi-Fi

More information

ARDUINO BOARD LINE UP

ARDUINO BOARD LINE UP Technical Specifications Pinout Diagrams Technical Comparison Board Name Processor Operating/Input Voltage CPU Speed Analog In/Out Digital IO/PWM USB UART 101 Intel Curie 3.3 V/ 7-12V 32MHz 6/0 14/4 Regular

More information

Serial Communication Based on LabVIEW for the Development of an ECG Monitor

Serial Communication Based on LabVIEW for the Development of an ECG Monitor Advanced Materials Research Online: 2013-08-16 ISSN: 1662-8985, Vols. 734-737, pp 3003-3006 doi:10.4028/www.scientific.net/amr.734-737.3003 2013 Trans Tech Publications, Switzerland Serial Communication

More information

A Compatible Public Service Platform for Multi-Electronic Certification Authority

A Compatible Public Service Platform for Multi-Electronic Certification Authority Applied Mechanics and Materials Submitted: 2014-04-26 ISSN: 1662-7482, Vol. 610, pp 579-583 Accepted: 2014-05-26 doi:10.4028/www.scientific.net/amm.610.579 Online: 2014-08-11 2014 Trans Tech Publications,

More information

SMART PROJECTOR USER MANUAL. Please read the manual carefully before using and keep it in a safe place for future reference..

SMART PROJECTOR USER MANUAL. Please read the manual carefully before using and keep it in a safe place for future reference.. SMART PROJECTOR USER MANUAL Please read the manual carefully before using and keep it in a safe place for future reference.. Contents 1 Introduction... 1 2 Specification... 2 3 Package Content... 3 4

More information

Telemetry Data Acquisition and Analysis in Integrated Baseband System Based on TCP/IP Protocol

Telemetry Data Acquisition and Analysis in Integrated Baseband System Based on TCP/IP Protocol Applied Mechanics and Materials Online: 12-08-30 ISSN: 1662-7482, Vols. 195-196, pp 1175-1179 doi:10.4028/www.scientific.net/amm.195-196.1175 12 Trans Tech Publications, Switzerland Telemetry Data Acquisition

More information

ICMIEE-PI Real-Time Monitoring and Controlling of Remote Electrical Device Using Microcontroller and Android Smart Phone via Internet

ICMIEE-PI Real-Time Monitoring and Controlling of Remote Electrical Device Using Microcontroller and Android Smart Phone via Internet International Conference on Mechanical, Industrial and Energy Engineering 2014 26-27 December, 2014, Khulna, BANGLADESH ICMIEE-PI-140166 Real-Time Monitoring and Controlling of Remote Electrical Device

More information

Implementation of Smart Car Infotainment System including Black Box and Self-diagnosis Function

Implementation of Smart Car Infotainment System including Black Box and Self-diagnosis Function , pp.267-274 http://dx.doi.org/10.14257/ijseia.2014.8.1.23 Implementation of Smart Car Infotainment System including Black Box and Self-diagnosis Function Minyoung Kim 1, Jae-Hyun Nam 2 and Jong-Wook Jang

More information

The Design of the Sensor Node of IOT Based on SIM20 KUANG Xinghong 1, a,yao Zheyi 1, b, Huo haibo 1, c, Li junjun 1, d, Wu yanxiang 1, e

The Design of the Sensor Node of IOT Based on SIM20 KUANG Xinghong 1, a,yao Zheyi 1, b, Huo haibo 1, c, Li junjun 1, d, Wu yanxiang 1, e Advanced Materials Research Online: 2012-12-13 ISSN: 1662-8985, Vols. 605-607, pp 2375-2378 doi:10.4028/www.scientific.net/amr.605-607.2375 2013 Trans Tech Publications, Switzerland The Design of the Sensor

More information

Wireless Collaboration.

Wireless Collaboration. Wireless Collaboration. Connect. Work. Share. M A K E T H E CO N N E C T I O N D E L I V E R YO U R M E SSAG E COLLABORAT E WI TH CONFIDENCE www.novoconnect.eu Transform your conference room into a true

More information

Wireless Collaboration.

Wireless Collaboration. Wireless Collaboration. Connect. Work. Share. M A K E T H E CO N N E C T I O N D E L I V E R YO U R M E SSAG E COLLABORAT E WI TH CONFIDENCE www.novoconnect.eu Transform your conference room into a true

More information

Design of Intelligent Garbage Bin

Design of Intelligent Garbage Bin Journal of Computing and Electronic Information Management ISSN: 2413-1660 Design of Intelligent Garbage Bin Mingyu Zhang Suzhou Vocational Institute of Industrial Technology, Department of Electronic

More information

NS115 System Emulation Based on Cadence Palladium XP

NS115 System Emulation Based on Cadence Palladium XP NS115 System Emulation Based on Cadence Palladium XP wangpeng 新岸线 NUFRONT Agenda Background and Challenges Porting ASIC to Palladium XP Software Environment Co Verification and Power Analysis Summary Background

More information

Wireless Collaboration.

Wireless Collaboration. Wireless Collaboration. Connect. Work. Share. www.novoconnect.eu Transform your conference room into a true collaborative space. NovoConnect Solution Features Summary: Simple & Easy to Connect Discussion

More information

AGL Reference Hardware Specification Document

AGL Reference Hardware Specification Document AGL Reference Hardware Specification Document 2017/10/18 Ver 0.1.0 1 Change History Version Date 0.1.0 2017/10/18 The first edition 2 Index 1. AGL Reference Hardware overview... 5 1.1. Goals of AGL Reference

More information

An overview of mobile and embedded platforms

An overview of mobile and embedded platforms ES3 Lecture 2 An overview of mobile and embedded platforms Basic Classes Embedded devices: These are in toasters, cars, mice, etc. Usually very real-time focused (us accuracy) Very small memory, not usually

More information

Applied mechanics and applied technology in fuel injection pump bench. Rotational speed measurement system design based on CPLD

Applied mechanics and applied technology in fuel injection pump bench. Rotational speed measurement system design based on CPLD Advanced Materials Research Online: 2014-03-24 ISSN: 1662-8985, Vol. 910, pp 316-319 doi:10.4028/www.scientific.net/amr.910.316 2014 Trans Tech Publications, Switzerland Applied mechanics and applied technology

More information

The Application of PLC in the automatic Packing Machine Control System Lixia Guo a, Zhengzhong Li b

The Application of PLC in the automatic Packing Machine Control System Lixia Guo a, Zhengzhong Li b Advanced Materials Research Online: 2013-09-04 ISS: 1662-8985, Vols. 765-767, pp 1813-1817 doi:10.4028/www.scientific.net/amr.765-767.1813 2013 Trans Tech Publications, Switzerland The Application of PLC

More information

ISSN Vol.07,Issue.08, July-2015, Pages:

ISSN Vol.07,Issue.08, July-2015, Pages: ISSN 2348 2370 Vol.07,Issue.08, July-2015, Pages:1451-1455 www.ijatir.org Robot Control Design Based on Smartphone in Home Applications ANUGU ARCHANA REDDY 1, L. PRATHIMA REDDY 2 1 PG Scholar, Dept of

More information

PV8900-CORE Full Function TCC8900/TCC8901/TCC8902 CPU Module Specification

PV8900-CORE Full Function TCC8900/TCC8901/TCC8902 CPU Module Specification PV8900-CORE Full Function TCC8900/TCC8901/TCC8902 CPU Module Specification 1. Overview: PV8900-CORE CPU Module is designed by Shanghai Povell Electronic Technologies Co., Ltd. in 2010, this CPU module

More information

Research and Design of Laser Accurate Displacement Measurement System Xiaogang Wang 1, a, Yuewei Bai 1,b and Kai Liu 1,c

Research and Design of Laser Accurate Displacement Measurement System Xiaogang Wang 1, a, Yuewei Bai 1,b and Kai Liu 1,c Advanced Materials Research Online: 2011-07-27 ISSN: 1662-8985, Vols. 301-303, pp 1289-1292 doi:10.4028/www.scientific.net/amr.301-303.1289 2011 Trans Tech Publications, Switzerland Research and Design

More information

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

Matrix. Get Started Guide V2.0

Matrix. Get Started Guide V2.0 Matrix Get Started Guide V2.0 Overview Matrix is a single board mini computer based on ARM with a wide range of interface, equipped with a powerful i.mx6 Freescale processor, it can run Android, Linux,

More information

WARNINGS. *Do not operate the Projector in direct sunlight or near heat sources such as heaters, fires, and stoves as this may cause a fire hazard.

WARNINGS. *Do not operate the Projector in direct sunlight or near heat sources such as heaters, fires, and stoves as this may cause a fire hazard. WARNINGS *Do not operate the Projector in direct sunlight or near heat sources such as heaters, fires, and stoves as this may cause a fire hazard. *Do not operate the projector close to sources of steam

More information

From Boolean Algebra to Smart Glass

From Boolean Algebra to Smart Glass From Boolean Algebra to Smart Glass George Tai 2014/03 Boolean Algebra Why mathematics is the base for today s computer technology? In mathematics and mathematical logic, Boolean algebra is the subarea

More information

DRA AUDIO CODING STANDARD

DRA AUDIO CODING STANDARD Applied Mechanics and Materials Online: 2013-06-27 ISSN: 1662-7482, Vol. 330, pp 981-984 doi:10.4028/www.scientific.net/amm.330.981 2013 Trans Tech Publications, Switzerland DRA AUDIO CODING STANDARD Wenhua

More information

Design of the Software for Wirelessly Intercepting Voices

Design of the Software for Wirelessly Intercepting Voices Advanced Materials Research Online: 2014-05-23 ISSN: 1662-8985, Vols. 926-930, pp 2470-2473 doi:10.4028/www.scientific.net/amr.926-930.2470 2014 Trans Tech Publications, Switzerland Design of the Software

More information

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin

A Template-Matching-Based Fast Algorithm for PCB Components Detection Haiming Yin Advanced Materials Research Online: 2013-05-14 ISSN: 1662-8985, Vols. 690-693, pp 3205-3208 doi:10.4028/www.scientific.net/amr.690-693.3205 2013 Trans Tech Publications, Switzerland A Template-Matching-Based

More information

Research on Image Sensor System Acquisition Based on ARM

Research on Image Sensor System Acquisition Based on ARM Sensors & Transducers, Vol. 161, Issue 1, December 013, pp. 86-91 Sensors & Transducers 013 by IFSA http://www.sensorsportal.com Research on Image Sensor System Acquisition Based on ARM Yao NAN The Information

More information

Quad Core 1.6GHz Processor for Lightning-Fast Computing. Complete Management Solution

Quad Core 1.6GHz Processor for Lightning-Fast Computing. Complete Management Solution The ViewSonic SD-A235 is a 23 LED XenMobile Smart Display Client with 1920x1080 Full HD resolution. It features an NVIDIA Tegra 4 1.6 GHz processor, and Citrix XenMobile pre-installed to provide a manageable,

More information

MC34708TRN Rev /1/2011

MC34708TRN Rev /1/2011 MC34708TRN Rev 3.0 11/1/2011 Freescale, the Freescale logo, AltiVec, C-5, CodeTEST, CodeWarrior, ColdFire, C-Ware, t he Energy Efficient Solutions logo, mobilegt, PowerQUICC, QorIQ, StarCore and Symphony

More information

Modification of Boards into Wireless Using Embedded Platform and ARM9

Modification of Boards into Wireless Using Embedded Platform and ARM9 Modification of Boards into Wireless Using Embedded Platform and ARM9 Swati R. Dike #1,Prof. Pravin N. Matte #2 #1 VLSI and Embeded Systems,G. H. Raisoni College of Engg. and Mgmt, #2G. H. Raisoni College

More information

SMART VEHICLE CONTROLLED SYSTEM

SMART VEHICLE CONTROLLED SYSTEM Volume 03, Special sue. 01, March 2015 ISSN (online): 2348 7550 SMART VEHICLE CONTROLLED SYSTEM Sneha Mohan Shingate 1, Y. V. Chavan 2 1,2 Padmabhooshan Vasantdada Patil Institute Of Technology, Pune,

More information

The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System*

The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System* The Research and Design of the Android-Based Facilities Environment Multifunction Remote Monitoring System* Lutao Gao, Linnan ang, Lin Peng, ingjie Chen, and ongzhou u College of Basic Science & Information

More information

Design and Implementation of Somatosensory Teaching Pendant System Based on Android Platform

Design and Implementation of Somatosensory Teaching Pendant System Based on Android Platform IOSR Journal of Mobile Computing & Application (IOSR-JMCA) e-iss: 2394-0050, P-ISS: 2394-0042.Volume 3, Issue 5 (Sep. - Oct. 2016), PP 32-37 www.iosrjournals.org Design and Implementation of Somatosensory

More information

A Reconfigurable Smart Sensor Interface for Industrial WSN in IOT Environment

A Reconfigurable Smart Sensor Interface for Industrial WSN in IOT Environment A Reconfigurable Smart Sensor Interface for Industrial WSN in IOT Environment 1 R N S Sunil Veda ; 2 N.Veeraih & 3 S.Neelima 1 M.Tech (VLSI & Embedded System), 2 Asst.Professor, 3 HOD, Assoc.Proffesor,

More information

Kevin Meehan Stephen Moskal Computer Architecture Winter 2012 Dr. Shaaban

Kevin Meehan Stephen Moskal Computer Architecture Winter 2012 Dr. Shaaban Kevin Meehan Stephen Moskal Computer Architecture Winter 2012 Dr. Shaaban Contents Raspberry Pi Foundation Raspberry Pi overview & specs ARM11 overview ARM11 cache, pipeline, branch prediction ARM11 vs.

More information

Design of PC Remote Monitoring System for Standby Generators Chuanhong Zhou 1,a,Jinjie Xiao 1,b, Wei Ren 1,c

Design of PC Remote Monitoring System for Standby Generators Chuanhong Zhou 1,a,Jinjie Xiao 1,b, Wei Ren 1,c Advanced Materials Research Submitted: 2014-06-03 ISSN: 1662-8985, Vol. 1039, pp 197-202 Accepted: 2014-07-14 doi:10.4028/www.scientific.net/amr.1039.197 Online: 2014-10-31 2014 Trans Tech Publications,

More information

SECTION 1 INTRODUCTION. Walt Kester

SECTION 1 INTRODUCTION. Walt Kester SECTION 1 INTRODUCTION Walt Kester This book deals with sensors and associated signal conditioning circuits. The topic is broad, but the focus of this book is to concentrate on circuit and signal processing

More information

Sensors and actuators are ubiquitous. They are used

Sensors and actuators are ubiquitous. They are used Understanding IEEE 1451 Networked Smart Transducer Interface Standard Eugene Y. Song and Kang Lee istockphoto.com What Is a Smart Transducer? Sensors and actuators are ubiquitous. They are used in a variety

More information

Design of Tourism Information System with B/S and C/S Architecture based on Android and Web Platform

Design of Tourism Information System with B/S and C/S Architecture based on Android and Web Platform with B/S and C/S Architecture based on Android and Web Platform Tianjin University of Science & Technology, Tianjin, China E-mail: douxuechen@mail.tust.edu.cn Yonggang Yang a ; Weibin Zhou 1b ; Zilong

More information

Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication

Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication 4th International Conference on Sustainable Energy and Environmental Engineering (ICSEEE 2015) Design of Desert Plant Monitoring System Based on SI446X Wireless Radio Frequency Communication Hua Guo1,a,

More information

A Low-Cost Energy Management System That Compares Power Consumption of Electronic Home Appliances

A Low-Cost Energy Management System That Compares Power Consumption of Electronic Home Appliances IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719, Volume 2, Issue 9 (September 2012), PP 06-10 A Low-Cost Energy Management System That Compares Power Consumption of Electronic

More information

RDM602XG Software User Manual

RDM602XG Software User Manual RDM602XG Software User Manual Shenzhen RuiDa Technology CO., LTD Tel: 86-0755-26066687 Fax: 86-0755-26982287 Web: www.rd-acs.com E-Mail: support@rd-acs.com Add: 1B-1, Building 5, Tian'an Nanyou Industry

More information