Search found 286 matches

  • 1
  • 2
  • 3
  • 4
  • 5
  • 29
by RevPiModIO
28 Apr 2023, 10:12
Forum: Software
Topic: RevPI Compact after flash Buster plc commander does not start
Replies: 4
Views: 1340

Re: RevPI Compact after flash Buster plc commander does not start

Hi novofer! This seems to have something to do with a too old version of the zeroconf library, which is available in Buster. We once created a backport package, which you can please test. Download: http://revpimodio.org/dnl/python3-zeroconf_0.26.1-1~bpo10+1_all.deb Download and installation via cli ...
by RevPiModIO
10 Mar 2023, 19:27
Forum: Software
Topic: RevPi ModIO2 and OOP
Replies: 2
Views: 1337

Re: RevPi ModIO2 and OOP

Hi :D On the Revolution Pi should be only one instance of RevPiModIO. So you just have to pass your instance to the other classes and your program should work :D By that method you can write control classes independently of the instantiation of the RevPiModIO module. The control classes will work al...
by RevPiModIO
06 Mar 2023, 08:16
Forum: Hardware
Topic: Emergency stop
Replies: 1
Views: 486

Re: Emergency stop

That can be implemented exactly like this. Your emergency stop simply removes the 24 V from pin 4 on connector X2 (the top one). This only removes the voltage for the actuators (valves), the module and the inputs can continue to be used. Note: The internal status of the outputs is still set to High!...
by RevPiModIO
23 Feb 2023, 16:29
Forum: Hardware
Topic: PiCtory settings for MIO pwm output
Replies: 4
Views: 900

Re: PiCtory settings for MIO pwm output

Hi Makoto! In general your Python code is okay. Just add the rpi.exit() at the end to be sure all IOs are set as you want - Especially the .value = int(0) import revpimodio2 import time rpi = revpimodio2.RevPiModIO(autorefresh=True) rpi.io.PwmDutycycle_1.value = int(496) #49.6% duty cycle rpi.io.Dig...
by RevPiModIO
23 Feb 2023, 16:17
Forum: Hardware
Topic: How to use status signals for modules health
Replies: 5
Views: 1407

Re: How to use status signals for modules health

In RevPiModIO, the status of the modules can be read via their variables in the process image. Each DIO/DO/DI module has a status word (16 bits) which indicates various errors, see link. https://revolutionpi.com/tutorials/overview-revpi-io-modules/configuration-digital-io-modules/ In control project...
by RevPiModIO
08 Feb 2023, 06:54
Forum: RevPiModIO
Topic: Negative Values
Replies: 2
Views: 418

Re: Negative Values

Hi!

You can configure the IO in your Python program. Just set the signed value of your input to True.

your_revpi_mod_io.io.your_input.signed = True

# Now the value will show negative values
print(your_revpi_mod_io.io.your_input.value)

Sven
by RevPiModIO
06 Feb 2023, 15:50
Forum: News & Announcements
Topic: Buster Image 01/2023 with RevPi Core SE support
Replies: 0
Views: 1171

Buster Image 01/2023 with RevPi Core SE support

Dear RevPi Community. We are happy to announce that we have released our latest Buster Image 01/2023. The image offers support for the RevPi Core SE products. Have a look at our release notes: https://revolutionpi.de/tutorials/downloads/#releasenotes You can download the images (full / lite) as usua...
by RevPiModIO
06 Feb 2023, 15:38
Forum: Neuigkeiten & Ankündigungen
Topic: Buster Image 01/2023 mit RevPi Core SE Unterstützung
Replies: 0
Views: 908

Buster Image 01/2023 mit RevPi Core SE Unterstützung

Liebe RevPi Community. Wir freuen uns, euch mitteilen zu können, dass wir unser neuestes Buster Image 01/2023 veröffentlicht haben. Das Paket enthält Unterstützung für den neuen RevPi Core SE. Die detaillierten Änderungen findet ihr in unseren Release Notes: https://revolutionpi.de/tutorials/downloa...
by RevPiModIO
23 Jan 2023, 13:27
Forum: Software
Topic: Pictory Login
Replies: 17
Views: 2663

Re: Pictory Login

Hello PutR! I was able to recreate the phenomenon by using illegal characters in the hostname (a period in my case). Can you please check via SSH the "/etc/hostname" and "/etc/hosts" files for illegal hostname characters? You should use a-z 0-9 '-' (hyphen) only, no spaces or oth...
by RevPiModIO
18 Jan 2023, 00:23
Forum: Software
Topic: Access & Modify Pictory Configuration
Replies: 1
Views: 618

Re: Access & Modify Pictory Configuration

Hi Lena! Unfortunately, you cannot write a configuration with RevPiModIO. The library only reads the piCtory configuration under /etc/revpi/config.rsc. For your point 3: You can read the configured values of the MEMs witch .io.MEMNAME.defaultvalue - Replace MEMNAME and do not use just the .value pro...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 29