B4R Library OneWire - Dallas 1-wire protocol - Erel    May 8, 2016   (8 reactions)   tags: B4R Dallas 1-wire protocol.
Example of reading the temperature:
Depends on rOneWire and... Other OneWire (DallasTemperature) - Erel    May 8, 2016   (2 reactions) Working library is available here: https://www.b4x.com/android/forum/threads/onewire-dallas-1-wire... = Array As Byte(0x28, 0xFF, 0x5E, 0x18, 0x04, 0x15, 0x03, 0x34)
Private dt As DallasTemperature... B4R Question Dallas 18b20 - Laurent95 (first post)    Oct 27, 2024 Hello,
OK, I wasn't sure if you had done these tests, especially because you were talking about... B4R Question Dallas Onewire/DS18B20 probe issue - Kevin    Jul 25, 2018 I've been using my first B4R project for a while now and so far it is pretty solid except for on... B4R Question Dallas Library - tigrot (first post)    Oct 15, 2021 Was on the post itself... B4R Question InLine C and Dallas-Address - Erel (first post)    Jun 27, 2021 This code cannot work.
Don't try to convert anything to string. Strings are bad.
In this case t... B4R Code Snippet ds18b20: 1Wire temperature sensor, B4R pin variable - peacemaker    Aug 6, 2025   (3 reactions) <DallasTemperature.h> OneWire* oneWire = NULL; DallasTemperature* sensors_ds18b20 = NULL; void... = new OneWire(pin); sensors_ds18b20 = new DallasTemperature(oneWire); sensors_ds18b20... B4R Question initialization inside Inline-C from B4R - peacemaker    Sep 9, 2023
#include <DallasTemperature.h>
// DS18B20 temperature sensor data wire is plugged into pin 17...
OneWire oneWire(ONE_WIRE_BUS);
// Pass oneWire reference to Dallas Temperature.
DallasTemperature... B4R Question Strange: sensor code is slowing down the button - peacemaker    Aug 7, 2025 <OneWire.h> #include <DallasTemperature.h> // DS18B20 temperature sensor data wire is plugged...(b4r_esp_ds18b20::_pinnumber); // Pass oneWire reference to Dallas Temperature. DallasTemperature... B4R Code Snippet Reading temperature sensor DS18B20 via inline C/C++, again - Peter Simpson    Apr 1, 2017   (4 reactions) Sub
#if C
// Include the libraries
#include <OneWire.h>
#include <DallasTemperature.h>... oneWire reference to Dallas Temperature.
DallasTemperature sensors(&oneWire);
void setup... Page: 1   2   3   |