我正在使用 Sensirion SFM3300 流量传感器,并且可以使用以下代码 (I2C) 使用 Arduino 读取正确的值:
#include <Wire.h>
void setup() {
// put your setup code here, to run once:
Wire.begin();
Serial.begin(115200);
Wire.beginTransmission(byte(0x40));
Wire.write(byte(0x10));
Wire.write(byte(0x00));
Wire.endTransmission();
}
void loop() {
// put your main code here, to run repeatedly:
delay(100);
Wire.requestFrom(0x40,2);
uint16_t a = Wire.read();
uint8_t b = Wire.read();
a = (a<<8) | b;
float flow = ((float)a - 32768) / 120;
Serial.println(flow);
}
但是使用 Raspberry Pi,我编写了几乎相同的代码,希望它也能正常工作。这是代码:
from smbus2 import SMBus
import time
import numpy as np
address=0x40
bus = SMBus(1)
def write(value):
bus.write_byte(address,value)
write(0x10)
write(0x00)
while True:
time.sleep(0.1)
a = np.uint16(bus.read_byte(0x40))
b = np.uint8(bus.read_byte(0x40))
a = (a<<8) | b
flow = (float(a)-32768)/120
print(flow)
代码看起来确实一样,但我只得到 -273,06666666666 作为返回值。有人知道 Raspberry Pi 和 Arduino I2C 之间的区别在哪里,并且可以帮助我在 Pi 上获得正确的值吗?