We offer a wide range of the best 1-Wire DS18B20 sensor connectors, including Nanoflex, DisplayPort, USB, Solar, SATA, HDMI, ATA IDE, SAS & many more. All cables are manufactured to the highest industry standards. Using Sensor Circuit Assembly for box builds allows you to focus on your design and marketing, reduce costs, and reap the benefits of our assembly lines, QA processes, and manufacturing expertise.
Сензор ДС18Б20 комуницира помоћу “1-Жица” протокола, што значи да користи једну линију података за сву комуникацију са микроконтролером, омогућавајући више сензора да буду повезани на истој линији и идентификовани по њиховом јединственом 64-битном серијском коду; ова појединачна линија података се повлачи високо помоћу отпорника и сензор преноси податке тако што повлачи линију ниско током одређених временских интервала да би послао битове информација.
DS18B20 Temperature Sensor: The DS18B20 waterproof probe is designed for underwater use, capable of operating in wet or moist environments without being damaged by water or moisture.
Temperature sensor supply voltage: 3.0V ~ 5.25V;
Опсег радне температуре:-55 ℃ to +125 ℃ (-67 ℉ to +257 ℉);
Provides from 9-bit to 12-bit Celsius temperature measurements;
Adapter module is equipped with a pull-up resistor, and directly connects to the GPIO of the Raspberry Pi without an external resistor;
Use this adapter module kit to simplify connecting the waterproof temperature sensor to your project.
1. Key points about the 1-Wire protocol:
Single data line:
Only one wire is needed for communication between the sensor and the microcontroller.
Half-duplex communication:
Data can be sent in both directions, but only one direction at a time.
Parasite power:
The DS18B20 can be powered directly from the data line during communication, eliminating the need for a separate power supply in some cases.
Unique device addresses:
Each DS18B20 sensor has a unique 64-bit serial code that allows the microcontroller to identify and address individual sensors on the bus.
Communication steps with a DS18B20:
1.1 Reset pulse:
The microcontroller initiates communication by pulling the data line low for a specific duration (reset pulse).
1.2 Presence pulse:
If a DS18B20 is present on the bus, it will respond with a short pulse, indicating its presence.
1.3 РОМ команда:
The microcontroller sends a ROM command to either read the unique 64-bit code of a specific sensor (“Матцх РОМ”) or to address all sensors on the bus (“Прескочи РОМ”).
1.4 Function command:
Depending on the desired operation (like reading temperature), the microcontroller sends a specific function command to the sensor.
1.5 Data transfer:
Data is transmitted bit-by-bit, with the sensor pulling the data line low to send a ‘0’ and letting the line go high to send a ‘1’.
2. Detailed explanation of DS18B20’s 1-Wire communication protocol
The reason why DS18B20 sensors are widely used is largely due to its unique communication protocol – 1-Wire communication protocol. This protocol simplifies the requirements for hardware connections and provides an efficient way to transmit data. This chapter will deeply analyze the working mechanism and data exchange process of the 1-line communication protocol to lay a solid foundation for subsequent programming practice.
2.1 Basics of 1-Wire Communication Protocol
2.1.1 Features of 1-Wire Communication Protocol:
DS18B20 1-Wire Communication Protocol is also called “сингле бус” технологије. It has the following features: – Single bus communication: За двосмерни пренос података користи се само једна линија података, што у великој мери смањује сложеност ожичења у поређењу са традиционалном методом комуникације сензора са више жица. – Веза са више уређаја: Подржава повезивање више уређаја на једној магистрали података, и идентификује и комуницира преко идентификационих кодова уређаја. – Мала потрошња енергије: Током комуникације, уређај може бити у стању приправности мале енергије када не учествује у комуникацији. – Висока прецизност: Са краћим временом преноса података, може смањити спољне сметње и побољшати тачност података.
2.1.2 Формат података и анализа времена 1-жичне комуникације
Формат података 1-вире комуникационог протокола прати одређено временско правило. Укључује време иницијализације, време писања и време читања:
Тајминг иницијализације: Домаћин прво покреће време детекције присуства (Пулс присутности) повлачењем аутобуса на одређено време, а сензор затим шаље импулс присутности као одговор.
Напишите тајминг: Када домаћин пошаље време писања, прво повуче аутобус за око 1-15 микросекунде, затим пушта аутобус, и сензор повлачи сабирницу 60-120 микросекунде за одговор.
Прочитајте тајминг: Домаћин обавештава сензор да пошаље податке тако што повуче сабирницу и отпусти је, а сензор ће дати бит података на магистралу након одређеног кашњења.
2.2 Software implementation of data communication
2.2.1 Initialization and reset of 1-line communication
At the software level, initialization and reset of 1-Wire communication is the first step of communication. The following is the pseudo code to implement this process:
// OneWire communication initialization function
void OneWire_Init() {
// Set the bus to input mode and enable the pull-up resistor
SetPinMode(DS18B20_PIN, INPUT_PULLUP);
// Wait for the bus to be idle
DelayMicroseconds(1);
// Send a reset pulse
OneWire_Reset();
}
// OneWire communication reset function
void OneWire_Reset() {
// Pull down the bus
SetPinMode(DS18B20_PIN, OUTPUT_LOW);
DelayMicroseconds(480);
// Release the bus
SetPinMode(DS18B20_PIN, INPUT_PULLUP);
DelayMicroseconds(70);
// Wait for the presence of a pulse
ако (!WaitForOneWirePresence())
// No pulse was detected, maybe the sensor is not connected or the initialization failed
HandleError();
DelayMicroseconds(410);
}
// Waiting for the presence of a pulse
bool WaitForOneWirePresence() {
return ReadPin(DS18B20_PIN) == 0; // Assume low level is a signal presence
}
2.2.2 Data reading and writing operations
Data reading and writing operations are the core part of sensor communication. The following code shows how to write a byte to a one-wire bus:
// Write a byte to a one-wire bus
void OneWire_WriteByte(byte data) {
за (int i = 0; и < 8; и++) {
OneWire_WriteBit(података & 0к01);
података >>= 1;
}
}
// Write a bit to a one-wire bus
void OneWire_WriteBit(bit data) {
SetPinMode(DS18B20_PIN, OUTPUT_LOW);
ако (података) {
// Release the bus when writing 1
SetPinMode(DS18B20_PIN, INPUT_PULLUP);
DelayMicroseconds(1);
} друго {
// Continue to pull the bus low when writing 0
DelayMicroseconds(60);
}
SetPinMode(DS18B20_PIN, INPUT_PULLUP);
DelayMicroseconds(1);
}
Next is the function to read a byte:
// Read a byte from the one-wire bus
byte OneWire_ReadByte() {
byte data = 0;
за (int i = 0; и < 8; и++) {
података >>= 1;
ако (OneWire_ReadBit())
података |= 0x80;
}
врати податке;
}
// Read a bit from the one-wire bus
bit OneWire_ReadBit() {
SetPinMode(DS18B20_PIN, OUTPUT_LOW);
SetPinMode(DS18B20_PIN, INPUT_PULLUP);
DelayMicroseconds(3);
bool result = ReadPin(DS18B20_PIN);
DelayMicroseconds(57);
return result;
}
2.2.3 Verification mechanism of OneWire communication
The OneWire communication protocol uses a simple verification mechanism in the data exchange process, usually by reading back the written data to verify the correctness of the data. The following is a sample code for verifying the written data:
byte data = 0x55; // Assume that the data to be sent
OneWire_WriteByte(података); // Write data to the OneWire bus
byte readData = OneWire_ReadByte(); // Read back data from the OneWire bus
ако (readData != data) {
HandleError(); // If the read-back data does not match the written data, handle the error
English
Afrikaans
العربية
বাংলা
bosanski jezik
Български
Català
粤语
中文(简体)
中文(漢字)
Hrvatski
Čeština
Nederlands
Eesti keel
Suomi
Français
Deutsch
Ελληνικά
हिन्दी; हिंदी
Magyar
Bahasa Indonesia
Italiano
日本語
한국어
Latviešu valoda
Lietuvių kalba
македонски јазик
Bahasa Melayu
Norsk
پارسی
Polski
Português
Română
Русский
Cрпски језик
Slovenčina
Slovenščina
Español
Svenska
ภาษาไทย
Türkçe
Українська
اردو
Tiếng Việt





