32-channel Temperature Acquisition Pt100 Module Supporting Modbus-RTU Kingview Industrial Control | Air Conditioner Parts

Сохраните в закладки:

Цена:16724.01RUB*

Количество:

Доставка в Эль-Монте, по России и СНГ


  • 32-channel Temperature Acquisition Pt100 Module Supporting Modbus-RTU Kingview Industrial Control | Air Conditioner Parts - Фото №1
  • 32-channel Temperature Acquisition Pt100 Module Supporting Modbus-RTU Kingview Industrial Control | Air Conditioner Parts - Фото №1
  • История цены

    *История изменения цены! Указанная стоимость возможно, уже изменилось. Проверить текущую цену - >

    Месяц Минимальная цена Макс. стоимость Цена
    Sep-19-2025 19902.13 руб. 20897.10 руб. 20399.5 руб.
    Aug-19-2025 19734.57 руб. 20721.36 руб. 20227.5 руб.
    Jul-19-2025 16557.29 руб. 17385.83 руб. 16971 руб.
    Jun-19-2025 19400.79 руб. 20370.3 руб. 19885 руб.
    May-19-2025 16891.70 руб. 17736.96 руб. 17313.5 руб.
    Apr-19-2025 19065.68 руб. 20018.36 руб. 19541.5 руб.
    Mar-19-2025 18898.11 руб. 19843.59 руб. 19370.5 руб.
    Feb-19-2025 18731.89 руб. 19668.98 руб. 19199.5 руб.
    Jan-19-2025 18564.31 руб. 19492.54 руб. 19028 руб.

    Новые товары

    Характеристики

    32-channel Temperature Acquisition Pt100 Module Supporting Modbus-RTU Kingview Industrial Control | Air Conditioner Parts

    Описание товара

    Brand NameNoneTypeAir Conditioner PartsMeasurement unitpiece/piecesEach pack118 178,65 ₽-8% another 2 days18 178,65 ₽-8% another 2 days16 724,01 ₽16 724,01 ₽Add to CartBuy now16 724,01 ₽20 Jul - Free

    Delivery to a Post office

    14 Jul - Free

    Self-pickup

    90-Day Buyer ProtectionDescription modname=ckeditor Please download the information here. Anything unclear, please leave a message and ask questions at any time. Manual download link: //pan.baidu.com/s/1BzyR_XJPI5Dw449ysjIeDA password: 28bq Download link for some data: //pan.baidu.com/s/1sDpGKimHZEjDDLZfqXeCpA password: mjup   Product model: JF-32PT100-134-002   Basic functions:Support standard modbus-RTU devices such as Kingview, Text, Touch Screen, PLC, etc.

    Direct connection to Pt100 without transmitter

     

    32-way Pt100 temperature output, minimum measurementPrecision 0.1 & deg; C, no transmitter, direct thermal resistance measurement. 1-way 485 communication port, optoelectronic isolation (supporting modbus-RTU protocol) 1-way USB interface, directly connected to the computer 1 RJ45 Network Interface, Direct Connection to Computer, Routing, etc.(Support modbus-TCP protocol) "======================" Pt100, CU20, etc. Temperature range:It is - 200 ~+600 C. Accuracy: 0.5%. Measurement time: less than 1 ms Supporting four-wire, three-wire, two-wire connection

    -

    Two-wire, three-wire, four-wire connection

    -

    Functional characteristics

    32-bit ARM processor Embedded Real-time Operating System Input channel: 32 channels Input type:Pt, CuSeries Thermal Resistance Wiring mode: 2-wire system \\\ 3-wire system Sampling rate: 1 sampling point/second Resolution: 0.1 Celsius Accuracy: & plusmn; 0.5% Supporting periodic self-calibration Channel Controllable (Close/Open, Alarm Settings) Work temperature range: - 25 ~85 Measuring temperature range:It is - 200 ~+600 C. Plastic Shell, Standard DIN Guide Installation Application scope Industrial Field Temperature Control System Remote Monitoring and Data Acquisition Iron and Steel, Metallurgy and Chemical Industry …… The precision of the negative temperature coefficient thermistor thermometer can reach 0.1 C and the temperature sensing time can be less than 1s. It is not only applicable to the barn thermometer, but also to the temperature measurement of food storage, medicine and health, scientific farming, ocean, deep well, high altitude, glacier and so on.  

     

     

     

    Code Function Support Function Code:

     

    Function code Definition Operations (binary) 0x02 Read Switch InputRead one or more switch state input data 0x01 Read Switch OutputRead one or more switch output status data 0x03 0x04 Read register data Read data from one or more registers   0x05 0X0F Write Switch Output Write multiple switches Control all the wayRelay& ldquo; combined / split & rdquo; output   0x06 Write one-way registerWrite a set of binary data into a single register 0x10 Write MultiplexerWrite multiple sets of binary data into multiple registers

     

    ********************************************

    MODBUS address1

    Baud rate: 9600 8Bit Data Bit 1 bit stop bit No check     Temperature Output of 40001~40032 32 Thermal Resistors **********************************************

     

     

    Read temperature input (0x03))

    Host Send: addr 03 regH regL numH numL crcH crcL

    Return from the machine: addr 03 len d0H d0L & hellip; & hellip; dnH dnL crcH crcL

    Explanation: Register addresses start counting from 0, and numH numL represents the number of routes to read the temperature. Benka has eight routestemperatureInput, using 12 bitADC, each waytemperatureinputData takes up two bytes. For example, to read routes 2 and 3, the number of registers with an address of 0001 is 0002. For example, to read all analog quantities from Route 1 to Route 8, the number of registers with an address of 0000 is 0008. The return data 0-0xFFF represents the analog data collected. For example, the read data is 18C, the decimal number is 396, and the temperature is 39.6 degrees.

    Example: Reading from Route 1 to Route 8temperature

    Host Send: 01 03 00 00 00 08 440C

    Return from aircraft: 01 03 0C d0H d0L & hellip; & hellip; d5H d5L crcH crcL

    - Analog quantityInput and outputVC source code(Notes are clear): // Read the status of a single register
    // ip_Addr slave MODBUS address
    // Data_Addr Data Storage Register Address
    UInt16 readBUF(byte ip_Addr, UInt16 data_Addr)
    {
    UInt16 crc; //check value
    Byte [] MSG = new byte [8]; // instruction array

    MSG [0] = ip_Addr; //slave address
    MSG [1] = 0x04; // Read a single register
    MSG [2]= (byte) (data_Addr & gt; & gt; 8); // register address high bit
    MSG [3]= (byte) data_Addr; //low register address
    MSG [4] = 0x00; // High bit of data length to read
    MSG [5] = 0x01; // The base of the length of the data to be read
    CRC = CRC16 (msg, 6); // Compute CRC
    MSG [6]= (byte) (crc & gt; & gt; 8); / / check 8 bits high
    MSG [7]= (byte) crc; //Check low 8 bits

    Comm.Write(msg);//Send Read Request Zheng

    Receive_A_Frame(); //Receive the Zhen response signal

    // Add here: Judge the received data
    }

    ...... More source code, please take a picture after Wangwang request.  

    - Examples of configuration software settings

     

     

     

     

     

     

     

     

     

     

     

    -

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    '




    Трекер стоимости


    Отзывы покупателей

    Новые отзывы о товарах

    Анастасия Александровна Шитц 27 Сентября 2023, 13:48 #

    Прислали не тот товар. В возврате отказывают. Просто но замысловато (предлагают вернуть товар за свой счет и это кидок №2)... Читать отзыв полностью...

    Анатолий 13 Мая 2023, 12:45 #

    Не рекомендую связываться с ними. Покупал тариф на билайн «Росатом 150», прошло чуть больше полугода и билайн прислал сообщение что... Читать отзыв полностью...

    Валерий 28 Сентября 2025, 12:31 #

    Добрый день! Подойдут ли регулируемые подножки на duke 390 2024 года? ... Читать отзыв полностью...

    Екатерина Поливода 19 Декабря 2021, 20:20 #

    Пришли относительно быстро, в целой упаковке, не повреждены. В целом, милые, маленькие серьги. Я довольна!... Читать отзыв полностью...

    Сергей Скиданов 06 Июля 2023, 14:28 #

    Здравствуйте! У Вас есть прошивка на forefeel Android 12? Постоянно перезагружается и не включается.... Читать отзыв полностью...

    Анастасия 19 Декабря 2021, 17:31 #

    Эта игрушка увлекла моего ребёнка, он готов её из рук целый день не выпускать. Я приятно удивлена. Даже сама... Читать отзыв полностью...

    Dmytro Doroshenko Stereomaydan Synelnykove 12 Января 2024, 18:30 #

    Electron Tubes Svetlana =С= SED Winged SV300B SVEL34 SV6L6G SVKT88 SV6550C SV6B4G Seven Thousand Piece Electron Vacuum Valve Tubes Svetlana... Читать отзыв полностью...


    Отзывы о 32-channel Temperature Acquisition Pt100 Module Supporting Modbus-RTU Kingview Industrial Control | Air Conditioner Parts

    Данную страницу никто не комментировал. Вы можете стать первым.
    Введите символы или вычислите пример:
    captcha