introduction Intelligent and portable is the development trend of modern electronic products, and the intelligentization of medical electronics makes the operation of medical personnel more convenient. The medical staff can carry the handheld monitor to carry out real-time monitoring of each ward, and timely understand the relevant situation; in case of sudden situation, such as drip below the set warning value, the terminal monitoring device can generate an interrupt signal, and the main control terminal can give priority to the operation. Corresponding processing. This design realizes a portable remote wireless drip monitoring system based on AT32UC3A0512[1] single-chip microcomputer, which can timely understand the drip state and improve the safety of medical drip equipment. 1 Introduction to system principle The system mainly includes two parts: a handheld control terminal and a terminal monitoring device. The handheld control terminal mainly implements the operation of the information input and the query interface, and inputs the ward number and the drip speed value to be queried, and sends it to the corresponding ward monitoring terminal in the form of a data packet, and displays the drip state data information transmitted by the terminal in real time. The terminal monitoring device is mainly responsible for data collection and processing of the drip state (drip flow rate and drip level, etc.), and sends the processed data to the main control terminal through wireless communication; for the drip liquid level is lower than the set value, the patient calls Wait for an emergency, process according to the interrupt mode, issue an alarm prompt, and send the event type to the main control terminal in the form of a data packet. The structural block diagram of the system is shown in Figure 1. Figure 1 System block diagram 2 system hardware design 2.1 Control part hardware design The handheld control terminal uses Atmel's 32-bit RISC processor AT32UC3A0512 as the main controller [1]. It has low power consumption and high throughput. It has 512K Flash and 64K SRAM inside. The CPU can operate up to 66 MHz. At 3.3 V, the operating current is about 40 mA and the standby current is only 30 μA. Internally highly integrated hardware resources simplify peripheral circuit design, such as internal Flash, USB, ADC, EBI, and Ethernet peripheral interfaces for designers to use. 2.1.1 Touch button module The Quantum Research Group's capacitive touch button module IC QT1801, [2] features low power consumption, simple peripheral circuitry, and support for eight touch-button inputs. After internal filtering and shaping, the logic level is output at the corresponding button port, and various modes of the IC QT1801 can be set according to different peripheral resistance values. The working mode is set as follows: In full mode (Full OpTIon Mode), connect 1 MΩ resistor on pin SNSx (x=0,1,...,7); in compact mode, need to be on pins SNS6K and SNS7 Connect a 1 MΩ resistor in series. There are two types of key output value modes: Oneperkey and Binary Code. When there is a button touch, a touch interrupt signal is generated at the 24-pin (DETECT), and the high level is valid. Among them, CS1~CS5 are touch button inputs, and the interface circuit is shown in Figure 2. Figure 2 touch button module circuit diagram 2.1.2 LCD Display Module The display part adopts EDT's LCD display module ET024006DHU. The LCD Module integrates the graphic control driver HX8347A. The MCU can control the display of the LCD by reading/writing its internal registers through two interfaces. The parallel interface mode and SPI interface mode. 8/16-bit data and 16/18-bit RGB data can be selected in the parallel interface mode, and 8/16-bit data and 16/18-bit RGB data can be directly written to the internal registers in the serial SPI interface mode. 2.1.3 Wireless Communication Module nRF24L01[3] The wireless communication part adopts a single-chip radio frequency transceiver chip, and its working frequency band is the universal ISM frequency band (2.4 to 2.5 GHz), which is a true GFSK single transceiver chip. Built-in link layer, with automatic response and automatic retransmission function, support address and CRC check function. It has very low current consumption, lower current consumption in power-down and standby mode; data transfer rate up to 2 Mbps, built-in standard SPI interface for data transfer with MCU, up to 8 Mbps; 125 optional channels, in the receiving mode, can simultaneously receive data of 6 data channels working on the same channel, and the data channels of the transceivers communicating with each other are set to the same address. Through the read/write of the internal register of nRF24L01 to control the conversion of its working state and the transmission and reception of data, when the transceiver data receiving/transmitting is completed or an abnormality occurs, the IRQ pin generates an interrupt signal, which is active low, corresponding to the STATUS register. Bit write "1" to clear the interrupt flag. The wireless communication module hardware connection is shown in Figure 3. 2.2 Terminal monitoring device hardware design The terminal monitoring device adopts ATmega128 single-chip microcomputer, mainly receives the command data sent by the control terminal, and sends the collected data to the control terminal to complete the functions of patient call, liquid level monitoring, detection and control of drip speed, and sound alarm. 2.2.1 Drip speed control module The drip speed control circuit uses a dedicated stepper motor control chip L297 and a dual full bridge stepper motor drive chip L298. The PWM chopper circuit inside the L297 can generate PWM waves in the switching mode to control the current in the motor windings to control the precise rotation of the motor. The 4-phase control signal it generates can be used to control two-phase bipolar and four-phase single Polar stepper motor. The L298 contains HBridge high-voltage, high-current dual-bridge driver. The 4-channel drive circuit can drive two-phase or four-phase stepper motors up to 46 V and 2 A, which can realize the forward and reverse of the stepper motor. By precisely controlling the forward and reverse rotation of the motor to control the sliding of the flow rate clamp roller of the drip device, the purpose of controlling the drip drop speed is achieved. The hardware connection diagram is shown in Figure 4. Figure 3 wireless module hardware diagram Figure 4 Drop speed control circuit diagram 2.2.2 Drip speed and level detection module The droplet velocity was measured using an infrared tube emission method. The dot detection circuit includes infrared emission, reception, and pulse shaping. The hardware schematic is shown in Figure 5. The ST1150 is a single-light-speed direct-injection infrared photoelectric sensor with a slit width of 1.5 mm and an optical axis center of 2.5 mm. The infrared detection area is small. When no droplets pass, the receiving tube (the transistor inside ST1150) is turned on, Vin is low; when there is a droplet passing, the receiving tube is cut off, a high-level pulse is generated at Vin, and the Schmitt trigger is shaped. A series of regular square wave pulses are then generated at Vout and sent to ATmega128 for processing. Figure 5 Drop speed detection circuit The liquid level detection uses a reflective infrared sensor, and the circuit detection principle circuit is similar to the drip speed detection circuit. The ST198 is a reflective photoelectric sensor consisting of a high-transmittance infrared photodiode and a high-sensitivity phototransistor. It is non-contact detection and is available when the detection distance is 2 to 10 mm. When the liquid level is lower than the set value, the receiving tube receives the level signal, which is inverted by the inverter and sent to the MCU to trigger the interrupt. When the infrared tube is ST1150, it is used for droplet velocity detection, and when it is ST198, it is used for liquid level detection. 3 system software structure (1) Data frame structure A communication data frame structure is defined to manage communication between the control terminal and the device. By parsing the data frame, the master/slave device can perform data processing with high efficiency. According to the order of communication transmission, the format of the data frame is: command (1 byte) + device ID (1 byte) + event type (1 byte) + data field length (1 byte) + data field (n word) Section) + checksum (2 bytes). (2) Transplantation of μC/OSII μC/OSII is an open source, structure-cuttable RTOS that can deprive real-time kernels. Most of the code is C language, which is highly portable and has been ported on multiple CPUs. AVR Studio 5 integrates the Software Framework package, including the Atmel MCU interface driver function. In the AVR Studio 5 environment, porting μC/OSII to the AT32UC3A0512 MCU requires the following modifications in the Micrium official migration instance: 1 Modify the contents of the excepTIon.S file and modify it as follows: _handle_Supervisor_Call: Lddpcpc, __OSCtxSw __OSCtxSw:. longOSCtxSw 2 Modify the contents of cpu.h as follows: #define CPU_CRITICAL_ENTER() {cpu_sr = CPU_SR_Save();} #define CPU_CRITICAL_EXIT() {CPU_SR_Restore(cpu_sr);} #define CPU_SR_Save()cpu_irq_save() #define CPU_SR_Restore(cpu_sr) Cpu_irq_restore(cpu_sr) #define CPU_IntDis()Enable_global_interrupt() #define CPU_IntEn()Disable_global_interrupt() #define CPU_ExceptDis()Disable_global_exception() #define CPU_ExceptEn()Enable_global_exception() #define CPU_Reset()Reset_CPU() Figure 6 Software structure diagram of the main control terminal (3) Controller part software design The software structure under the μC/OSII system is shown in Figure 6. The main control terminal mainly completes the user's operation through the LCD interface, the five touch keys are interface operation buttons, and the numeric keypad is realized by software. Enter the ward number to be queried through the numeric keypad. After confirming, you can check the speed and margin of the ward. The switching relationship of the interface menu is realized by defining a structure, and the structure is defined as: Typedef struct MenuItem{ U8 MenuNum; / / when the number of layer menu items U8 *DispStr; / / display string Struct MenuItem *ChildrenMenus;//submenu node Struct MenuItem *ParentMenus; // parent menu node } Menu; (4) Software design of terminal monitoring part The terminal receives the command data packet sent by the control terminal, parses the command, implements corresponding processing, and packages the data and sends it to the control terminal. The software flow of the terminal control part is shown in Figure 7. Figure 7 terminal main program Conclusion Based on the embedded system of AVR32MCU and μC/OSII, remote online monitoring is realized by wireless communication, and the establishment of wireless network enhances the mobility of the system. The design of a portable drip monitoring system based on AVR32 proposed in this paper will miniaturize the medical drip monitoring device and stabilize the system in a short range. Due to limited resources, network formation for remote control is still being explored. How does TFT work? Tft Lcd Module,Lcd Liquid Crystal Display Module,Lcd Module,Lcd Screen Module ESEN Optoelectronics Technology Co., Ltd, , https://www.esenlcd.com
TFT is the abbreviation of "Thin Film Transistor", generally refers to thin film liquid crystal displays, but actually refers to thin film transistors (matrix)-can "actively" control each independent pixel on the screen, which is The origin of the so-called active matrix TFT (active matrix TFT). So how exactly is the image produced? The basic principle is very simple: the Display Screen is composed of many pixels that can emit light of any color, and the purpose can be achieved by controlling each pixel to display the corresponding color. In TFT LCD, backlight technology is generally used. In order to accurately control the color and brightness of each pixel, it is necessary to install a shutter-like switch after each pixel. When the "blinds" are opened, light can pass through, and " When the shutters are closed, light cannot pass through. Of course, technically, it is not as simple as the one just mentioned. LCD (Liquid Crystal Display) utilizes the characteristics of liquid crystals (liquid when heated, and crystallized into solid when cooled). Generally, liquid crystals have three forms:
Smectic liquid crystal similar to clay
Nematic liquid crystal resembling a fine matchstick
Cholestic liquid crystal
The liquid crystal display uses filaments, and when the external environment changes, its molecular structure will also change, and thus have different physical properties-it can achieve the purpose of letting light through or blocking light-which is just like the blinds just now.
Everyone knows the three primary colors, so each pixel on the display screen needs three similar basic components described above to control the three colors of red, green, and blue respectively.
The most commonly used one is twisted nematic TFT LCD (Twisted Nematic TFT LCD). Existing technologies vary greatly, and we will cover them in detail in the second part of this article.
There are grooves on the upper and lower layers. The grooves on the upper layer are arranged longitudinally and the grooves on the lower layer are arranged horizontally. When no voltage is applied to the liquid crystal in its natural state, the light emitted from the light emitting layer of the twisted nematic TFT Display working principle diagram of Figure 2a will be twisted by 90 degrees after passing through the interlayer, so that it can pass through the lower layer smoothly.
When a voltage is applied between the two layers, an electric field is generated. At this time, the liquid crystals are aligned vertically, so the light will not be twisted-the result is that the light cannot pass through the lower layer.
(2) TFT pixel structure: The color filter is divided into red, green, and blue according to the color, which are arranged on the glass substrate to form a group (dot pitch) corresponding to a pixel. Each monochromatic filter is called It is a sub-pixel. In other words, if a TFT display supports a maximum resolution of 1280×1024, then at least 1280×3×1024 sub-pixels and transistors are required. For a 15-inch TFT display (1024×768), then a pixel is about 0.0188 inches (equivalent to 0.30mm), for an 18.1-inch TFT display (1280×1024), it is 0.011 inches (equivalent to 0.28mm) .
As we all know, pixels are decisive for the display. The smaller each pixel is, the larger the maximum resolution that the display can achieve. However, due to the limitation of the physical characteristics of the transistor, the size of each pixel of the TFT at this stage is basically 0.0117 inches (0.297mm), so for a 15-inch display, the maximum resolution is only 1280×1024.