Mobile video monitoring system based on WLAN

Mobile video monitoring system based on WLAN

Introduces WLAN-based mobile video surveillance system, and describes the principles and working process of the component modules such as video capture, video reproduction, and wireless video transmission. The appendix discusses three methods, such as bandwidth adaptive flow control, ring buffer processing, and daemon thread, to solve the QoS of wireless video transmission.
Keywords: mobile video surveillance system; video communication; QoS?

Mobile Supervisory System Based on WLAN
CHEN Qimei, YUYao, YANGZhou
(Nanjing University, Nanjing 210093, China)
Abstract: The paper gives the structure of the mobile video supervisory system under WLAN, describing its theory and procedures of the modules of video picture capture and represent, mobile transmission. In appendix, the soluTIon of QoS by using networks bandwidth adapTIverate control, ring buffer management, and daemon thread is disscussed.
Keywords: mobile video survcilance system; video communicaTIon; QoS
Handheld mobile terminals can view remote digital video images through wireless networks and can be widely used in industrial control, community security, and news media services. This paper gives the technical solution of mobile video monitoring system based on IEEE802.11b based on wireless local area network WLAN and using Intel XScale architecture mobile terminal as its manifestation. ?
1.1 System architecture As shown in Figure 1, the mobile video surveillance system framework is shown in Figure 1. Network cameras located at multiple locations provide IP video sources through LAN or VPN. Mobile video terminals pass WLAN and after being authenticated by the video publishing server, they control the camera and view live images .
The system supports one-to-multipoint IP multicast protocol (MulTIcast). In the network, a multipoint IP multicast address in the range of 224.0.0.0 to 239.255.255.255 can be defined. The advantage of multipoint multicast is that it can provide multiple images to many end users at the same time when the network scale is large. However, it should be noted that the reduction in the burden of the video source comes at the cost of increasing the burden on the router, which can be limited by the video distribution server.
?
The video monitoring system adopts the master / slave (Client / Server) mode. The host end is the source of video streaming, based on the Windows operating system, completes the collection of original video images, compression coding and network data transmission; the slave end is the mobile terminal for playback, based on the embedded Linux operating system, completes network data reception and reverse traffic Control, PTZ remote control, upper user interface, video decoding and reproduction and other functions. The main technologies are:
(1) Use Osprey-100 image acquisition card to realize multi-channel video capture. Under the condition that the performance of the encoder allows, multi-channel video transmission can be realized. (2) The video codec adopts MPEG4 coding standard, and cooperates with the network to process QoS. (3) The video flows through the WLAN based on IEEE802.11b and is transmitted through the UDP channel; due to the characteristics of the WLAN wireless channel, necessary flow control and QoS processing must be performed. (4) TCP feedback control and other data interaction through TCP channel interaction.
The system in Figure 2 consists of a video source, WLAN, and embedded mobile terminal. The video source can be divided into three modules: video capture, MPEG4 encoding, and wireless network transmission; embedded mobile terminals can be divided into: embedded mobile terminal, MPEG4 decoding, video reproduction three modules; WLAN and wireless network transmission module implementation information of both parties Interaction. ?
2.1 Overview of video capture module This module completes the functions from analog video capture to capture YUV digital video stream. The frame grabber uses the YUV12 format to convert the analog video from multiple surveillance cameras to digital video signals in multiple formats. ?
2.2IPP optimized video codec IPP (Integrated Performance Primitive) is an important part of Intel's personal Internet user architecture. It provides function calls to applications on the operating system, while directly based on the hardware and traverses the operating system. The biggest advantage of IPP lies in the optimization of each function at the assembly level; taking measures according to the pipeline and bus characteristics of the CPU can improve the access speed and processing speed.
The IPP library functions have multi-layer processing functions. For weaker functions, you can choose the bottom function of the IPP library; for stronger functions, you can choose a suitable high-level IPP function; the combination of the underlying "atomic" function can also replace the high-level function, and you can make changes if the algorithm requires This allows great flexibility in optimizing codec algorithms.
The specific optimization process of the system for coding and decoding is shown in Figure 3. According to the MPEG4 coding standard, the algorithm optimization is made with IPP at the Micro Block layer and Block layer, which achieves the purpose of greatly improving the efficiency of coding and decoding and improving the real-time performance of the system. ?
Video reproduction refers to the real-time playback of decompressed video signals on the LCD display of a mobile terminal. The player is required to interact with the display cache as quickly as possible. Frame buffer is the video memory in Linux embedded system. It is a component that provides display memory and display chip registers mapped from physical memory to process address space. The DMA channel should be used to constantly refresh the LCD buffer data. The implementation process is shown in Figure 4: After the frame buffer is mapped into the process address space, you can directly perform read and write operations, and the write operation can be immediately reflected on the LCD screen. The specific implementation is that by opening the / dev / fb0 device and address mapping through the mmap system call, the real-time video playback can be achieved by rewriting the buffer. The advantages of using frame buffer technology are high portability, low system resource occupancy, and stability to meet the needs of real-time video playback.

4.1 Wireless network construction The module uses the CF wireless network card, through the wireless local area network (WLAN) based on the IEEE802.11b standard, and the fixed wireless AP (Access Point access point), to construct a multi-point to multi-point mode to complete real-time video data transmission. The standard uses the ISM (Industrial Scientific Medical) wireless broadcast 2.45GHz frequency band, the maximum rate is 11Mbps, using direct sequence spread spectrum (DSSS) transmission technology, the AP covers a microcellular area with a radius of 100 ~ 500m.
4.2 CF wireless network card driver The focus of this work is on the rewriting and transplantation of wireless network card drivers. The ET? CWB1000 wireless CF network card based on Intersil Prism chipset (Version 3.0) can be selected and the Linux Spectum24 PCMCIA driver is used. As shown in Figure 5, the Linux network driver structure can be divided into four layers: device driver / network device layer, network protocol layer, and user application layer. The CF card is compatible with PCMCIA. The PCMCIA controller connects the card to the system bus, maps the card memory to the main I / O and memory window, and routes the interrupt generated by the card to the free processor interrupt line.

1 Bandwidth adaptive flow control Real-time transmission of broadband video requires a certain network bandwidth. Especially when multiple users access the same video publishing server at the same time, it is easy to cause concurrent congestion bottlenecks. At this time, the output code stream needs to be dynamically adjusted to adapt to changes in network conditions. Figure 1 shows a transmission network structure based on bandwidth adaptation. A closed-loop negative feedback system is constructed between the streaming publishing server and the browsing user. The publishing server detects the network transmission status in real time, according to the relevant control strategy. Adjust the output stream code rate, so as to achieve the system's dynamic adaptation to bandwidth. The specific method: the destination end manages the ring buffer in real time according to the status of the received video stream buffer, trying to make the output rhythm uniform, and feedback the corresponding information in real time; the sending end adjusts the data flow sent according to the feedback information from the destination end, adjust The bandwidth of the media stream.
Rate control is a technology to determine the transmission rate of video communication based on the available bandwidth of the network. During the system's adaptive network transmission process, the user end continuously detects the quality factors of the code stream transmission, the number of data packets sent, the number of lost data packets, and other statistical data, and then passes the information to the decision controller after processing; decision control The device controls the relevant components according to the corresponding strategy, completes the dynamic integration of the transmission code stream, and delivers the UDP transmission component of the sending end to complete the transmission of the multimedia stream; the browsing user end UDP receives the multimedia data and hands it to the subsequent network player for decoding and playing.
In order to realize bandwidth-based adaptive transmission, it is first necessary to perform dynamic detection and evaluation of the network bandwidth, and then adopt appropriate adjustment strategies to integrate the code stream. In the assessment of network status, the quality factors can be parameters such as packet loss rate, packet delay, and buffer space. The system uses a packet loss rate indicator. The receiving user terminal continuously measures the packet loss rate and sends it back to the sender via TCP. The decision controller compares the packet loss rate with the specified threshold to determine whether to increase or decrease the code rate. When the packet loss rate is greater than the upper threshold, the code stream rate is reduced; when the packet loss rate is less than the lower threshold, the code stream rate is increased. ?
The multi-threading technology based on the ring buffer is shown in Figure 2, which achieves the purposes of continuous video, smooth code stream and saving memory space. In addition, with the help of the ring buffer and the mutex, the synchronization of threads can be completely solved.
Linear address mapping is used in the memory area to open up continuous memory blocks, which ensures the access speed of threads and effectively improves the decoding efficiency. ?

In the mobile terminal program, a daemon thread is specially introduced to be responsible for traffic management. It is not a core part of the video program, but it independently and periodically performs monitoring tasks for each video thread in the background. The principle of the daemon thread is similar to the watchdog of the single-chip microcomputer. It regularly detects the running status and makes an analysis to determine the running status of each buffer and thread; it will handle the abnormal situation immediately to avoid thread collapse and screen freeze. The specific method is to use the polling interval (Poll Interval, PI) to determine the time to wait for polling, where PI is set to 1 second, and is responsible for monitoring the capacity of the ring buffer and the operation of each thread. When the detection buffer exceeds the threshold or a thread crashes, the thread will be maintained or restarted according to the running status of each thread.
What are the Gateway Brands in the Technology Zone? _Top Ten Gateway Brand Rankings Introduction to Default Gateway How to fill in the default gateway How are the default gateway settings derived? There are several methods? How to set it up? What is the use of the default gateway

Follow WeChat

Interesting and informative information and technical dry goods

Download Audiophile APP

Create your own personal electronic circle

Follow the audiophile class

Lock the latest course activities and technical live broadcast
Collect People collection
share it:
comment
Publish

related suggestion

Different specific connection methods for monitoring system points

For small projects of 1-8 points, ordinary 100M switches can be directly used to achieve the network environment. If you use 2 million pixel IPC, ...

Posted at 2018-04-12 14:35 • 165 times read
Different specific connection methods for monitoring system points
Hotel network HD monitoring system overall solution

A hotel in Dali, Yunnan is a five-star hotel, for which the hotel provides a set of Ethernet transmission system solutions.

Published on 2018-03-22 11:59 • 371 times read
Hotel network HD monitoring system overall solution
Security anti-theft monitoring system of CAN bus driving circuit

The outstanding characteristics of CAN are: â‘  can work in a multi-master mode, any node on the network can become the master node, and actively send information to other nodes; â‘¡

Published on 2018-03-15 16:35 • 279 views
Security anti-theft monitoring system of CAN bus driving circuit
Monitoring system fault detection and processing

After a monitoring system enters the commissioning stage, trial operation stage and delivery, there may be such failure phenomena, such as: can not operate normally ...

Published on 2018-02-11 14:40 • 909 views
Monitoring system fault detection and processing
The design of environmental monitoring system composed of lower computer, transmission network and upper computer ...

In order to improve the stability of the environmental monitoring system and save system resources, a design of an environmental monitoring system composed of a lower computer, a transmission network and an upper computer is proposed ...

Published on 2018-02-11 14:28 • 1305 times read
The design of environmental monitoring system composed of lower computer, transmission network and upper computer ...
Analysis of the application solutions of automatic warning and monitoring system for railway level crossings ...

Railway crossing safety is an important part of railway transportation safety, and crossing safety system is also an important part of railway traffic safety guarantee system. Currently,...

Published on 2018-02-05 11:04 • 172 times read
Analysis of the application solutions of automatic warning and monitoring system for railway level crossings ...
How to reasonably install security monitoring management system

With the development of society, the expansion of cities, the construction of transportation systems, and the construction of new buildings, the application of security monitoring systems has attracted more and more attention from people, ...

Published on 2018-01-23 10:26 • 1375 times read
How to reasonably install security monitoring management system
The equipment and solutions needed for connecting the splicing screen of the hard disk video recorder in the monitoring system

1. Signal source equipment: The signal source equipment in the monitoring system mainly refers to the camera, of course, there are many kinds of cameras, under normal circumstances: gun machine, hemisphere ...

Published on 2018-01-19 10:16 • 1469 times read
The equipment and solutions needed for connecting the splicing screen of the hard disk video recorder in the monitoring system
The evaluation kit jointly developed by Howe Technology and Jungo makes people more accommodating ...

Recently, OmniVision Technologies, the leading developer of digital imaging solutions in the industry ...

Published on 2018-01-10 14:50 • 1449 times read
The evaluation kit developed by Howe Technology and Jungo makes people more ...
In response to the current situation of domestic rail transit, CSPA-2000-I ...

The Urban Rail Transit Integrated Monitoring System (ISCS) is a complex large system with close coordination and multi-discipline. We are fully meeting the needs of users ...

Posted at 2018-01-08 14:33 • 1307 times read
In response to the current situation of domestic rail transit, CSPA-2000-I ...
Requirements and key points for the installation of materials and equipment for security monitoring systems

With the development of society, the expansion of cities, the construction of transportation systems, and the construction of new buildings, the application of security monitoring systems has attracted more and more attention from people, ...

Published on 2018-01-05 16:17 • 1261 times read
Requirements and key points for the installation of materials and equipment for security monitoring systems
Intelligent power distribution: analysis of power environment monitoring system and intelligent duty

The storage loopholes in the smart power distribution are still a double "insurance" for the smart watch + power environment monitoring system.

Published on 2018-01-03 10:11 • 1450 times read
Intelligent power distribution: analysis of power environment monitoring system and intelligent duty
Monitoring system monitors PM10 particle status in real time to ensure personal safety

Hangzhou Zhinuo Technology Co., Ltd. and its strategic partner Beijing Dingtai Ruite Technology Co., Ltd. use the technical advantages of both parties to combine Zhengzhou city management ...

Published on 2017-12-22 15:17 • 2056 views
Monitoring system monitors PM10 particle status in real time to ensure personal safety
Analysis of 22 items to be noted in the selection of the camera of the TV monitoring system

The front-end equipment of the TV monitoring system is mainly a camera, and the camera modeling should focus on the following.

Published on 2017-12-22 14:46 • 1504 views
Analysis of 22 items to be noted in the selection of the camera of the TV monitoring system
The actual demand analysis of museum monitoring system

The actual needs of the museum monitoring system How to formulate a practical and effective monitoring and prevention system for the actual specific needs of the museum security system is a cultural relic ...

Published on 2017-12-12 16:06 • 210 views
The actual demand analysis of museum monitoring system
Design and analysis of factory wireless monitoring system

With the popularization and deepening development of China's modern enterprise system, the informatization construction of enterprises continues to deepen, and all enterprises, especially large and medium-sized enterprises, have accelerated their trust ...

Published on 2017-12-12 16:04 • 155 times read
Design and analysis of factory wireless monitoring system
Overview of fuel cell engine monitoring system and its functional module design

Vehicle fuel cells have the advantages of high efficiency, fast start-up, good environmental protection, fast response speed, etc., and are an ideal solution to replace automobile internal combustion engines. The fuel cell...

Published on 2017-12-04 03:17 • 288 views
Overview of fuel cell engine monitoring system and its functional module design
The design of the battery monitoring module and its implementation scheme, online detection and ...

In the local communication power supply monitoring system, the battery monitoring module is a relatively independent unit with its own processor unit and data acquisition unit. ...

Published on 2017-12-03 19:14 • 288 views
The design of the battery monitoring module and its implementation scheme, online detection and ...
Research on Intelligent Monitoring System Based on Ship Engine Room

CAN bus is a serial communication protocol with strong anti-interference ability, which can be used in occasions with relatively high electromagnetic noise. In order to guarantee the power of the ship ...

Published on 2017-10-19 16:24 • 336 views
Research on Intelligent Monitoring System Based on Ship Engine Room
Mobile phone is monitored, teach you a few tricks to be absolutely safe

As long as the mobile phone is turned on, it will connect to the base station signal acquisition network by default, so that the base station obtains the ID information of the mobile phone, and then judges whether there is ...

Published on 2017-10-09 17:07 • 9839 views
Mobile phone is monitored, teach you a few tricks to be absolutely safe
Incubation environment temperature monitoring system

Published on 2017-06-15 22:40 • 1066 times read
Incubation environment temperature monitoring system
Automobile tire pressure monitoring system

Published on 2017-06-13 16:50 • 956 views
Automobile tire pressure monitoring system
Shouying Zhicheng C-4117 in Hazardous Source Monitoring System

Published on 2017-05-20 13:34 • 578 times read
Shouying Zhicheng C-4117 in Hazardous Source Monitoring System
AT7456 character superposition chip, supply in large quantities

Published on 2017-05-19 11:40 • 508 views
AT7456 character superposition chip, supply in large quantities
Anti-blocking scheme of video surveillance system not affected by camera infrared light

Published on 2017-05-17 10:43 • 594 views
Anti-blocking scheme of video surveillance system not affected by camera infrared light
Instrumentation collection monitoring system Coal mine safety monitoring system

Published on 2017-05-05 10:53 • 273 times read
Instrumentation collection monitoring system Coal mine safety monitoring system
Sensor data collection of power environment monitoring system serial port server distributed battery detection module

Published on 2017-05-05 09:33 • 422 views
Power environment monitoring system Sensor data collection Serial port server Distributed battery detection module
AC charging pile manufacturers

Published on 2017-05-03 14:30 • 762 views
AC charging pile manufacturers
The relationship between smart factories and equipment automation technology

Published on 2017-04-21 09:23 • 469 views
The relationship between smart factories and equipment automation technology
Outdoor smart cabinet

Published on 2017-04-14 11:22 • 557 views
Outdoor smart cabinet
Smart home monitoring system module circuit analysis (2)-circuit selection (1 ...

The smart home monitoring system mainly integrates security and mobile network through mobile phones and computers to monitor home security in real time. If someone rushes into the house ...

Published on 2016-12-06 16:13 • 1186 times read
Smart home monitoring system module circuit analysis (2)-circuit selection (1 ...
Analysis of module circuit of smart home monitoring system (1)-circuit selection (1 ...

In recent years, there have been frequent theft cases in high-end communities, and the smart home monitoring system is precisely a protective weapon against criminals, it is through voice, Internet ...

Published on 2016-12-05 17:13 • 1686 times read
Analysis of module circuit of smart home monitoring system (1)-circuit selection (1 ...
What is a crystallizer monitoring system? Composition principle of crystallizer monitoring system

This article introduces you to what a crystallizer monitoring system is and how it is composed.

Published on 2016-10-17 17:11 • 240 views
What is a crystallizer monitoring system? Composition principle of crystallizer monitoring system
Design of Baby Real-Time Monitoring System Based on Internet of Things

With the development of the society, parents pay more and more attention to the growth and development of their children in the period of infants and young children.

Posted at 2015-12-02 11:16 • 2666 times read
Design of Baby Real-Time Monitoring System Based on Internet of Things
Design of interface circuit of intelligent gateway monitoring system for fire indicator

SCK, MISO, and MOSI are the clock signal of the SPI interface, the input signal of the master station, and the output signal of the master station, respectively. Define STC12 ...

Posted at 2014-09-19 10:47 • 1259 views
Design of interface circuit of intelligent gateway monitoring system for fire indicator
Combination of circuit diagrams of each module of the security smart home monitoring system

PCF8563 is a low-power CMOS real-time clock / calendar chip, which provides a programmable clock output, an interrupt output and power-down detection ...

Posted at 2014-09-16 16:40 • 5084 views
Combination of circuit diagrams of each module of the security smart home monitoring system
Research on Intelligent Monitoring and Support Technology of Mobile Application Software Based on Cloud Platform

This article proposes a solution for building an intelligent monitoring system for mobile application software in view of the many problems with current third-party application software on mobile intelligent terminals ...

Published on 16:59 2014-08-04 • 938 reading
Research on Intelligent Monitoring and Support Technology of Mobile Application Software Based on Cloud Platform
The design of intelligent home monitoring system based on ARM

Information technology has been widely used in all aspects of people's lives. People have higher and higher demands on family living environment. ## System software and hardware design

Posted at 2014-06-05 10:50 • 1467 times read
The design of intelligent home monitoring system based on ARM
Anti-theft hosting privacy protection and smart home based on Android platform ...

A set of solutions is proposed for the two hot issues of mobile phone theft and home security. A set of entrusted anti-theft and dynamic behavior tracking detection system is designed. Mobile phone ...

Posted at 2014-03-26 14:32 • 1174 times read
Anti-theft hosting privacy protection and smart home based on Android platform ...
Design of intelligent LED street lamp monitoring system based on ZigBee ...

This article introduces a design scheme of ZigBee-based intelligent LED street lamp monitoring system, which realizes the low-carbon operation of intelligent transportation ...

Posted on 2014-03-17 11:33 • 1968 views
Design of intelligent LED street lamp monitoring system based on ZigBee ...
Design of Home Monitoring System Based on Embedded Linux

This article introduces the home monitoring system based on Linux operating system using mobile phone and embedded wireless connection, the monitoring equipment (embedded system ...

Published on 2014-02-22 10:58 • 995 views
Design of Home Monitoring System Based on Embedded Linux
Internet of Things Application Case: Accurate Sensor Probing Water Automatic Monitoring System

Last year's "July 21" heavy rainstorm caused serious water accumulation in the Nangangwa section of the Beijing-Hong Kong-Macao Expressway, and the two-way lane was impassable. Before entering the flood this year, the premiere set ...

Posted at 2013-06-21 11:16 • 660 views
Internet of Things Application Case: Accurate Sensor Probing Water Automatic Monitoring System
Improve data access and software upgrade capabilities for healthcare and disease monitoring equipment ...

Disease monitoring equipment is usually used to measure the patient's vital signs, such as blood pressure, heart rate and other parameters. The requirements for managing these important data go far beyond simple ...

Posted at 2013-05-09 15:47 • 688 times read
Improve data access and software upgrade capabilities for healthcare and disease monitoring equipment ...
Medical monitoring system based on WIFI technology

Combined with the development of today's information technology and wireless transmission technology, the information technology is applied to personal medical equipment through WIFI technology, and the Internet and ...

Posted at 2013-04-29 14:54 • 1490 views
Medical monitoring system based on WIFI technology
Research of wireless remote medical monitoring system based on GS1011

This article analyzes the necessity of wireless remote medical monitoring, and introduces the ultra-low power monolithic system in detail from the overall structure, hardware distribution and software implementation ...

Posted at 2013-04-28 13:52 • 1377 times read
Research of wireless remote medical monitoring system based on GS1011
Design and Implementation of Mobile Robot Remote Monitoring Based on 3G Communication Network

The system described in this article has obtained good results in the experiment. The transmission of video images has better stability. In order to improve the continuity of the images, you can ...

Posted at 2013-04-26 10:42 • 1163 views
Design and Implementation of Mobile Robot Remote Monitoring Based on 3G Communication Network
How to choose a suitable real-time operating system for telemedicine equipment?

The urgent need for telemedicine equipment is driving market growth. The operating system is a key differentiating factor for all electronic medical devices, and manufacturers often choose ...

Posted at 2013-04-02 11:40 • 1364 times read
How to choose a suitable real-time operating system for telemedicine equipment?
The rise of distributed computing applications, Lattice low power FPGA ...

Netcom, industrial control, monitoring systems and other applications are setting off a wave of distributed computing. In order to meet the requirements of market trends, reduce power consumption, reduce size and reduce ...

Posted at 2013-03-30 09:24 • 798 times read
The rise of distributed computing applications, Lattice low power FPGA ...
Application of Advantech Touch Industrial Panel PC in Remote Monitoring System

Advantech touch industrial grade thin client tablet PC TPC-1550H embedded Advantech configuration software WebAccess software as on-site ...

Posted at 2013-03-29 15:59 • 1134 times read
Application of Advantech Touch Industrial Panel PC in Remote Monitoring System
Construction of Safe City Monitoring and Alarm System Based on Network

Networking is becoming a mainstream trend in safe city monitoring and alarm systems. The construction model of safe city monitoring and alarm system based on network construction mainly includes ...

Posted on 2013-02-27 11:06 • 897 views
Construction of Safe City Monitoring and Alarm System Based on Network
Detailed solution of remote monitoring system solution in higher ward

Higher ward remote monitoring system This program is divided into two parts: ward call system and ward monitoring system. The system is mainly composed of two parts of software, the first is ...

Posted at 2013-02-22 13:35 • 337 views
Detailed solution of remote monitoring system solution in higher ward
The design method of street lamp wireless control system based on PLC and ZigBee ...

Starting from the specific requirements of street lamp control, this system has established a friendly visual interface, integrating wireless communication technology, automation control technology, and monitoring system networking ...

Posted at 2013-02-20 11:10 • 1722 views
The design method of street lamp wireless control system based on PLC and ZigBee ...
Raytek launches non-contact temperature measurement system

Fluke Raytek, a sub-brand of Fluke, has introduced a non-contact temperature measurement system-equipped with DataTemp Multid ...

Posted at 2013-01-30 09:16 • 269 times read
Raytek launches non-contact temperature measurement system
Remote medical monitoring system based on single chip and FPGA

Accurately collect each sign signal through each sensor node and submit it to the 89c51 single-chip microcomputer for processing, calculate each sign information (including body temperature, blood ...

Posted at 2013-01-24 11:16 • 623 views
Remote medical monitoring system based on single chip and FPGA
Introduction of human body area network technology, medical system realizes remote intelligent monitoring

As the global population ages and the population of chronic patients increases, remote home care has become an important issue in the development of medical care in advanced countries. At this stage, physiological parameters are measured ...

Published on 2013-01-08 11:47 • 1919 times read
Introduction of human body area network technology, medical system realizes remote intelligent monitoring
Design of a networking scheme for communication power monitoring system

"Technical Requirements for Centralized Monitoring System of Communication Power Supply and Air Conditioning" stipulates that the monitoring system is structurally a multi-level distributed computer monitoring network [2], ...

Posted at 2012-12-28 10:50 • 768 views
Design of a networking scheme for communication power monitoring system
Xilinx FPGA DIY Series (3): HDUSec -...

HDUSec-network behavior analysis monitoring is a network behavior monitoring integrating analysis, monitoring and alarm functions. Through this system, the local area can be realized ...

Posted at 2012-12-13 14:06 • 574 views
Xilinx FPGA DIY Series (3): HDUSec -...
Zhejiang Dahua Intelligent Traffic Line Video Surveillance System Solution

Introduction of the solution for the automatic detection of the road occupation of the yellow card: The Dahua yellow card road occupation detection system is for some special roads (urban areas or highways ...

Posted at 2012-11-27 17:54 • 6,052 views
Zhejiang Dahua Intelligent Traffic Line Video Surveillance System Solution
Zhejiang Dahua Universal Networking Monitoring Solution

Dahua's general networking monitoring solution is suitable for enterprise parks, hospitals, communities, supermarkets, squares and other application solutions. Table 1. Demand points ...

Posted at 2012-11-27 17:20 • 6583 views
Zhejiang Dahua Universal Networking Monitoring Solution
2012 Digital Video Surveillance System Market Analysis

In the global digital image surveillance market industry, in recent years, with the advancement of digital imaging technology and the popularization of prices, it has gradually become popular, so the global output value is not ...

Posted at 2012-11-13 08:42 • 408 times read
2012 Digital Video Surveillance System Market Analysis
Design of new monitoring and alarming system under 4G technology

This system takes the automobile as the development platform, installs the sensor monitoring device, collects the information and transmits it to the control system centered on the single chip microcomputer, after analysis and processing ...

Published on 16:01 2012-10-24 • 272 views
Design of new monitoring and alarming system under 4G technology
How to build monitoring system with PC and PLC

1 Introduction Due to its compact structure, high reliability and strong flexibility, plc is widely used in various automation systems. Now commonly used touch screen plus ...

Published on 2012-09-25 09:09 • 1787 times read
How to build monitoring system with PC and PLC
NI released two new NI CompactRIO expansion ...

National Instruments (NI) recently released the 8-slot NI 9154 ...

Posted at 2012-09-18 10:03 • 396 views
NI released two new NI CompactRIO expansion ...
Intersil expands leading alliance for efficient video surveillance

Intersil Corporation announces further expansion of Intersil Techwell SL ...

Posted at 2012-09-14 10:04 • 489 times read
Intersil expands leading alliance for efficient video surveillance
NI's new NI CompactRIO expansion chassis ...

NI announces 8-slot NI 9154 MXI-Express RIO expansion chassis and 4-slot NI 9146 Ethe ...

Posted on 2012-09-12 09:49 • 494 views
NI's new NI CompactRIO expansion chassis ...
Home TV monitoring system solution

In addition to paying attention to the community's living facilities and housing quality, residents buying and staying in the community also pay attention to the community's safety environment. Traditional residential fence and anti -...

Posted at 2012-08-21 14:20 • 214 times read
Home TV monitoring system solution
Position setting of network monitoring storage equipment in monitoring system

At present, storage devices come in different solutions according to the organization and the network nodes where they are located, and can be roughly divided into digital video recorders (DVR), ...

Posted at 2012-08-16 14:14 • 1131 views
Position setting of network monitoring storage equipment in monitoring system
Design and Implementation of Communication Power Supply Monitoring System Based on Single Chip Computer

Abstract: In recent years, the communication industry has developed extremely rapidly. The power supply system is the power center of communication. The working stability of the communication power supply system is directly related ...

Posted at 2012-07-05 09:45 • 900 views
Design and Implementation of Communication Power Supply Monitoring System Based on Single Chip Computer
New SIM card to monitor children's every move

Vodafone (Vodafone) began to provide a service called Bemilo, which allows parents to use their children's mobile phone ...

Posted at 2012-06-04 15:05 • 1069 views
New SIM card to monitor children's every move
Design of power supply monitoring system based on CAN communication

Traditional power supply system parallel systems mostly use simulation to achieve current sharing between modules, but there are some common shortcomings: there must be current sharing control ...

Posted at 2012-05-22 10:57 • 578 times read
Design of power supply monitoring system based on CAN communication
Design scheme of smart home monitoring system

Abstract: Introduces a design method of a simple intelligent monitoring system for home. This method mainly adopts embedded Web server technology, and is in ...

Posted at 2012-05-18 10:31 • 2767 views
Design scheme of smart home monitoring system
Build a data acquisition and monitoring system for railway harmonic interference

Design a complex data acquisition system, which can: measure, monitor, and capture various audio signals; remotely synchronize with other devices; according to special ...

Posted at 2012-05-11 10:07 • 223 times read
Build a data acquisition and monitoring system for railway harmonic interference
Smart home monitoring system based on Android platform

The client device of the video monitoring system designed in this paper is an Android tablet. The client obtains real-time monitoring pictures from the IP camera, the root ...

Posted at 2012-05-10 09:32 • 3674 views
Smart home monitoring system based on Android platform
Application of CS5460A in single lamp monitoring system

The CS5460A is now used to accurately detect the voltage effective value and current effective value of a single lamp, and then the state value of the single lamp is monitored by urban lighting ...

Posted on 2012-03-12 11:42 • 2193 views
Application of CS5460A in single lamp monitoring system
How to choose the image signal transmission line in the monitoring system

Since coaxial cable, twisted pair and optical fiber are the three most widely used transmission media in the current monitoring system, we can analyze them from several aspects ...

Posted on 2012-02-20 16:17 • 789 views
How to choose the image signal transmission line in the monitoring system
NiosII + GPS / GSM realizes automobile state monitoring system

The SoPC-based car safety monitoring system uses Altera's latest SoPC solution to monitor the parking and running status of the car ...

Posted on 2012-02-09 11:16 • 581 times read
NiosII + GPS / GSM realizes automobile state monitoring system
LED technology realizes lighting monitoring system

Introduced a coal mine lighting and safety monitoring system based on LED technology, while providing the lighting environment for coal mine production, making full use of its low voltage supply ...

Published on 2011-11-04 10:21 • 262 views
LED technology realizes lighting monitoring system
The role of power environment monitoring system in power supply maintenance

With the wide application of new services and new technologies in the communications industry, the scale and capacity of operators' network construction are getting larger and larger, and the risk of network security operation is also increasing ...

Published on 2011-10-25 11:41 • 682 views
The role of power environment monitoring system in power supply maintenance
Implementation of a new type of data acquisition and monitoring system

According to the three application architectures of the Internet of Things and the architecture of the data collection and monitoring system, a new data collection and monitoring system is designed ...

Published on 2011-09-27 11:25 • 1132 views
Implementation of a new type of data acquisition and monitoring system
MB90F462 in the data acquisition card of smart home monitoring system ...

MB90F462 is a general-purpose 16-bit microcontroller produced by Fujitsu, with a minimum instruction cycle of only 62.5ns, suitable for ...

Posted on 2011-09-23 11:41 • 767 views
MB90F462 in the data acquisition card of smart home monitoring system ...
3G and driving recorder realize vehicle scheduling monitoring system

The vehicle dynamic monitoring system designed in this paper integrates 3G (GPS, GSM, GIS) and vehicle driving recorder technology in one, it can realize GP ...

Posted at 2011-09-19 15:48 • 585 views
3G and driving recorder realize vehicle scheduling monitoring system
Design of Monitoring System Based on FPGA in Industrial Control Field

When the whole machine is working, about 4% of the energy is consumed by various power electronic devices, and the consumed energy is in the form of heat in a single module ...

Posted at 2011-09-15 18:35 • 426 views
Design of Monitoring System Based on FPGA in Industrial Control Field
Monitoring System of Logistics Transportation Vehicles Based on GPS and CDMA

In recent years, the logistics industry has developed rapidly, and a logistics vehicle based on GPS (Global Positioning System) and CDMA (Code Division Multiple Access) technology has been proposed ...

Published on 09:31 2011-09-13 • 1207 views
Monitoring System of Logistics Transportation Vehicles Based on GPS and CDMA
A design scheme of ring vacuum monitoring system

Use CAN bus networking suitable for high noise environment operation. Multiple vacuum gauges and their interlocking protection units are hung on the CAN bus through the CAN controller ...

Posted at 2011-09-01 15:26 • 323 times read
A design scheme of ring vacuum monitoring system
Ethernet interface design of battery monitoring system

With the increasing popularity of networking, the bottom layer of the battery control system still uses RS485 bus connection, and the Ethernet interface is reserved for direct use with companies ...

Posted at 2011-08-16 10:54 • 690 views
Ethernet interface design of battery monitoring system
Application of μC / -II in digital microwave monitoring system

本文给出一种数字微波设备监控系统的设计,该系统引入μC/OS-II之后,系统的开发效率得到提高,整个...

发表于 2011-08-15 10:50 • 265次阅读
μC/-II在数字微波监控系统中的应用
基于USB与RS485总线的监控系统设计

了有效地实现对生产线上各个分区仪表数据的实时监测及远程控制, 采用Borland C ++ Bu i...

发表于 2011-08-11 14:23 • 1199次阅读
基于USB与RS485总线的监控系统设计
闭路电视监控系统在轨道交通中的应用

作为区域安全防范系统和生产管理系统的重要组成部分,闭路电视(close circuit televi...

发表于 2011-08-11 09:58 • 859次阅读
闭路电视监控系统在轨道交通中的应用
两种电动汽车充电站的监控系统方案

本文首先介绍了基于专用停车场的充电站监控系统的结构设计,根据国家标准设计监控系统实现的功能,最后介...

发表于 2011-08-05 16:24 • 1588次阅读
两种电动汽车充电站的监控系统方案
Design of monitoring system for electric vehicle charging station based on MCGS

本文首先介绍了基于专用停车场的充电站监控系统的结构设计,根据国家标准设计监控系统实现的功能

Too hot in summer, how to cool? Rechargeable Mini Fan can help you. When in office, put a Mini Fan on the desk. It will bring you cool and gentle wind. With low noise, other workmates will be nod disturbed. At home, put a portable mini fan on the table, it will bring gentle wind to the children and the elder.

Strong wind and no noise: The mini portable Handheld Fan uses a brushless DC motor to provide strong wind while quiet, energy-saving and stable operation. The maximum rotating speed of the fan is about 4850 rpm which is enough to keep you cool, works by accelerating airflow, low noise, giving you a cool and wonderful summer.

With a USB line, this Usb Mini Fan can be recharged by direct current or a computer. It is also a mobile phone holder when put on the table. Small body, low noise, enjoy the cool and comfortable summer at anytime and anywhere.

Mobile phone holder: This handy usb mini desk fan is also a mobile phone holder when put on the desk or table. Small body, big power, enjoys the cool summer and gentle wind at anytime and anywhere.

By the way, this mini fan is also an aromatherapy. You can add the perfume you like.

Rechargeable Mini Fan

Usb Rechargeable Fan,Rechargeable Neck Fan,Small Hand Held Fan,Rechargeable Handheld Fan

SHENZHEN HONK ELECTRONIC CO., LTD , https://www.honktech.com