Search found 322 matches

by RevPiModIO
17 Mar 2024, 09:08
Forum: Software
Topic: Python GUI not accepting Values from RTD sensor
Replies: 1
Views: 174

Re: Python GUI not accepting Values from RTD sensor

Try the following code. Sorry about the new format, black reformatted it. The only thing that was wrong was that you didn't use an instance of RevPiModIO. I now create an instance "rpi = revpimodio2.RevPiModIO()" in one line which runs without autorefresh, that's important because you have...
by RevPiModIO
13 Mar 2024, 17:04
Forum: Software
Topic: RevPi CONNECT 4, CODESYS, LED's lassen sich nicht ansteuern
Replies: 10
Views: 23719

Re: RevPi CONNECT 4, CODESYS, LED's lassen sich nicht ansteuern

Hallo Tim! Wir hatten in unserer Bibliothek 1.4.0.0 einen Fehler mit den Offsets auf dem Revolution Pi Connect 4, dieser hat sich auch auf die LEDs ausgewirkt. Du hast ja bereits die aktualisierte 1.4.1.0 Bibliothek von uns installiert. Arbeitest du mit einem bestehenden Projekt? An dieser Stelle mü...
by RevPiModIO
29 Feb 2024, 08:51
Forum: Neuigkeiten & Ankündigungen
Topic: CODESYS Bibliothek für 64 BIT (BETA)
Replies: 0
Views: 158

CODESYS Bibliothek für 64 BIT (BETA)

Liebe Community! Wir freuen uns euch heute mitteilen zu können, dass unsere CODESYS Biblitohek nun auch 64 Bit Revolution Pi Systeme unterstützt! Wir haben unsere neue CODESYS Bibliothek als in der Version 1.4.1.99 als BETA für euch zum Download bereitgestellt. https://revolutionpi.de/tutorials/down...
by RevPiModIO
29 Feb 2024, 08:49
Forum: News & Announcements
Topic: CODESYS library for 64 BIT (BETA)
Replies: 0
Views: 344

CODESYS library for 64 BIT (BETA)

Dear Community! We are happy to announce that our CODESYS library now also supports 64 bit Revolution Pi systems! We have made our new CODESYS library version 1.4.1.99 available for you to download as a BETA. https://revolutionpi.de/tutorials/downloads/#driver Please test this version and share your...
by RevPiModIO
29 Feb 2024, 08:22
Forum: RevPiModIO
Topic: DIO module simulation
Replies: 8
Views: 13558

Re: DIO module simulation

With the "RevPi Commander" an existing config.rsc file can be used to start a simulator. You install the program on your developer PC and call File -> RevPi Simulator. There you select a created config.rsc file and start the simulation. The window also shows the required additional paramet...
by RevPiModIO
19 Feb 2024, 10:10
Forum: Connectivity
Topic: WLAN dauerhaft deaktivieren - RevPi Connect 4
Replies: 3
Views: 1096

Re: WLAN dauerhaft deaktivieren - RevPi Connect 4

Hi Matthias! Ich habe mal versucht den Fehler nachzustellen. Ich vermute, dass du revpi-webstatus Version 2.4.0 auf deinem System hast und revpi-tools 3.3.1 auf einem Connect 4? Wenn ich über webstatus die Option "Enable/Disable built-in WLAN" deaktiviere, das System neu starte erscheint b...
by RevPiModIO
12 Feb 2024, 08:56
Forum: Software
Topic: Node-red im Browser starten (Docker)
Replies: 5
Views: 1571

Re: Node-red im Browser starten (Docker)

Moin Andreas! Das vorinstallierte Node-RED kannst du über "webstatus" deaktivieren, dann ist der Port frei für dein Docker-Container. Bildschirmfoto 2024-02-12 um 08.41.54.png Dort findest du auch den Node-RED RevPi Notes Server, welcher aktiviert werden muss, wenn du die RevPi-Knoten in D...
by RevPiModIO
07 Feb 2024, 14:46
Forum: RevPiModIO
Topic: Cannot set "direct_output=True" after update library
Replies: 1
Views: 800

Re: Cannot set "direct_output=True" after update library

The parameter was replaced with version 2.4.5 by "shared_procimg" in 2020. Since then, the DeprecationWarning "direct_output is deprecated - use shared_procimg instead!" was shown, when "direct_output" was used. With the last version, "direct_output" is no lon...
by RevPiModIO
30 Jan 2024, 06:52
Forum: RevPiModIO
Topic: Unable to reset Modbus Status variable using Python
Replies: 2
Views: 666

Re: Unable to reset Modbus Status variable using Python

Hi You can reset the status code within your Python Program with rpi.io["FAN_P_STATUS_RESET"].value = True. The thing is, you have to hold the value on True and reset it to False after the status code changed to 0. Make sure, that you use autorefresh=True than you have to wait alt least th...
by RevPiModIO
29 Jan 2024, 16:59
Forum: RevPiModIO
Topic: Incorrect Analog output when using RevPiModIO
Replies: 7
Views: 537

Re: Incorrect Analog output when using RevPiModIO

Hi in06khattab! The ModIO Library is set to signed integers in default on an AIO Module, piTest is unsigned. You can get the byte-Value of the IO, using RevPiModIO via .get_value() instead of .value. The Hex value should be the same with the hex value on piTest. If you want ModIO to treat the bytes ...