• How to Place an Order

  • Store Pick Up

  • Request for Quotation/ International Sourcing

  • Order Status

Jumper Wire Single 20cm Robotics Bangladesh Quick view

Reference: RBD-1354

Jumper Wire Single 20cm

Length: 8 inches/20 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.

Price BDT 3
More
In-Stock
Choose Your Size Quick view

Reference: 0984

Heat Shrink Tube

Choose your desire Heat Sink Size from below: 

Price BDT 2
More
In-Stock
MIFARE Classic 1K RFID NFC Smart Card 13. Quick view

Reference: RBD-0351

MIFARE Classic 1K RFID NFC Smart Card 13.56MHz Printable

Contactless transmission of data and supply energy (no battery needed) Operating distance: Up to 100mm (depending on antenna geometry) RoboticsBD Operating frequency: 13.56MHz Data transfer: 106 kbit/s Data integrity: 16 Bit CRC, parity, bit coding bit counting Anticollision Typical ticketing transaction: <100 ms ( including backup management)...

Price BDT 33
More
Out of Stock
470 Ohm 1/4w - Pack of 5 Quick view

Reference: 0245

Kiloohm (KΩ) 1/4w Resistors - Pack of 5

Choose your desire Resistor value from below: 

Price BDT 5
More
In-Stock
Jumper Wire 40 Pcs Set 20cm Robotics Bangladesh Quick view

Reference: 0031

Jumper Wire 40 Pcs Set 20cm

3 Types Available (Please select from option) 1. Male to Male  2. Male to Female 3. Female-Female

Price BDT 100
More
In-Stock
Buzzer Quick view

Reference: 0766

Ohm (Ω) 1/4w Resistors - Pack of 5

Choose your desire Resistor value from below: 

Price BDT 5
More
In-Stock
5 mm Green LED (Pack of 5) Quick view

Reference: RBD-0768

5 mm Red LED (Pack of 5)

Size: 5mm Color: RED Head Shape: Round Lens Appearance: Transparent

Price BDT 5
More
In-Stock
Push Button Switch (2PIN) Robotics Bangladesh Quick view

Reference: RBD-0761

Push Button Switch (2PIN)

Breadboard friendly Mounting Style: Through Hole Mounting Direction: Vertical

Price BDT 5
More
In-Stock
Buzzer Quick view

Reference: RBD-0758

BC547 NPN Transistor

BC547 NPN DIP Transistor

Price BDT 4
More
In-Stock
Jumper Wire Single 30cm Robotics Bangladesh Quick view

Reference: 1353

Jumper Wire Single 30cm

Length: 12.5 inches/30 CM (Long) Material: Copper Plated Pin Spacing: 2.54mm.

Price BDT 5
More
In-Stock
All best sellers
DS18B20 Temperature Sensor Module Robotics Bangladesh
  • DS18B20 Temperature Sensor Module Robotics Bangladesh

DS18B20 Temperature Sensor Module

RBD-2482

Module utilizes the popular 1-Wire DS18B20 temperature measurement IC.

BDT 150
rating Read the review
Average rating: 5/5 - Number of reviews: 1
Quantity
In Stock

5 people have purchased this item recently
6 people added this item to the cart in last 10 days
95 items in stock
  • Store Pickup Available! Store Pickup Available!
  • Free Ship Over 5000 BDT Free Ship Over 5000 BDT
  • Quality Product Quality Product
  • No Warranty No Warranty
  • No Replacement No Replacement

DESCRIPTION

The DS18B20 Digital Temperature Sensor Module utilizes the popular 1-Wire DS18B20 temperature measurement IC.

PACKAGE INCLUDES:

  • DS18B20 Digital Temperature Sensor Module

KEY FEATURES OF DS18B20 DIGITAL TEMPERATURE SENSOR MODULE:

  • -55°C to +85°C temperature measurement range with good accuracy
  • 1-wire interface to save on MCU pins
  • LED to indicate module communications
  • 3.3 and 5V compatible

Communication with the DS18B20 is via the 1-Wire serial interface.  There is an LED on the module that flashes when the sensor is communicating with an MCU.

The communication protocol can look daunting when looking at the datasheet, but fortunately most poplar microcontrollers like Arduino have software libraries that make using these devices very straightforward and easy to do.

There are some options which can be programmed when using the device such as choosing between number of bits of resolution vs conversion time, but those can be ignored for establishing basic operation.

Hookup is straightforward.  Just supply power, ground and connect the 1-Wire bus pin to a digital pin on the microcontroller.  The part is compatible with 3.3 or 5V power.

Module Connections

There is a 3-pin header on the assembly.  There are a couple of different labeling schemes used on these modules as the baseboard is used for several different modules.

1 x 3 Header 

  • ‘-‘ or ‘G’ = Ground
  • Center Pin or ‘R‘ = Vcc (3.3 – 5V)
  • ‘S’ or ‘Y’ = 1-wire bus.  Connects to digital pin on MCU

OUR EVALUATION RESULTS:

DS18B20 Digital Temp Sensor Module - In UseThis is a basic module that can be used in a number of different applications where temperature measurement is useful such as determining when a cooling fan should be turned on.

We also offer the DS18B20 device in a number of other packages including as a bare IC for designing your own circuits, a waterproof version and others.

The software below implements basic communications with the sensor using the 1-Wire bus protocol and provides a read-out of the sensor output.  We use pin 4 in the example, but this can be reassigned to any digital pin.

The program uses the OneWire and DallasTemperature libraries that can be installed from the IDE Library Manger.

This shows an example output from the program.

DS18B20 Digital Temperature Sensor Module Example Program

/*
DS18B20 Digital Temperature Sensor Test

Basic code to establish communication with the DS18B20 and retrieve temperature measurement data. 

Requires OneWire and DallasTemperature Libraries
*/

#include <OneWire.h> 
#include <DallasTemperature.h> 

const int ONE_WIRE_BUS = 4;  // Define a pin for communicating to the DS18B20 device via the oneWire bus.
OneWire oneWireLocal(ONE_WIRE_BUS);   // Setup a oneWire instance to communicate with the DS18B20 device
DallasTemperature sensorsLocal(&oneWireLocal);  // Pass this oneWire reference to DallasTemperature

float tempLocal = 0.0;    // Variable for holding the temperature returned from the sensor

//===============================================================================
//  Initialization
//===============================================================================
void setup() 
{ 
  Serial.begin (9600);      // Set output window comm rate
  sensorsLocal.begin();
}

//===============================================================================
//  Main
//===============================================================================
void loop() 
{
  CheckTemps();   // Call the routine that actually does the work
  Serial.print("Current Temp: ");  // Printout the results
  Serial.println(tempLocal);
   
  delay(1000);
}

//===============================================================================
//  Subroutines
//===============================================================================
void CheckTemps()
{
  sensorsLocal.requestTemperatures();   // Send command to get temperature from the DS18B20
  // The sensor will return reading from previous request unless a delay is used to give it time to
  // complete the reading request.  If polling every second like we are doing here, the delay can be ignored.
  delay(100);  
  tempLocal = sensorsLocal.getTempCByIndex(0);  // There can be more than one device on this same bus
                                                // so we need to use the first index of (0)
}

What is the price of DS18B20 Temperature Sensor Module in Bangladesh?

The latest price of DS18B20 Temperature Sensor Module in Bangladesh is BDT 150 You can buy the DS18B20 Temperature Sensor Module at best price from our RoboticsBD or visit RoboticsBD Office.

Please note that the product information provided on our website may not be entirely accurate as it is collected from various sources on the web. While we strive to provide the most up-to-date information possible, we cannot guarantee its accuracy. We recommend that you always read the product labels, warnings, and directions before using any product.

Product Images are shown for illustrative purposes only and may differ from the actual product.

Product Details
RBD-2482
95 Items
Mr.
rating
14/02/2024
Golam Mostafa
It is functional
30 other products in the same category:
IR Receiver Diode (5mm) Robotics Bangladesh Quick view

Reference: RBD-1189

IR Receiver Diode (5mm)

Wavelength: 850nm Emission Distance: 7 Meters / 23Ft Voltage: DC 1.2-1.3V Polarity: Anode (Longer Part) | Cathode (Shorter Part)

Price BDT 8
More
In-Stock
Anti-Corrosion Water Level Sensor with Ball Float Switch Robotics Bangladesh Quick view

Reference: RBD-2141

Anti-Corrosion Water Level Sensor with Ball Float Switch

Rating contract (Max.): 10 W Switching power supply (Max.): 110VDC Resistance contract (Max.): 100 Ω Appro. Float Ball Size (mm) : 24×17 (LxD) Body Total Length (mm) : 85 Cable Length (cm) : 37 Total Float opening: 70° Switch ON/OFF angle Approx. betn 15° to 20°

Price BDT 350
More
Out of Stock
RF Transmitter Receiver Pair 433 MHz Quick view

Reference: RBD-0688

RF Transmitter Receiver Pair 433 MHz

Wide input supply (2.5 V to 12V) Easy to integrate (V+, GND, and Data) The device in deep sleep mode when Data pin is grounded Very small dimension.

Price BDT 110
More
In-Stock
On sale! GUVA-S12SD UV Detection Sensor Module Quick view

Reference: RBD-0426

GUVA-S12SD UV Detection Sensor Module

Power supply voltage of 2.5 V ~ 5 V Low power consumption Wide detection range: 240 nm to 370 nm Wide Angle: 130 degrees Schottky type photosensitive diode Good linear response High sensitivity

Price BDT 750
More
In-Stock
HLK-LD1115H 24Ghz Human Presence Sensor mmWave Radar Module Robotics Bangladesh Quick view

Reference: RBD-2227

HLK-LD1115H 24Ghz Human Presence Sensor mmWave Radar Module

High sensitivity 24GHz millimeter wave human presence detection radar module Detects and accumulates small movements like human breathing Higher accuracy in presence detection within a certain range Not easy to miss detections Detection distance: &gt; 4m static human presence, &gt; 16m motion Range: Hanging height 3m, static body detection coverage radius...

Price BDT 1,850
More
In-Stock
OV2640 2.0 Mega Pixel 1/4'' CMOS Image Sensor Camera Module Robotics Bangladesh Quick view

Reference: RBD-1976

OV2640 2.0 Mega Pixel 1/4'' CMOS Image Sensor Camera Module

High sensitivity for Low-Light Operation. Low Operating Voltage for Embedded Portable Apps. Supports Scaling. The Standard SCCB Interface is Compatible with the I2C Interface.

Price BDT 299
More
In-Stock
Active Speaker Buzzer Module for Arduino 5V Robotics Bangladesh Quick view

Reference: RBD-1738

Active Speaker Buzzer Module for Arduino 5V

Operating Voltage : 1.5 ~ 15V DC Working Current: Less than 25mA Tone Generation Range : 1.5 ~ 2.5kHz Dimensions (LxWxH):  26 x 15 x 11 mm

Price BDT 59
More
In-Stock
TSL2591 High Dynamic Range Digital Light Sensor Robotics Bangladesh Quick view

Reference: RBD-2347

TSL2591 High Dynamic Range Digital Light Sensor

TSL2591 Digital Light Sensor Breakout Module High Dynamic Range Lux IR Infrared Full Spectrum Diodes Detect 3.3V for Arduino

Price BDT 850
More
In Stock
Knock Sensor Module KY-031 For Arduino ,PIC, AVR, Raspberry pi Quick view

Reference: RBD-0352

Knock Sensor Module KY-031 For Arduino, PIC, AVR and Raspberry pi

Detect shocks with the spring and send a signal to Controller Board Operating voltage: 3.3V-5V Digital output Bolt holes for easy installation. RoboticsBD

Price BDT 99
More
In-Stock
Liquid Level Sensor for Arduino (WaveShare) Robotics Bangladesh Quick view

Reference: RBD-0337

Brand: Waveshare

Liquid Level Sensor for Arduino (WaveShare)

Detection depth: 48mm Power: 2.0V ~ 5.0V Dimension: 19.0mm * 63.0mm Mounting holes size: 2.0mm

Price BDT 499
More
In-Stock
GSR Skin Sensor CJMCU-6701 Analog SPI Module Robotics Bangladesh Quick view

Reference: RBD-2139

GSR Skin Sensor CJMCU-6701 Analog SPI Module

GSR Skin Sensor CJMCU-6701 Analog SPI Module Measures the electrical conductance of the skin (Galvanic Skin Response) Reflects human emotional activity and stress levels Suitable for creating emotion-related projects and sleep quality monitors Utilizes a precise 12-bit AD converter for accurate readings

Price BDT 1,560
More
In-Stock
On sale! 9 Degrees of Freedom Breakout- MPU-9150 Quick view

Reference: RBD-0334

9 Degrees of Freedom Breakout- MPU9150

The 9DOF MPU-9150 is the world’s first 9-axis MotionTracking MEMS device designed for the low power, low cost, and high performance requirements of consumer electronics equipment including smartphones, tablets and wearable sensors. And guess what? You get to play with it.

Price BDT 2,000
More
Out of Stock
APDS-9930 RGB and Gesture Sensor Quick view

Reference: RBD-0428

APDS-9930 RGB and Gesture Sensor

Operational Voltage: 3.3V. Ambient Light &amp; RGB Color Sensing. Proximity Sensing. Gesture Detection. Operating Range: 4-8in (10-20cm). I2C Interface (I2C Address: 0x39). RoboticsBD

Price BDT 980
More
In-Stock
Photosensitive Resistor Sensor Module Robotics Bangladesh Quick view

Reference: RBD-2093

Photosensitive Resistor LDR Sensor Module

This is a High-quality photosensitive sensor module/light module detects the photosensitive resistor for Arduino Resistance of the photoresistor is typically less than 80 Ohms (in full light) Dark resistance is typically greater than 20 Meg Ohms (in full darkness)

Price BDT 50
More
In-Stock
Infrared Temperature Gun Digital Thermometer Robotics Bangladesh Quick view

Reference: RBD-1366

Infrared Temperature Gun Digital Thermometer

DT8380FC Infrared Thermometer Item no.: DT8380FC Temperature Range: -50~380°C/-58~716°F Measuring Accuracy: ±2% or 2C Distance Ratio: 12:1

Price BDT 3,499
More
In-Stock
Envitec OOM202 Medical Ventilator Oxygen Sensor Robotics Bangladesh Quick view

Reference: RBD-1719

Envitec OOM202 Medical Ventilator Oxygen Sensor

Envitec Honeywell OOM202 Medical Ventilator Oxygen Sensor Made in Germany

Price BDT 9,500
More
Out of Stock
TTP229 8 Channel Digital Capacitive Switch Touch Sensor Module for Arduino Robotics Bangladesh Quick view

Reference: RBD-0416

TTP229 8 Channel Digital Capacitive Switch Touch Sensor Module for Arduino

Onboard 8 key TTP226 capacitive touch induction IC. RoboticsBD Onboard 8-way level indicator. Working voltage: 2.4 to 5.5 V. Modules, you can set the output mode, key output mode, the longest time and fast/low power output

Price BDT 250
More
In-Stock
Small Microphone Sound Sensor Module Robotics Bangladesh Quick view

Reference: RBD-2097

Small Microphone Sound Sensor Module

5V Dc Power Supply Power indicator light The comparator output is light High Sensitivity Sound Microphone Sensor Detection Module Electric condenser microphone

Price BDT 65
More
In-Stock
HSM-20G analog temperature & humidity sensor Robotics Bangladesh Quick view

Reference: RBD-0163

HSM-20G Analog Temperature & Humidity Sensor

Product Type: Humidity Module Sensor Working voltage range DC 5.0±0.2V    Output voltage range (corresponding to 0-100%RH) DC 1-3.19V    Test accuracy 5% RH

Price BDT 880
More
In-Stock
Current Sensor ACS712-5A Robotics Bangladesh Quick view

Reference: RBD-1174

Current Sensor ACS712-5A

Low-noise analog signal path. Device bandwidth is set via the new FILTER pin. 5 µs output rise time in response to step input current. Small footprint, low-profile SOIC8 package. 2.1 kV RMS minimum isolation voltage from pins 1-4 to pins 5-8.

Price BDT 184
More
In-Stock
Raspberry Pi NoIR Camera V2 8MP Robotics Bangladesh Quick view

Reference: RBD-0722

Raspberry Pi NoIR Camera V2 8MP

8-Megapixel native resolution high-quality Sony IMX219 image sensor Cameras are capable of 3280 x 2464 pixel static images Capture video at 1080p30, 720p60 and 640x480p90 resolutions All software is supported within the latest version of Raspbian Operating System No Infrared filter making it perfect for taking Infrared photographs or photographing objects...

Price BDT 4,890
More
In-Stock
TCRT5000L Reflective Optical Sensor Quick view

Reference: RBD-0132

TCRT5000L Reflective Optical Sensor

The TCRT5000 and TCRT5000L are reflective sensors which include an infrared emitter and phototransistor in a leaded package which blocks visible light. The package includes two mounting clips. TCRT5000L is the long lead version. Model TCRT5000 Color Black + blue Detecting range: 0.591″ (15mm); Detecting method: Reflective; Collector-Emitter: Voltage:...

Price BDT 15
More
In-Stock
Hall Effect Sensor A1302 Robotics Bangladesh Quick view

Reference: RBD-1199

Hall Effect Sensor A1302 49E

Low-noise output Fast power-on time Ratiometric rail-to-rail output 4.5 to 6.0 V operation Solid-state reliability Factory-programmed at end-of-line for optimumperformance Robust ESD performance 

Price BDT 70
More
In-Stock
Dust Sensor For Arduino Quick view

Reference: RBD-0338

Brand: Waveshare

Dust Sensor For Arduino

Sharp GP2Y1010AU0F onboard, Detecting fine particle larger than 0.8μm  Low power consumption Analog voltage output The output level is linear with dust density Check out New Product Optical Dust Sensor- GP2Y1010AU0F

Price BDT 890
More
Out of Stock
MLX90640BAB 32*24 Thermal Imager Array Temperature Sensor Module Robotics Bangladesh Quick view

Reference: RBD-2385

MLX90640BAB 32*24 Thermal Imager Array Temperature Sensor Module

Module for measuring infrared temperature Uses the GY-MCU90640 MLX90640 BAA 32*24 dot matrix sensor Field of view angle of 55*34 degrees Ambient temperature range of -40 to 85 degrees Target temperature range of -40 to 300 degrees Serial output frequency supports up to 16HZ baud rate 460800

Price BDT 8,990
More
In-Stock
New RGB-D 3D ToF Sensor Camera DFRobot Robotics Bangladesh Quick view

Reference: RBD-2498

RGB-D 3D ToF Sensor Camera DFRobot

3D time-of-flight camera module with RGB capabilities Resolution of 320×240 and an inertial measurement unit (IMU) Acquires all RGB-D data through a USB cable Seamless previewing of depth maps, point cloud data, and real-time colorful 3D rendering Linux compatibility out-of-the-box Supports ROS1 and ROS2 Python SDK provided

Price BDT 22,500
More
Last items in stock
Human Presence Radar LD2410 Respiration and Heartbeat Monitoring Non-contact Induction Sensor Robotics Bangladesh Quick view

Reference: RBD-2152

Human Presence Radar LD2410 Respiration and Heartbeat Monitoring Non-contact Induction Sensor

Human Presence Radar LD2410 Respiration and Heartbeat Monitoring Non-contact Induction Sensor High-sensitivity 24GHz sensing module

Price BDT 2,250
More
In-Stock
MQ-9 Gas Leakage Detection Sensor Quick view

Reference: RBD-0678

MQ-9 Gas Leakage Detection Sensor

Good sensitivity to CO/Combustible Gas High sensitivity to Methane, Propane, and CO Long life and low cost Simple drive circuit Input voltage: DC 5±0.2V Current Consumption: 150mA

Price BDT 194
More
In-Stock
MLX90640BAA 32*24 Thermal Imager Array Temperature Sensor Module Robotics Bangladesh Quick view

Reference: RBD-2384

MLX90640BAA 32*24 Thermal Imager Array Temperature Sensor Module

Module for measuring infrared temperature Uses the GY-MCU90640 MLX90640 BAA 32*24 dot matrix sensor Field of view angle of 110*75 degrees Ambient temperature range of -40 to 85 degrees Target temperature range of -40 to 300 degrees Serial output frequency supports up to 16HZ baud rate 460800

Price BDT 8,950
More
In-Stock
On sale! Formaldehyde/ Formalin Detection Sensor Quick view

Reference: RBD-0431

Formaldehyde/ Formalin Detection Sensor CJMCU-1100 MS1100

Working temperature : -10℃ ~ 50℃ Working humidity : below saturation point Storage temperature : -20℃ ~ 80℃ RoboticsBD

Price BDT 1,990
More
In-Stock
Customers who bought this product also bought:
- BDT 5 Reduced price DIP Switch - 4 Position Robotics Bangladesh Quick view

Reference: RBD-1508

DIP Switch - 4 Position

4 individual switch positions 2.54mm pin spacing General control switches

Price BDT 20 Regular price BDT 25
More
Last items in stock
BAKU BK-150 SOLDERING PASTE Robotics Bangladesh Quick view

Reference: RBD-1713

BAKU BK-150 SOLDERING PASTE

Net Content: 10g Paste Color: White Does not create High Smoke Does not create Foul/Bad Smell No Residual Waste High-Quality Soldering Additives &amp; Activators for effective soldering Useful for general purpose soldering, electrical wires, components, and cables etc

Price BDT 65
More
In-Stock
Mini Digital Voltmeter DC 0-30V 3 Digits 0.56" 3 Wire LED Panel Blue Robotics Bangladesh Quick view

Reference: RBD-2464

Mini Digital Voltmeter DC 0-30V 3 Digits 0.56" 3 Wire LED Panel Blue

Three WiresUltra-low cost, high precision to meet most of the application requirements.low starting working voltage blue minimum 5.0V.

Price BDT 150
More
In Stock
Arduino UNO R4 WiFi Robotics Bangladesh Quick view

Reference: RBD-2568

Arduino UNO R4 WiFi

The Arduino UNO R4 WiFi merges the RA4M1 microprocessor from Renesas with the ESP32-S3 from Espressif, creating an all-in-one tool for makers with enhanced processing power and a diverse array of new peripherals. With its built-in Wi-Fi® and Bluetooth® capabilities, the UNO R4 WiFi enables makers to venture into boundless creative possibilities....

Price BDT 3,520
More
In Stock
MCP2515 CAN Bus Module TJA1050 Receiver SPI Module For Arduino Quick view

Reference: RBD-0397

MCP2515 CAN Bus Module TJA1050 Receiver SPI Module For Arduino

Support CAN V2.0B technical standard, communication rate 1Mb / S. Module 5V DC power supply, SPI interface protocol control 0 to 8 bytes long data field. 8MHZ crystal oscillator 120Ω terminal resistance Use High-speed CAN transceiver TJA1050 Impedance matching, guaranteed drive capability, long-distance data transmission, prevent signal radiation The...

Price BDT 410
More
In-Stock
LILYGO® TTGO T-Display ESP32 WiFi And Bluetooth Development Board Robotics Bangladesh Quick view

Reference: RBD-1806

LILYGO® TTGO T-Display ESP32 WiFi And Bluetooth Development Board

Based on ESP32 240MHz Xtensa dual-core 32-bit microprocessor Operating Voltage: 2.7V – 4.2V Working Current: 60mA Battery Charging Current: 500mA

Price BDT 2,650
More
In-Stock
Rotary Potentiometer with limit switch Robotics Bangladesh Quick view

Reference: RBD-1370

Rotary Potentiometer with limit switch

Name: PTV09A-4020F-B103 Package/Case: POT

Price BDT 30
More
In-Stock
Solderable Cable Red and... Quick view

Reference: RBD-0904

Solderable Cable Red and Black Pair

Pair of wires for soldering with DC motors DC applications, breadboards, electronics, and robotics DIY projects Length: 120mm

Price BDT 12
More
In Stock