Search found 348 matches

by RevPiModIO
07 Nov 2024, 08:25
Forum: RevPiModIO
Topic: IO refresh time exceeded
Replies: 1
Views: 10775

Re: IO refresh time exceeded

Hi AndreC7!

The warning from RevPiModIO is thrown at you because the process in which your Python program is running is probably running out of resources. Since your main program runs every millisecond `time.sleep(0.001)` I suspect that the Python process runs with 100% CPU time on one core. As a ...
by RevPiModIO
28 Oct 2024, 11:39
Forum: Software
Topic: PiCtory: Is it possible to set values in the web GUI?
Replies: 4
Views: 5044

Re: PiCtory: Is it possible to set values in the web GUI?

The values that can be set in PiCtory are the default values to which the outputs should be set at system startup or after resetting the driver.
by RevPiModIO
28 Oct 2024, 11:08
Forum: Software
Topic: PiCtory: Is it possible to set values in the web GUI?
Replies: 4
Views: 5044

Re: PiCtory: Is it possible to set values in the web GUI?

No, unfortunately this is not possible via the web interface.

You could install the RevPi Commander on a computer and connect to the RevPi. There is then "PLC watch mode" where all IOs can be switched.

https://revpimodio.org/en/sources/revpipycommander/
by RevPiModIO
18 Sep 2024, 11:07
Forum: RevPiModIO
Topic: Connect4 a problem in slicing bytes! for variable x2out and some led colors
Replies: 4
Views: 15220

Re: Connect4 a problem in slicing bytes! for variable x2out and some led colors

I will add a NotImplementedError for wd_toggle on connect 4 devices, to clarify that this function is no longer available due to the changes of KUNBUS to the process image.

https://github.com/naruxde/revpimodio2/ ... 99f094d973
by RevPiModIO
18 Sep 2024, 10:31
Forum: RevPiModIO
Topic: Connect4 a problem in slicing bytes! for variable x2out and some led colors
Replies: 4
Views: 15220

Re: Connect4 a problem in slicing bytes! for variable x2out and some led colors

Hi Ayman!

I have an RC1 for RevPiModIO here, which contains your patch for x2out (thanks for your work). In addition, the A1 - A5 properties are repaired there and the constants GREEN, RED now switches the correct LEDs.

It would be great if you could test the version once, the history is on Github ...
by RevPiModIO
28 Aug 2024, 08:14
Forum: RevPiModIO
Topic: Watchdog bei einem Connect 4 mit RevPiModIO toggeln?
Replies: 2
Views: 13807

Re: Watchdog bei einem Connect 4 mit RevPiModIO toggeln?

Hi, auf RevPi Connect 3 Geräten kannst du eine Instanz von RevPiModIO erzeugen und die Funktion `.wd_toggle()` verwenden um den Watchdog zurückzusetzen.


import revpimodio2
rpi = revpimodio2.RevPiModIO(autorefresh=True)

rpi.core.wd_toggle()

rpi.exit()


Leider hat sich die KUNBUS bei dem RevPi ...
by RevPiModIO
17 Mar 2024, 09:08
Forum: Software
Topic: Python GUI not accepting Values from RTD sensor
Replies: 1
Views: 5021

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 your own ...
by RevPiModIO
13 Mar 2024, 17:04
Forum: Software
Topic: RevPi CONNECT 4, CODESYS, LED's lassen sich nicht ansteuern
Replies: 10
Views: 53499

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 ...
by RevPiModIO
29 Feb 2024, 08:51
Forum: Neuigkeiten & Ankündigungen
Topic: CODESYS Bibliothek für 64 BIT (BETA)
Replies: 0
Views: 19100

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 ...
by RevPiModIO
29 Feb 2024, 08:49
Forum: News & Announcements
Topic: CODESYS library for 64 BIT (BETA)
Replies: 0
Views: 18935

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 ...