c++ Arduino Nano BLE 33感知和DS18B20不工作

rhfm7lfc  于 2022-12-05  发布在  其他
关注(0)|答案(1)|浏览(199)

我的问题与Arduino Nano Sense BLE和DS18B20传感器(防水版)不能一起工作有关。
到目前为止我所做的尝试。我对UNO进行了测试,以隔离可能的电源和传感器故障。测试如下:

DS18B20的连接
黑色GDN

红色3V
黄色D2
最后两个连接通过2k 2电阻器(2k 2而不是4k 7,因为我使用3V)。
然后,为了排除可能的编码错误,我使用了现成的例子:

// Include the libraries we need
#include <OneWire.h>
#include <DallasTemperature.h>

// Data wire is plugged into port 2 on the Arduino
#define ONE_WIRE_BUS 2

// Setup a oneWire instance to communicate with any OneWire devices (not just Maxim/Dallas temperature ICs)
OneWire oneWire(ONE_WIRE_BUS);

// Pass our oneWire reference to Dallas Temperature.
DallasTemperature sensors(&oneWire);

/*
 * The setup function. We only start the sensors here
 */
void setup(void)
{
  // start serial port
  Serial.begin(9600);
  Serial.println("Dallas Temperature IC Control Library Demo");

  // Start up the library
  sensors.begin();
}

/*
 * Main function, get and show the temperature
 */
void loop(void)
{
  // call sensors.requestTemperatures() to issue a global temperature
  // request to all devices on the bus
  Serial.print("Requesting temperatures...");
  sensors.requestTemperatures(); // Send the command to get temperatures
  Serial.println("DONE");
  // After we got the temperatures, we can print them here.
  // We use the function ByIndex, and as an example get the temperature from the first sensor only.
  Serial.print("Temperature for the device 1 (index 0) is: ");
  Serial.println(sensors.getTempCByIndex(0));
  delay(1000);
}

**结果?**工作正常。

然后我切换到Nano Sense BLE板。在不断开传感器的情况下,我只是切换了板端的连接,并连接了GDN、3.3V和D2。
结果,-127。当尝试查找DS18B20地址时,结果为“无”。我怀疑板的引脚顺序问题或达拉斯/OneWire库问题。
我也尝试了其他libs来处理DS18B20,没有一个工作,我尝试了3-4个。我注意到有几个关于纳米系列的互联网主题,没有一个得到解决。我发现物联网和每一个都有同样的问题。

vvppvyoh

vvppvyoh1#

从DS18B20获得-127的问题是因为传感器可能断开连接或没有从电路板正确获得3.3V或300 mA电流。因此,请确保您的引脚连接正确。您可以使用DMM通过检查引脚和导线之间的短路进行测试。有时可能是库问题。您需要安装最新版本的onewire和达拉斯温度库。

相关问题