ไฮไลท์
ชุดวัดค่า PH และ Temperature
สามารถวัดค่าได้ต่อเนื่อง (online)
มี Modbus RS485 Output
มีโหมดสำหรับ Calibrate ค่า
ข้อมูล
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
รายละเอียดสินค้า
Description

Technical parameter

  • Measuring range pH: 0.0~14.0
  • Measuring range temperature: -20°C ~+80°C
  • Measurement accuracy pH: ±0.1PH
  • Measurement accuracy temperature: ± 0.5°C
  • Working voltage DC: 12V ~ 24V (ripple< 50mV)
  • Signal output: ModbusRTU485
  • Power waste: <1W 
  • Storage environment temperature: 10°C - 50°C (-20°C ~ +80°C peak)
  • Storage environment humidity: 20 - 60%RH
  • Work environment temperature: -20°C ~+80°C
  • Work environment humidity: 5 - 95%RH (non-condensing)
  • Shape size: 65mm*46mm*28.5mm

 

Interface Description

          Before you wiring and use, please read this article in detail, Improper use may result in irreversible damage to the product.

label

Description

+

Power supply Positive ( 12-24V DC )

-

Power supply Negative

A

485-A

B

485-B

 

Communication protocol

Parameter

Description

Code

8-bit binary

Data bit

bit

Parity bit

None

Stop bit

1 bit

Error check

CRC

Baud rate

9600 bit/s

 

Register Address

Register Address

Plc Configuration Address

Content

Operation

0000H

40001

Temperature

Read-Only

0001H

40002

pH

Read-Only

0002H

40003

Device Address 

R/W

 

Communication example

Read Device Address 0x01's Temperature And pH

Inquiry Frame

Address Code

Function Code

Register Start Address

Register number

CRC

0x01

0x03

0x00 0x00

0x00 0x03

0xC5 0xDA

Answer Frames

Address Code

Function Code

Data length

Temp

PH

CRC

0x01

0x03

0x06

0xFF 0x33

0x00 0x28

0x78 0x35

 

How to calculate Temperature And pH

Temperature = FF33 H = -205 = -20.5°C

 pH = 28 H = 40 = 4.0

 


How to Connect


Example code

#include <ModbusMaster.h> //https://www.arduinolibraries.infoModbusMaster/libraries/modbus-master
#include <SoftwareSerial.h> //https://github.com/PaulStoffregen/SoftwareSerial
#define TXD 4 // your software serial TXD pin
#define RXD 3 // your software serial RXD pin
#define slaveID 1 //Address ของเซ็นเซอร์

SoftwareSerial mySerial(RXD, TXD);
ModbusMaster node;

void setup() {
Serial.begin(9600); // config baudrate modbus
mySerial.begin(9600);

}

void loop() {
get_pht485();

}

int get_modbusRTU_sensor(int addr , uint16_t REG) {
int result;
node.begin(addr, mySerial);
//result = node.readInputRegisters (REG, 2); ///< Modbus function 0x04 Read Input Registers
result = node.readHoldingRegisters (REG, 2);
if (result == node.ku8MBSuccess) {
return node.getResponseBuffer(0);
} else {
//Serial.print("Connec modbus fail. REG >>> "); mySerial.println(REG, HEX); // Debug
return -270;
}
}

/************************TH-031**************************/
void get_pht485() {
#define pH_REG 1 //Register Address 0001H
#define TEMPERATURE_REG 0 //Register Address 0000H
float Temperature, ph; //ประกาศตัว ตแปลแ แบบทดศนิยม
ph = get_modbusRTU_sensor(slaveID, pH_REG) / 10;
delay(1000);
Temperature = get_modbusRTU_sensor(slaveID, TEMPERATURE_REG) / 10;
delay(1000);
Serial.print("Temperature = ");
Serial.print(Temperature, 1);
Serial.print("C,");
Serial.print("pH = ");
Serial.print(ph, 1);
Serial.println("");
}
เงื่อนไขอื่นๆ
Tags

วิธีการชำระเงิน

บมจ. ธนาคารกสิกรไทย สาขาสุทธิสาร ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาบิ๊กซี สะพานควาย ออมทรัพย์
รายการสั่งซื้อของฉัน
เข้าสู่ระบบด้วย
เข้าสู่ระบบ
สมัครสมาชิก

ยังไม่มีบัญชีเทพ สร้างบัญชีใหม่ ไม่มีค่าใช้จ่าย
สมัครสมาชิก (ฟรี)
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านSumtech
Sumtech
Wecome to Summation Technology Co., Ltd. เราให้บริการด้านการวัดและควบคุมในอุตสาหกรรมการผลิต, อุตสาหกรรมการเกษตร แบบครบวงจร หัวใจหลักในการดำเนินธุรกิจของเรา คือ มุ่งมั่นในการพัฒนา สรรหา และประยุกต์เทคโนโลยีต่างๆ ให้เหมาะสมกับการใช้งาน และทันสมัยเพื่อเพิ่มประสิทธิภาพและลดต้นทุนต่างๆ ในการผลิตของลูกค้า ให้การบริการแบบครบวงจร
เบอร์โทร : 02-270-0500
อีเมล : sumtech2009@gmail.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

TOP เลื่อนขึ้นบนสุด
พูดคุย-สอบถาม