gpt4 book ai didi

c - Arduino 读取多个 onewire 传感器

转载 作者:行者123 更新时间:2023-11-30 17:30:05 27 4
gpt4 key购买 nike

我使用的 Arduino 具有多个 (3) 个传感器,使用正常模式(非寄生模式)连接到数字引脚 2。

其中两个传感器是使用库“OneWire”(Library Page)和“DallasTemperature”(Library on GitHub)的温度传感器。借助 DallasTemperature 库,可以使用命令“getTempCByIndex(int)”轻松访问传感器值。

我的第三个传感器是温度和湿度组合传感器。该传感器提供的代码是一个单独的库“DHT11”。该库不太好,我很难尝试使用 DHT11 和 DallasTemperature 库读取传感器值。

我认为 OneWire 库应该对所有 OneWire 设备通用,并且 DallasTemperature 库是该库的包装器,为某些传感器提供良好的接口(interface)。

有人可以帮助我了解如何将 DHT11 库包含在 DallasTemperature 库中吗?一个好的函数是“getDHT11HumidityByIndex(int)”。

或者使用 OneWire 编写新的包装器是否更容易?那么,这将如何运作?

现在我只是尝试使用提供的库和下面的代码。程序经常无法读取湿度传感器,获取状态 (-2):“读取传感器:超时错误”,并且传感器的索引在运行时发生变化。我可以做一些小改变来解决这个问题吗?

#include <OneWire.h>
#include <DallasTemperature.h>
#include <dht11.h> //Library for the humidity sensor.

// 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);

// Declare object for Humidity sensor.
dht11 DHT11;



void setup(void)
{
// Start serial port.
Serial.begin(9600);

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

void loop(void)
{
// Call sensors.requestTemperatures() to issue a global temperature
// request to all devices on the bus.
sensors.requestTemperatures(); // Send the command to get temperatures.

Serial.print("BEGIN-0#");
Serial.print(sensors.getTempCByIndex(0));
// You can have more than one IC on the same bus.
// 0 refers to the first IC on the wire.
Serial.println("#COMMIT");

Serial.print("BEGIN-1#");
Serial.print(sensors.getTempCByIndex(1));
// You can have more than one IC on the same bus.
// 0 refers to the first IC on the wire.
Serial.println("#COMMIT");



int chk = DHT11.read(ONE_WIRE_BUS);

Serial.print("Read sensor: ");
switch (chk)
{
case 0: Serial.println("OK"); break;
case -1: Serial.println("Checksum error"); break;
case -2: Serial.println("Time out error"); break;
default: Serial.println("Unknown error"); break;
}

Serial.print("Humidity (%): ");
Serial.println((float)DHT11.humidity, 2);

Serial.print("Temperature (oC): ");
Serial.println((float)DHT11.temperature, 2);
}

最佳答案

当您从一个控制总线转换到另一个控制总线时,访问同一总线的两个库可能会导致故障,这是合理的预期。但 1 线协议(protocol)只有一位,默认状态始终为 1。我猜测 DHTT11.read() 启动时出现故障的可能性很小。我理解将硬件层接口(interface)对象传递给特定传感器类的概念,但在这种情况下,接口(interface)是一个引脚。我不会从重写库开始。

最好的建议是在总线上安装示波器和逻辑分析仪。您需要使用示波器来确保您的接线不会产生振铃或电压暂降。您需要逻辑分析仪,因为计算位数是令人 NumPy 乏味的。如果愿意的话,这是购买一些乐器的一个很好的借口/理由。但我们这样做并不是为了谋生,所以你能做什么呢?

分解问题:

  • 仅使用 DHT11 库在总线上运行 1 个温度/湿度传感器。有效吗?如果是,则库是稳定的,并且您的接线是好的。如果没有,请停止并像这样修复。

  • 添加一些较大的延迟。这些设备由总线供电,需要时间充电。数据表上肯定有指南。或者只是在读取之间添加 2 秒。现在有用吗?如果是,可以推迟一下,看看会发生什么。

  • 现在添加第二个仅温度传感器。它停止工作了吗?

  • 如果它停止工作,请再次在读取之间添加一些大的延迟。

  • 如果仍然损坏,请切换到仅运行温度传感器(您说这已经有效)。使仅温度传感器程序工作。

  • 添加第三个、第四个等设备。如果设备越多功能变得越差,则开始关注硬件链路层。同样,如果信号到达设备,示波器是洞察的最佳途径。电线对于双绞线来说确实很重要,可以让您获得更好的距离。设备的物理接线方式会影响反射,从而导致信号衰减。

关于c - Arduino 读取多个 onewire 传感器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25296133/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com