Design of elevator call display panel based on CAN bus

Publisher:SereneWhisperLatest update time:2010-09-29 Source: 电子设计工程Keywords:AVR  driver  CAN Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

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.

Hardware circuit of elevator call board

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.

CAN module circuit

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.

CAN message format

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.

Drive circuit

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.

Elevator call board software design process

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.

Keywords:AVR  driver  CAN Reference address:Design of elevator call display panel based on CAN bus

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

Features and Applications of the New DMOS Three-Phase PWM Motor Driver A3936
O Introduction Brushless DC motors have the advantages of simple structure, reliable operation, and easy maintenance of AC motors, as well as high efficiency and good speed regulation performance of DC motors. They are increasingly used in industrial control, instrumentation, aerospace and other fields. A3936 i
[Microcontroller]
Features and Applications of the New DMOS Three-Phase PWM Motor Driver A3936
Some tips for isolating and driving power devices such as IGBT and PowerMOSFET
Power devices, such as IGBT, Power MOSFET and Bipolar Power Transistor, need to be adequately protected to avoid damage caused by conditions such as undervoltage, loss of saturation, Miller effect, overload, short circuit, etc. This webinar introduces why optocoupler gate drivers are widely accepted and used, not only
[Power Management]
Driver for lighting high-power LED power supply lines
  As the use of LEDs becomes increasingly popular as a way to save power for general lighting, methods of driving LEDs with high efficiency have become essential. For example, Lumileds' Luxeon devices bring lighting effects or room lighting. Powering a few LEDs may only require a current-limiting resistor, but lightin
[Power Management]
DS18B20 Intelligent Temperature Sensor Driver
/************Port definition, can be modified*****************/ sbit ledrs=P2^3; //Read and write control word     sbit leden=P2^5; //Enable control word sbit ledrw=P2^4; void write_com(uchar com) {   ledrw=0;  ledrs=0;  P0 =com;  delayl(1);  leden=1;  delayl(1);  leden=0; } void write_data(uchar date) {
[Microcontroller]
How to drive LEDs with power factor correction in a single stage
  PFC-SEPIC LED Driver   PFC stands for "Power Factor Correction", SEPIC stands for "Single-Ended Primary Inductor Converter", and of course, LED stands for "Light Emitting Diode"   Integrating these three features in one converter provides a high-efficiency single-stage solution with good power factor for LED lightin
[Power Management]
How to drive LEDs with power factor correction in a single stage
Detailed explanation of CAN filter, mask and identifier settings
Relationship between CAN identifiers, filters and maskers The CAN node uses the identifier to identify whether the CAN frame is what it wants. The identification method is to set the filter mask register to complete the The receive filter register sets the value of each bit of the identifier, and the receive mask re
[Microcontroller]
High Efficiency 3.6W Isolated LED Driver Based on LNK605DG
Overview This article introduces a high-efficiency LED driver that can provide 12 V output voltage and 0.3 A output current in the input voltage range of 90 VAC to 265 VAC. The LED driver uses the LNK605DG device in the LinkSwitch-II series IC of Power Integrations. The topology used in this device is an isolated
[Power Management]
High Efficiency 3.6W Isolated LED Driver Based on LNK605DG
Latest Industrial Control Articles
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号