gpt4 book ai didi

python - 使用 NRF24L01 将 Arduino 浮点值转换为 Python

转载 作者:太空宇宙 更新时间:2023-11-04 12:36:31 26 4
gpt4 key购买 nike

我试图通过 NRF24L01 将温度传感器数据发送到 Raspberry Pi,并使用 python 在 Raspberry Pi 中读取它。但是温度传感器数据以字母的形式传到 Raspberry Pi,我发现它是 Ascii 值。我不确定如何显示从 Arduino 到 Raspberry Pi 的实际读数

这是 Arduino 代码:


#include <DallasTemperature.h>
#include <OneWire.h>
#include <SPI.h>
#include <RF24.h>
#include "printf.h"
#define ONE_WIRE_BUS 2

OneWire oneWire (ONE_WIRE_BUS);
DallasTemperature sensors(&oneWire);

RF24 radio(9, 10);

void setup(void) {

Serial.begin(9600);
sensors.begin();
radio.begin() ;
radio.setPALevel(RF24_PA_MAX) ;
radio.setChannel(0x76) ;
radio.openWritingPipe(0xF0F0F0F0E1LL) ;
radio.enableDynamicPayloads() ;
radio.powerUp() ;
}

void loop(void) {
sensors.requestTemperatures();
float temperature = sensors.getTempFByIndex(0);
radio.write(&temperature, sizeof(float));
delay(1000);
Serial.print(sensors.getTempFByIndex(0));
}

这是 Raspberry Pi 的 Python 代码

from lib_nrf24 import NRF24
import time
import spidev

GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
pipes = [[0xE8, 0xE8, 0xF0, 0xF0, 0xE1], [0xF0, 0xF0, 0xF0, 0xF0, 0xE1]]

radio = NRF24(GPIO, spidev.SpiDev())
radio.begin(0, 17)

radio.setPayloadSize(32)
radio.setChannel(0x76)
radio.setDataRate(NRF24.BR_1MBPS)
radio.setPALevel(NRF24.PA_MIN)

radio.setAutoAck(True)
radio.enableDynamicPayloads()
radio.enableAckPayload()

radio.openReadingPipe(1, pipes[1])
radio.printDetails()
radio.startListening()

while True:

while not radio.available(0):
time.sleep(1/100)

receivedMessage = []
radio.read(receivedMessage, radio.getDynamicPayloadSize())
print("Received: {}".format(receivedMessage))

print("Translating...")
string = ""

for n in receivedMessage:
if (n >= 32 and n <= 126):
string += chr(n)
print("Our received message decodes to: {}".format(string))

我想获取数字而不是字母的温度值。而不是这样:

翻译...我们收到的消息解码为:N

最佳答案

你应该收到 4 个字节(在大多数架构上,sizeof(float) 总是 4)所以检查你收到的数据:

if (len(receivedMessage) == 4)

四个字节代表一个 float ,所以要转换它:

temperature = float.fromhex(''.join(format(x, '02x') for x in receivedMessage))

四个字节转换为十六进制字符串并转换为 float 。

编辑(未测试):

receivedMessage = []
radio.read(receivedMessage, radio.getDynamicPayloadSize())

if (len(receivedMessage) == 4)
temperature = float.fromhex(''.join(format(x, '02x') for x in receivedMessage))
print '%.2f' % temperature

关于python - 使用 NRF24L01 将 Arduino 浮点值转换为 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56210248/

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