If you still have a RevPi with the wheezy image and want to keep it, Kunbus also provides package sources for it!
Installation is done quickly: Continue reading “Connect wheezy image with Kunbus package sources”
RevolutionPi with Python3!
If you still have a RevPi with the wheezy image and want to keep it, Kunbus also provides package sources for it!
Installation is done quickly: Continue reading “Connect wheezy image with Kunbus package sources”
Today we publish an update!
rpi.devices["dio"]["Counter_1"].signed = True
rpi.devices[ "dio"][ "Counter_1"].value
This version has a few small bug fixes, which occur under certain conditions.
RevPiModIO(monitoring=True)
NOTE: RevPiModio.devices.wait(…) Function is no longer compatible with previous versions!
We reworked our RevPiModIO module! This gives us better performance at .readprocimg () / .writeprocimg () and consumes fewer resources.
The RevPiModio.devices.wait (…) function has been completely rewritten. The old version had a return value of only True or False. It was not possible to evaluate the different cancel conditions, but this is urgently needed.
The Returned value is now an int() value! Values less than or equal to 0 are a successful wait, values greater than 0 are triggered abort conditions, such as the exitevent or the timeout.
More detailed in our Documentation.
In addition, all RevPiModIO.devices [0]. * Procimgdev () functions have been removed as they have been marked as superfluous. Alternatively, the function can be performed by parameter transfer of the device to RevPiModIO.devices. * Procimg (device).You could also submit a list here RevPiModIO.devices. * Procimg ([device1, device2]).
More detailed in our Documentation.
The Kunbus GmbH will now publish their new Jessie – Image for the Revolution Pi! Our RevPiModIO has been adapted for the new image and is now released for both versions (wheezy and jessie)!
BUGFIXES: This version also includes bug fixes and should be imported by everyone (regardless of the Jessie image)!
In addition, we are proud to announce that our module in the Jessie Image can be obtained via the Kunbus Repositories! So the installation and the update is easily made!
# Update first pi@RevPi ~/ $ sudo apt-get update # And install easily pi@RevPi ~/ $ sudo apt-get install python3-revpimodio
The updates will of course be automatically imported, if you update your RevPi.
We got a nice sample program from Benjamin, which uses as_threads in event handling!
It uses the simulated RPi.GPIO.add_event_callback (…) of RevPiModIO – The function is known by the RaspberryPi. Continue reading “Benni’s Run – Threads in the mainloop()”
In this example, we start an XML RPC server, which can simply retrieve the values of the IOs. Continue reading “XML-RPC Valueserver”
In this example, we mirror inputs to outputs in a loop. Continue reading “Mirror of infinity (Input=Output)”