With the development of modern society and the advancement of science and technology, many high-rise buildings and intelligent buildings have emerged. As an important means of transportation inside high-rise buildings, elevators are increasingly used. As an indispensable part of the elevator system, the application of elevator call display panels (referred to as elevator call panels) has also increased dramatically.
The elevator hall call board is used outside the elevator door on each floor for passengers and elevator maintenance personnel to use. The elevator hall call board transmits the demand information of passengers and maintenance personnel to the elevator main board through the CAN bus, and the elevator main board receives the information and performs corresponding operations. At the same time, the elevator main board transmits the real-time operation information of the elevator to the elevator hall call board through the CAN bus, and displays it through the hall call board LED for passengers to refer to.
AVR microcontrollers have the characteristics of high reliability, powerful functions, high speed, low power consumption and low price. This system uses the high-end ATmega series AVR microcontroller ATmegal6. It has an advanced RI-SC structure, 16 kB of system programmable Flash, 512 B of EEPROM, and 1 kB of on-chip SRAM. At the same time, the chip has a programmable watchdog timer with an independent on-chip oscillator. The oscillation period of the on-chip crystal oscillator can be set by changing the fuse bit, which can save the design of the peripheral watchdog circuit and crystal oscillator circuit.
1. Hardware structure of elevator call board system
The hardware circuit of the elevator call board is mainly composed of a passenger button module, an indicator light control module, an LED module, a CAN communication circuit and a power supply module, as shown in Figure 1.
1.1 CAN communication module
1.1.1 Technical characteristics of CAN
CAN is a multi-master bus. The communication medium can be twisted pair, coaxial cable or optical fiber. It has three layers of protocols, including physical layer, data link layer and application layer. Its communication rate can reach 1 Mb/s. The CAN bus dedicated interface chip integrates the physical layer and data link layer functions of the CAN protocol in the form of firmware to complete the framing of communication data, including bit filling, data block encoding, cyclic redundancy check, priority determination and other tasks. It has the following characteristics:
1) Abolish the traditional station address coding and replace it with coding the communication data block, which can work in multi-master mode;
2) Adopting non-destructive arbitration technology, when two nodes transmit data to the network at the same time, the node with lower priority will actively stop sending data, while the node with higher priority can continue to transmit data without being affected, thus effectively avoiding bus conflicts;
3) Adopting short frame structure, the number of valid bytes in each frame is 8, the data transmission time is short, the probability of interference is low, and the retransmission time is short;
4) Each frame of data has CRC check and other error detection measures to ensure high reliability of data transmission and is suitable for use in high interference environments;
5) In the event of a serious error, the node has the function of automatically shutting down the bus and cutting off its connection with the bus so that other operations on the bus are not affected;
6) Data can be transmitted and received in point-to-point, one-to-many and broadcast centralized modes.
Based on the above characteristics, in this design, the priority of the elevator main board node is set to the highest, and the priority of other elevator call boards is second. The elevator main board can receive data from any elevator call board, while the elevator call board can only receive data from the elevator main board. The elevator main board can send broadcast information (such as floor operation information) and can also send point-to-point information (such as indicator light control information for a certain floor).
1.1.2 Hardware Implementation of CAN
The CAN controller uses MicroChip's MCP2510, which uses the SPI interface to communicate with the MCU. Only four buses are needed to communicate with the MCU, but in order to have better real-time performance, interrupts are generally used to communicate with the MCU, so an interrupt signal bus is also required to notify the MCU to receive data sent from the CAN bus. The CAN interface device uses TJ-Al050, which is the interface device between the CAN controller and the physical bus.
In the CAN module circuit, as shown in Figure 2, SS, MOSI, MISO, SCK, and INT of ATmegal6 are connected to SI, SO, and SCK of MCP2510 respectively. In order to further improve the anti-interference ability of the CAN bus node, TXCAN and RXCAN of MCP2510 are connected to TXD and RXD of TJAl050 respectively through optical coupler 6N137.
1.1.3 CAN message format
The message transmitted in the bus consists of 7 parts per frame. The CAN protocol supports two message formats, the only difference between which is the length of the identifier (ID), the standard format is 11 bits, and the extended format is 29 bits. This design uses a standard data frame, which consists of 7 bit fields, including the frame start, arbitration field, control field, data field, CRC field, response field, and frame end, as shown in Figure 3.
The length of the data field is 0 to 8 bytes. The arbitration field consists of an identifier and RTR. In the standard format, the identifier is 11 bits. In the formulation of this communication protocol, the first 4 bits of the flag bit are used as the communication type code, and the last 7 bits are used as the ID number of the CAN node. The data field is used to store the specific content information of the communication, such as the floor where the elevator is located, the direction of movement, etc.
1.2 LED display module
This module consists of 3 8x8 LED display screens and a drive circuit with a single chip as the core. The LED display screen is composed of LED dot matrix display P2158. It is a display device that uses light-emitting diodes as pixels and arranges them in the order of rows and columns. It works in a row-by-row (or column-by-column) scanning mode and is driven by narrow pulses with large peak values. It continuously selects each row of the display screen from top to bottom, and sends pulse signals representing graphics or text information to each column. By repeating the above operations, various graphics or text information can be displayed. The drive circuit with AVR high-speed single chip as the core is shown in Figure 4.
The LED display function uses a line-by-line scanning method to display the corresponding information on three 8×8 dot matrix LED display screens. The control signal is sent by the MCU and is divided into two paths after passing through the buffer 74F244. One path passes through the shift register 74S164, and then drives the rows of the LED dot matrix after serial-to-parallel conversion; the other path passes through the latch 68595, and then drives the columns of the LED dot matrix after serial-to-parallel conversion. The LED dot matrix display uses line-by-line scanning, and the modulus of each row display is from right to left, and the bytes are output in positive order. Among them, the input data of the latch is provided by the font library in the software. The LED display is displayed once every 20 ms, so the display frequency is 50 Hz, which is in line with the flicker characteristics of the human eye.
2. Software Design of Elevator Call Board
The software design process of the elevator call board is shown in Figure 5. The elevator call board receives the data frame of the elevator main board through the CAN bus, and temporarily stores the data frame in the buffer area. After analysis and processing, it is saved in a certain way. Then, according to the way the data frame is to be displayed, the corresponding data is taken out from the data storage device and stored in a display buffer area for display, and displayed in a line-by-line scanning mode. If there is a call signal input on the elevator call board, the corresponding indicator light is on, and at the same time, the elevator call board sends a data frame to the elevator main board through the CAN bus, and the data frame content contains the call information. The communication method establishes a handshake response mechanism.
3 Conclusion
This system uses AVR single chip microcomputer and CAN bus communication, which is safe and reliable with good real-time performance. It is mainly used for outbound call display in elevator system and can also be used for floor information display in elevator car. When connected to the elevator simulation system, this system can respond quickly, is safe and reliable during long-term operation, and is simple and convenient to add and delete nodes.
Previous article:XY・CN bus power supply and communication system
Next article:Positioning technology of UWB-based wireless sensor networks
Recommended ReadingLatest update time:2024-11-16 20:32
- Popular Resources
- Popular amplifiers
- Siemens Motion Control Technology and Engineering Applications (Tongxue, edited by Wu Xiaojun)
- Modern Product Design Guide
- Modern arc welding power supply and its control
- Small AC Servo Motor Control Circuit Design (by Masaru Ishijima; translated by Xue Liang and Zhu Jianjun, by Masaru Ishijima, Xue Liang, and Zhu Jianjun)
- Molex leverages SAP solutions to drive smart supply chain collaboration
- Pickering Launches New Future-Proof PXIe Single-Slot Controller for High-Performance Test and Measurement Applications
- CGD and Qorvo to jointly revolutionize motor control solutions
- Advanced gameplay, Harting takes your PCB board connection to a new level!
- Nidec Intelligent Motion is the first to launch an electric clutch ECU for two-wheeled vehicles
- Bosch and Tsinghua University renew cooperation agreement on artificial intelligence research to jointly promote the development of artificial intelligence in the industrial field
- GigaDevice unveils new MCU products, deeply unlocking industrial application scenarios with diversified products and solutions
- Advantech: Investing in Edge AI Innovation to Drive an Intelligent Future
- CGD and QORVO will revolutionize motor control solutions
- Innolux's intelligent steer-by-wire solution makes cars smarter and safer
- 8051 MCU - Parity Check
- How to efficiently balance the sensitivity of tactile sensing interfaces
- What should I do if the servo motor shakes? What causes the servo motor to shake quickly?
- 【Brushless Motor】Analysis of three-phase BLDC motor and sharing of two popular development boards
- Midea Industrial Technology's subsidiaries Clou Electronics and Hekang New Energy jointly appeared at the Munich Battery Energy Storage Exhibition and Solar Energy Exhibition
- Guoxin Sichen | Application of ferroelectric memory PB85RS2MC in power battery management, with a capacity of 2M
- Analysis of common faults of frequency converter
- In a head-on competition with Qualcomm, what kind of cockpit products has Intel come up with?
- Dalian Rongke's all-vanadium liquid flow battery energy storage equipment industrialization project has entered the sprint stage before production
- Allegro MicroSystems Introduces Advanced Magnetic and Inductive Position Sensing Solutions at Electronica 2024
- Car key in the left hand, liveness detection radar in the right hand, UWB is imperative for cars!
- After a decade of rapid development, domestic CIS has entered the market
- Aegis Dagger Battery + Thor EM-i Super Hybrid, Geely New Energy has thrown out two "king bombs"
- A brief discussion on functional safety - fault, error, and failure
- In the smart car 2.0 cycle, these core industry chains are facing major opportunities!
- The United States and Japan are developing new batteries. CATL faces challenges? How should China's new energy battery industry respond?
- Murata launches high-precision 6-axis inertial sensor for automobiles
- Ford patents pre-charge alarm to help save costs and respond to emergencies
- New real-time microcontroller system from Texas Instruments enables smarter processing in automotive and industrial applications
- 【Tuya BK7231N】In-depth analysis of sample code
- The sipeed team will provide developers with free MAXI development boards
- CircuitPython-enabled electronic cat (MeowMeow)
- Research on Several Issues of Portable Image Acquisition System Based on ARM and FPGA
- Please give me some advice!
- Analysis of the switch input circuit composed of four diodes
- Analysis of common problems in TMS320C2000 projects?
- Clock chip problem
- 18 Ways to Draw PCB Routes
- [Sipeed LicheeRV 86 Panel Review] 12-Waft Routine Analysis and Button Function Test