Новое поступление
Характеристики
*Текущая стоимость 1187.55 уже могла изменится. Что бы узнать актуальную цену и проверить наличие товара, нажмите "Добавить в корзину"
Месяц | Минимальная цена | Макс. стоимость | Цена |
---|---|---|---|
Aug-18-2025 | 1507.19 руб. | 1537.46 руб. | 1522 руб. |
Jul-18-2025 | 1223.37 руб. | 1247.74 руб. | 1235 руб. |
Jun-18-2025 | 1484.49 руб. | 1514.16 руб. | 1499 руб. |
May-18-2025 | 1472.50 руб. | 1501.14 руб. | 1486.5 руб. |
Apr-18-2025 | 1175.23 руб. | 1199.72 руб. | 1187 руб. |
Mar-18-2025 | 1448.23 руб. | 1477.83 руб. | 1462.5 руб. |
Feb-18-2025 | 1436.72 руб. | 1465.70 руб. | 1450.5 руб. |
Jan-18-2025 | 1424.25 руб. | 1452.53 руб. | 1438 руб. |
Описание товара
Brand NameAihasdTypeOtherConditionNewMeasurement unitpiece/piecesSold insell_by_lotEach pack5Package weight0.12Package size - length (cm)10Package size - width (cm)10Package size - height (cm)10SKU5PCSk0005681 187,55 ₽1 187,55 ₽
Delivery to Moskva g
21 Jul - FreeDelivery to a Post office
90-Day Buyer Protection
Feature:
The unique single-wire interface mode, DS18B20 in connection with the microprocessor requires only one port lines can be realized with the DS18B20 microprocessor-way communication;
temperature range: -55 ~ +125 degree
the inherent temperature resolution 0.5
supports multi-point network functions
multiple DS18B20 can be paralleled in only three lines, maximum shunt 8, if an excessive number of causes supply voltage is too low, resulting in unstable signal transmission, multi-point measurement temperature;
working power: 3 ~ 5V/DC;
in use does not require any external components; measurement results 9 to 12 way serial digital transmission;
PVC cable Grommet or German ball terminal box, easy connection to other electrical equipment connections.
Applications:
This product is suitable for freezer, silos, storage tanks, telecommunications room, power room, cable trunking and other temperature measurement and control; bearing, cylinder, textile machinery, air-conditioning, industrial equipment and other small space temperature measurement and control; automotive air conditioning , refrigerator, freezer, and other low-temperature oven; heating / cooling pipe heat metering, central air conditioning household heat metering and industrial temperature measurement and control.
#include <OneWire.h>
/* DS18S20 Temperature chip i/o
*/
OneWire ds(10); // on pin 10
void setup(void) {
// initialize inputs/outputs
// start serial port
Serial.begin(9600);
}
void loop(void) {
byte i;
byte present = 0;
byte data[12];
byte addr[8];
int Temp;
if ( !ds.search(addr)) {
//Serial.print("No more addresses.\n");
ds.reset_search();
return;
}
Serial.print("R="); //R=28 Not sure what this is
for( i = 0; i < 8; i++) {
Serial.print(addr[i], HEX);
Serial.print(" ");
}
if ( OneWire::crc8( addr, 7) != addr[7]) {
Serial.print("CRC is not valid!\n");
return;
}
if ( addr[0] != 0x28) {
Serial.print("Device is not a DS18S20 family device.\n");
return;
}
ds.reset();
ds.select(addr);
ds.write(0x44,1); // start conversion, with parasite power on at the end
delay(1000); // maybe 750ms is enough, maybe not
// we might do a ds.depower() here, but the reset will take care of it.
present = ds.reset();
ds.select(addr);
ds.write(0xBE); // Read Scratchpad
Serial.print("P=");
Serial.print(present,HEX);
Serial.print(" ");
for ( i = 0; i < 9; i++) { // we need 9 bytes
data[i] = ds.read();
Serial.print(data[i], HEX);
Serial.print(" ");
}
Temp=(data[1]<<8)+data[0];//take the two bytes from the response relating to temperature
Temp=Temp>>4;//divide by 16 to get pure celcius readout
//next line is Fahrenheit conversion
Temp=Temp*1.8+32; // comment this line out to get celcius
Serial.print("T=");//output the temperature to serial port
Serial.print(Temp);
Serial.print(" ");
Serial.print(" CRC=");
Serial.print( OneWire::crc8( data, 8), HEX);
Serial.println();
}
Смотрите так же другие товары: