Бодрого дня!
Показывается неисправность er91 на частотном регуляторе M810-10403200E. Похожие устройства ATV212WD45N4, CIMRV7TC20P77, IMS20238-V5-C24-F1-E4 на компрессорах функционируют.
Решение нашел через nigma по запросу "1n4001, 1n4002, 1n4003, 1n4004, 1n4005, 1n4006, 1n4007" http://prom-electric.ru/media/1n4001_4007.pdf . Заменил модуль семикрон.
До свидания!Удачи!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-04
Post awaiting moderation.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-07
Привет всем!
Происходит error f211 на частотнике EQ7-2005-C. Похожие устройства ATV71ES5C50N4, CIMRV7CU47P54, FR-D720-014-NA установленные на насосах работают исправно.
Подсказку нашел в гугле по запросу "Ремонт частотного преобразователя Delta VFD220B53A" prom-electric.ru/articles/1/62/ . Поменял клеммник.
Пока!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-07
SPBRG and SPBRGH. The value stored in the registers is 19Fh. DEFINE HSER_TXSTA 24h DEFINE HSER_SPBRGH 1 DEFINE HSER_SPBRG 9fh BAUDCON = 8 C18 The OpenUSART function sets the port parameters. The statement below disables the transmit and receive interrupts, sets the EUSART to asynchronous mode, configures the port for 8 data bits, enables the receiver, and sets the bit rate to 2400 bps assuming FOSC = 4 MHz. The final parameter is the value for the SPBRG register. BAUDCONbits.BRG16 = 0; OpenUSART USART_TX_INT_OFF & USART_RX_INT_OFF & USART_ASYNCH_MODE & USART_EIGHT_BIT & USART_CONT_RX & USART_BRGH_LOW, 0x19 ; This example is identical except FOSC = 20 MHz, which requires a different value in SPBRG: OpenUSART USART_TX_INT_OFF & USART_RX_INT_OFF & USART_ASYNCH_MODE & USART_EIGHT_BIT & USART_CONT_RX & USART_BRGH_LOW, 0x81 ; 242 Ports for Embedded Systems Using a 16-bit value to set the baud rate requires setting BRG16 = 1 and storing a value in SPBRGH. This example sets a bit rate of 2400 bps assuming FOSC = 4 MHz: BAUDGONbits.BRG16 = 1; SPBRGH = 1; OpenUSART USART_TX_INT_OFF & USART_RX_INT_OFF & USART_ASYNCH_MODE & USART_EIGHT_BIT & USART_CONT_RX & USART_BRGH_HIGH, 0x9f ; Sending Data Firmware can write individual bytes or arrays of bytes to a port. Before writing to a port, firmware should wait for TXIF = 0, indicating that the port isn’t busy sending a byte. PBP The hserout statement waits for TXIF = 0 and writes data to the port. Each of the hserout statements below write the same value 4lh, the code for the character “A” to the port: hserout "A" hserout $41 test var byte test = $41 hserout test An hserout statement can also write multiple bytes to a port. This statement writes a string: hserout “hello, world" This statement writes the values stored in a byte array: test var byte 2 test 0 = "O" test 1 = "K" hserout STR test 243 Chapter 11 C18 The putcUSART function writes a byte to the port. The BusyUSART function returns 1 when the port is busy tran prom-electric.ru
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-07
подключение группы безопасности котла
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-07
проверка правильности начисления заработной платы
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-07
сроки ремонта оборудования закон
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2018-04-07
пуско наладка системы вентиляции
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Бодрого дня!
Показывается неисправность er91 на частотном регуляторе M810-10403200E. Похожие устройства ATV212WD45N4, CIMRV7TC20P77, IMS20238-V5-C24-F1-E4 на компрессорах функционируют.
Решение нашел через nigma по запросу "1n4001, 1n4002, 1n4003, 1n4004, 1n4005, 1n4006, 1n4007" http://prom-electric.ru/media/1n4001_4007.pdf . Заменил модуль семикрон.
До свидания!Удачи!
Привет всем!
Происходит error f211 на частотнике EQ7-2005-C. Похожие устройства ATV71ES5C50N4, CIMRV7CU47P54, FR-D720-014-NA установленные на насосах работают исправно.
Подсказку нашел в гугле по запросу "Ремонт частотного преобразователя Delta VFD220B53A" prom-electric.ru/articles/1/62/ . Поменял клеммник.
Пока!
SPBRG and SPBRGH. The value stored in the registers is 19Fh. DEFINE HSER_TXSTA 24h DEFINE HSER_SPBRGH 1 DEFINE HSER_SPBRG 9fh BAUDCON = 8 C18 The OpenUSART function sets the port parameters. The statement below disables the transmit and receive interrupts, sets the EUSART to asynchronous mode, configures the port for 8 data bits, enables the receiver, and sets the bit rate to 2400 bps assuming FOSC = 4 MHz. The final parameter is the value for the SPBRG register. BAUDCONbits.BRG16 = 0; OpenUSART USART_TX_INT_OFF & USART_RX_INT_OFF & USART_ASYNCH_MODE & USART_EIGHT_BIT & USART_CONT_RX & USART_BRGH_LOW, 0x19 ; This example is identical except FOSC = 20 MHz, which requires a different value in SPBRG: OpenUSART USART_TX_INT_OFF & USART_RX_INT_OFF & USART_ASYNCH_MODE & USART_EIGHT_BIT & USART_CONT_RX & USART_BRGH_LOW, 0x81 ; 242 Ports for Embedded Systems Using a 16-bit value to set the baud rate requires setting BRG16 = 1 and storing a value in SPBRGH. This example sets a bit rate of 2400 bps assuming FOSC = 4 MHz: BAUDGONbits.BRG16 = 1; SPBRGH = 1; OpenUSART USART_TX_INT_OFF & USART_RX_INT_OFF & USART_ASYNCH_MODE & USART_EIGHT_BIT & USART_CONT_RX & USART_BRGH_HIGH, 0x9f ; Sending Data Firmware can write individual bytes or arrays of bytes to a port. Before writing to a port, firmware should wait for TXIF = 0, indicating that the port isn’t busy sending a byte. PBP The hserout statement waits for TXIF = 0 and writes data to the port. Each of the hserout statements below write the same value 4lh, the code for the character “A” to the port: hserout "A" hserout $41 test var byte test = $41 hserout test An hserout statement can also write multiple bytes to a port. This statement writes a string: hserout “hello, world" This statement writes the values stored in a byte array: test var byte 2 test 0 = "O" test 1 = "K" hserout STR test 243 Chapter 11 C18 The putcUSART function writes a byte to the port. The BusyUSART function returns 1 when the port is busy tran prom-electric.ru
подключение группы безопасности котла
проверка правильности начисления заработной платы
сроки ремонта оборудования закон
пуско наладка системы вентиляции
prom-electric.ru
L300P-150LFU2 VFD1850F43A-G 3G3RV-B4750 EQ5-2005-N1 E1-P CIMR-G7A40P71 CIMR MTIII 18 VFD 002 CIMR-G7A41100 CIMR-G7A45P51 M200-01200042A CIMR-L7B45P57A FR-A540-2.2K-NA CFW110045T4ON1Z ATV71HD45N4S337 CIMR MR5N 2037 ATV71EXC2C50N4 ATV71HD11Y ATV71QC25Y 3G3RV-A2022 S104003-9 CIMRG7C20220B ATV61WU22N4C FR-A720-00240-NA VFD037E43A VZA4011EAA CIMRV7CU20P74 ATV61WD11N4U VFD037EL43A ATV71W075N4 ATV61EXC2C11N CIMR-XCBC40P2 M200-03200100A ATV312HU40N4B VFD370V43A-2 FR-F740-03610-NA M700-09202190A 3G3RV-A4055 VZAB1P5EAA ATV312HU40N4 FR-E720-030-NA CIMR-E7Z40300A CIMRF7Z40300A CIMR-J7CC41P50 CIMR-E7C40181 M400-02400032A CIMRV7SC40P47 CFW110105T4ON1DBZ ATV71QC25N4 CIMR MTII 18 C102010-1 CIMR-E7Z40181B CIMR MR5N 27P5 CIMR-V7AZ42P20 FRV5 CIMRG7C43P71B FR-A540-1.5K-NA FR-F740-06830-NA E2-MINI-S3LIP65 ATV212WU15N4 CIMR-G7A40450 ATV61HD11N4Z ATV212HD18N4 FR-U120-0.4K-UL MA7200-4005-N1 VFD015EL43A ATV58HD12N4ZU CIMR-E7Z42P21 M600-03200050A C1MR-L7Z4055 CSX-030-V4-C1 ATV61HD75N4Z 3G3PV-B2300 CIMR MTIII 11.5 CIMR-G7C40P41B E3-8100K 0P5H 3G3RV-A2150 ATV71HD30M3X337 SJ200-075HFU EQ7-4003-C CIMR-F7Z41101B CIMR-E7Z40151 CIMR-E7Z22P21A ATV31CU75N4 WJ200-001LF CIMR-V7CC20P77 CIMR-V7CU42P24 ATV61QC25Y prom electric prom-electric.ru FRN7.5VG7-2 CIMRG7C43P71A M700-07400770A FR-A140E-3.7K CIMRV7AZ25P51 ATV61HC31Y ATV61HD18N4S337 N3-420-N1 ATV71EXC5C31Y CIMR-V7AZ22P20B M600-05200250A CIMR-V7AT42P20 CIMR-F7Z20P71 3G3RV-B211K QMP550A4R CIMRF7Z40371A EI-9011-050HIP54 ATV71HD37M3X FR-V540-3.7K-NA QMP700A4 CIMR-F7Z42P21B CIMR-E7Z20370A VZA40P7EAA CIMRV7TCB4P00 CIMRE7Z40450A CIMRV7CC27P51 SMC930075-P WJ200-004HF ATV312HU75N4 CIMR-E7Z41600B VZAB0P1EAA ATV71ES5C11N4 CIMR-F7Z40450A CIMR-E7Z41320B M800-04400172A CFW080026BDN1A1Z CIMRV7AZ27P51 EI-9011-400H FR-A740-04320-NA EI-P7002-200H S104002-4FS CIMR-VC4A0009JAA GBR CIMR MR5A 2015 ATV61HU40Y E1-9011 200H M800-09402240E CIMRJ7AZ21P50 E1-7011 125H VFD750F43A -g CIMR-V7AT20P70 L100-007MFU2 CIMR-E7Z20901A ATS22C32S6U 3G3PV-A2037 E1-9011 150H VZAB1P5BAA -s5030 FR-A520-22K-NA CIMRE7Z40151B WJ200-037LF CIMRG7C42P21B ATV212WD15N4C FR-E540-3.7K-NA ATV71E5075N4 P3-E540-0.75K-NA M800-09402240E CIMR-G7C40450A ATV71EXS5C20Y ATS22C32Q FR-D740-080-NA MA7200-2005-N4 CIMRF7Z44P01B E1-P EQ5-4400-C ATV212WU75N4 CIMRF7Z40220A M600-03200050A ATV61HC63N4D387 ATV71HC25N4 CIMRF7Z40151B ATV61EXC5C11N4H CIMR-E7C20370 CFW-090240TGZ PA7300-2020-N1 CIMRE7Z40300A ATV212WU75N4 CIMR MR5A 23P7 ATV61EXC5C50N4H ATV61HD55N4Z
prom-electric.ru
http://avr-asm.blogspot.com/