- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将一段读取 MAX13865 传感器的 Python 代码转换为 Java。 Python 代码运行良好并返回预期的数字 (1238),而 Java 版本始终返回 32767。为了简化阅读,我将 Python 代码和 Java 代码减少到最小。下面的 Python 代码仍然运行得很好。我缺少什么?看似很简单,但还是不行……
#!/usr/bin/python -tt
import RPi.GPIO as GPIO
import time
import datetime
import math
class MAX31865(object):
def __init__(self, cs_pin, clock_pin, data_in_pin, data_out_pin, board = GPIO.BCM):
self.cs_pin = cs_pin
self.clock_pin = clock_pin
self.data_in_pin = data_in_pin
self.data_out_pin = data_out_pin
self.board = board
# Initialize needed GPIO
GPIO.setmode(self.board)
GPIO.setup(self.cs_pin, GPIO.OUT)
GPIO.setup(self.clock_pin, GPIO.OUT)
GPIO.setup(self.data_in_pin, GPIO.IN)
GPIO.setup(self.data_out_pin, GPIO.OUT)
# Pull chip select high to make chip inactive
GPIO.output(self.cs_pin, GPIO.HIGH)
def get_data(self):
'''Acqures raw RDT data.'''
self.address = int(0x01) #RTD MSBs
MSB = self.read()
self.address = int(0x02) #RTD LSBs
LSB = self.read()
MSB = MSB<<8
raw = MSB+LSB
raw = raw>>1
return raw
def read(self):
'''Reads 16 bits of the SPI bus from a self.address register & stores as an integer in self.data.'''
bytesin = 0
# Select the chip
GPIO.output(self.cs_pin, GPIO.LOW)
# Assert clock bit
GPIO.output(self.clock_pin, GPIO.LOW)
# Write to address
for i in range(8):
bit = self.address>>(7 - i)
bit = bit & 1
GPIO.output(self.data_out_pin, bit)
GPIO.output(self.clock_pin, GPIO.HIGH)
GPIO.output(self.clock_pin, GPIO.LOW)
# Read in 8 bits
for i in range(8):
GPIO.output(self.clock_pin, GPIO.HIGH)
bytesin = bytesin << 1
if (GPIO.input(self.data_in_pin)):
bytesin = bytesin | 1
GPIO.output(self.clock_pin, GPIO.LOW)
# Dsable clock
GPIO.output(self.clock_pin, GPIO.HIGH)
# Unselect the chip
GPIO.output(self.cs_pin, GPIO.HIGH)
# Save data
self.data = bytesin
return self.data
if __name__ == "__main__":
cs_pin = 8
clock_pin = 11
data_in_pin = 9
data_out_pin = 10
# Configure RTDs
rtd = MAX31865(cs_pin, clock_pin, data_in_pin, data_out_pin)
log_string = ''
# Run main loop
running = True
while(running):
try:
RTD_code = rtd.get_data()
print '{:.0f}'.format(RTD_code * 4300 / 32768)
time.sleep(0.1)
except KeyboardInterrupt:
running = False
GPIO.cleanup()
以及我对 Java 转换的尝试:
import com.pi4j.io.gpio.GpioController;
import com.pi4j.io.gpio.GpioFactory;
import com.pi4j.io.gpio.GpioPinDigitalInput;
import com.pi4j.io.gpio.GpioPinDigitalOutput;
import com.pi4j.io.gpio.Pin;
import com.pi4j.io.gpio.PinState;
import com.pi4j.io.gpio.RaspiPin;
import com.pi4j.wiringpi.Gpio;
public class MAX31865 {
protected Pin cs_pin;
protected Pin clock_pin;
protected Pin data_in_pin;
protected Pin data_out_pin;
protected GpioPinDigitalOutput cs_pin_out;
protected GpioPinDigitalOutput clock_pin_out;
protected GpioPinDigitalInput data_in_pin_in;
protected GpioPinDigitalOutput data_out_pin_out;
protected int address;
protected int data;
final GpioController gpio = GpioFactory.getInstance();
public MAX31865(Pin cs_pin, Pin clock_pin, Pin data_in_pin, Pin data_out_pin, int address, int data) {
this.cs_pin = cs_pin;
this.clock_pin = clock_pin;
this.data_in_pin = data_in_pin;
this.data_out_pin = data_out_pin;
this.address = address;
this.data = data;
// Initialize needed GPIO
cs_pin_out = gpio.provisionDigitalOutputPin(cs_pin, "SPI_CS");
clock_pin_out = gpio.provisionDigitalOutputPin(clock_pin, "SPI_CLCK");
data_in_pin_in = gpio.provisionDigitalInputPin(data_in_pin, "SPI_IN");
data_out_pin_out = gpio.provisionDigitalOutputPin(data_out_pin, "SPI_OUT");
// Pull chip select high to make chip inactive
cs_pin_out.setState(PinState.HIGH);
}
/**
* Reads 16 bits of the SPI bus from an address register & stores as an integer in data.
* @return
* @throws InterruptedException
*/
public int read() throws InterruptedException {
int bytesin = 0;
// Select the chip
cs_pin_out.setState(PinState.LOW);
// Assert clock bit
clock_pin_out.setState(PinState.LOW);
// Write to address
for (int i = 0; i < 8; i++) {
byte bit = (byte) ((address >> (7 - i)) & 1);
data_out_pin_out.setState(bit == 1);
clock_pin_out.setState(PinState.HIGH);
clock_pin_out.setState(PinState.LOW);
}
// Read in 8 bits
for (int i = 0; i < 8; i++) {
clock_pin_out.setState(PinState.HIGH);
bytesin = bytesin << 1;
if (data_in_pin_in.getState() == PinState.HIGH) {
bytesin = bytesin | 1;
} else {
System.out.println("Is low!");
}
clock_pin_out.setState(PinState.LOW);
}
// Disable Clock
clock_pin_out.setState(PinState.HIGH);
// Unselect the chip
cs_pin_out.setState(PinState.HIGH);
Thread.sleep(1);
// Save data
data = bytesin;
return data;
}
public int getData() throws InterruptedException {
address = 0x01;
int msb = read();
address = 0x02;
int lsb = read();
System.out.println(msb + " " + lsb);
msb = msb << 8;
int raw = msb + lsb;
raw = raw >> 1;
return raw;
}
public static void main(String args[]) throws InterruptedException {
MAX31865 max = new MAX31865(RaspiPin.GPIO_08, RaspiPin.GPIO_11, RaspiPin.GPIO_09, RaspiPin.GPIO_10, (int)0x80, (int)0xC2);
// max.write();
while (true) {
System.out.println(max.getData());
Thread.sleep(100);
}
}
}
只需添加一条评论,以防对其他人有所帮助。如果您关闭系统(以及MAX31865)电源,它将停止工作,直到您对其进行写入。
# Configure RTDs
rtds = []
address = int(0x80) # RTD control register, see datasheet for details
data = int(0xC2) # RTD condrol register data, see datasheet for details
for cs_pin in cs_pins:
rtds.append(MAX31865(cs_pin, clock_pin, data_in_pin, data_out_pin, address, data))
print rtds
for rtd in rtds:
rtd.write()
print rtd
最佳答案
问题与 Pi4J 映射 GPIO 引脚编号与 Python 版本的方式有关。
https://www.pi4j.com/1.2/pins/model-3b-rev1.html
Python 版本:
MAX31865(8, 11, 9, 10)
以及 java 的等价物:
MAX31865 max = new MAX31865(RaspiPin.GPIO_10, RaspiPin.GPIO_14, RaspiPin.GPIO_13, RaspiPin.GPIO_12);
请注意,引脚编号不同。但现在两者给出了完全相同的结果。其他一切都很好。
实时调频:(
关于java - Raspberry Pi MAX31865 Python 到 Java 的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58595224/
我有一个运行 Raspbian 的 Raspberry Pi 1。我尝试在 Raspberry Pi 3 上运行 SD 卡,但它没有启动。 我已经阅读了有关升级 Raspberry Pi 2 安装以在
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我目前正在尝试RadiusNetworks发布的Raspberry Pi iBeacon教程,网址为 http://developer.radiusnetworks.com/2013/10/09/ho
我的公司使用 Raspberry Pi 3 作为产品中的嵌入式 Controller 。用户不会优雅地关闭它,他们只是扳动一个开关。为避免损坏,/boot 和/root 文件系统是只读的。这似乎是防弹
如何使用 Raspberry Pi 作为 b/w USB Tethered 手机和路由器的桥接器,使用“以太网电缆 b/w Raspberry Pi 和路由器”和“USB 电缆 b/w 手机和 Ras
我关注了一个名为Creating an Electron Application for the Raspberry Pi的博客,内容涉及使用Buster OS在Raspberry Pi中启动Elec
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我有一个树莓派,并且已经从 raspbmc.com 加载了最新的独立版本。在使用 XBMC 时,我看到 CPU 使用率始终在 90% 以上。查看 XBMC wiki 和常见问题解答后,脏区域似乎是减少
我现在正在做一个小项目。我希望 python 脚本在登录到 GUI 后自动运行。 我按照这里的步骤操作:https://www.raspberrypi.org/forums/view ... 91&t
我正在使用 Android Things 在 Raspberry Pi 上构建应用程序并且我有 7 inch touch screen ,但屏幕永远不会关闭。 是否可以像 Android 手机一样设置
我正在执行一组事件以确保 Redis 在一组嵌入式系统(包括 Raspberry PI)中运行良好。为了修复执行未对齐内存访问的 Redis 的某些代码路径(由于 Redis 3.2 中引入的更改),
我正在尝试使用 Tanuki Java Service Wrapper。 我使用的硬件是带有 Raspbian wheezy 发行版的 Raspberry Pi。 (见 http://www.rasp
我希望构建一个以全屏模式在 Raspberry Pi 上运行的应用程序。我已经尝试过 JavaFX 和基于 Swing 的应用程序,但性能非常糟糕。 在我开始使用 SDL( http://www.li
我的项目在/home/pi/app中 以npm start开头 启动操作系统后如何启动应用程序? ****西类牙文 Mi proyecto esta zh/home/pi/app Arranca la
我正在尝试安装 Kappelt gBridge在 Raspberry Pi 3 B 型上,使用本指南:https://doc.gbridge.io/selfHosted/hostItYourself.
我正在使用我的 Pi 作为文件服务器,最近当我登录时,我看到一条错误消息,指出 libarmmem.so(无法打开共享对象文件),尽管有一些建议运行 apt-get update + 升级它并没有带来
我正在尝试使用 Raspberry# 库通过 Raspberry PI 上的 GPIO 引脚(打开和关闭)执行基本任务。根据 github 上的示例:https://github.com/raspbe
如标题所述,我在将一些用户空间中断代码从另一个 armv7 嵌入式 linux 平台移植到 Raspberry Pi 2 Model B 时遇到问题。 我知道 wiringPi 库(并让它以这种方式工
我正在尝试为 Raspberry Pi B+ 交叉编译 Tensorflow-Lite。为此,我正在关注 these instructions来自官方网站,它们是: git clone https:/
我正在尝试使用 PulseAudio RTP 将音频从 Linux Mint 桌面流式传输到运行 LibreELEC (Kodi) 的 RaspberryPi 3B。我可以使用 RTP 多播成功地流式
我是一名优秀的程序员,十分优秀!