I have configured this things:
Thing gpio:pigpio-remote:GPIO-pi-1 āGPIO-Pi 1ā [host=ā172.31.85.15ā, port=8888] {
Channels:
// Heizung
Type pigpio-digital-output : GPIO-output-27 [ gpioId=27, invert=true]
// Pool Pumpe
Type pigpio-digital-output : GPIO-output-17 [ gpioId=17, invert=true]
// Jalousieen
Type pigpio-digital-output : GPIO-output-23 [ gpioId=23]
Type pigpio-digital-output : GPIO-output-24 [ gpioId=24]
Type pigpio-digital-output : GPIO-output-15 [ gpioId=15]
Type pigpio-digital-output : GPIO-output-14 [ gpioId=14]
Type pigpio-digital-output : GPIO-output-08 [ gpioId=08]
Type pigpio-digital-output : GPIO-output-07 [ gpioId=07]
Type pigpio-digital-output : GPIO-output-09 [ gpioId=09]
Type pigpio-digital-output : GPIO-output-13 [ gpioId=13]
Type pigpio-digital-output : GPIO-output-10 [ gpioId=10]
Type pigpio-digital-output : GPIO-output-22 [ gpioId=22]
Type pigpio-digital-output : GPIO-output-02 [ gpioId=02]
Type pigpio-digital-output : GPIO-output-03 [ gpioId=03]
}
I use this item config:
//Kellerfenster
Switch GpioOutput02 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-02ā}
Switch GpioOutput03 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-03ā}
//Küche
Switch GpioOutput07 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-07ā}
Switch GpioOutput08 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-08ā}
//Alex Fenster
Switch GpioOutput09 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-09ā}
Switch GpioOutput13 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-13ā}
//Alex Tür
Switch GpioOutput10 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-10ā}
Switch GpioOutput22 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-22ā}
//WZ West
Switch GpioOutput14 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-14ā}
Switch GpioOutput15 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-15ā}
//Pool Pumpe
Switch GpioOutput17 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-17ā}
//Heizung
Switch GpioOutput27 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-27ā}
// WZ Süd
Switch GpioOutput23 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-23ā}
Switch GpioOutput24 {channel=āgpio:pigpio-remote:GPIO-pi-1:GPIO-output-24ā}
and this startup rule:
rule āSystem startup initializationā
when System started
then
sendCommand(GpioOutput17, OFF)
sendCommand(GpioOutput27, OFF)
sendCommand(GpioOutput23, ON)
sendCommand(GpioOutput02, ON)
sendCommand(GpioOutput03, ON)
sendCommand(GpioOutput07, ON)
sendCommand(GpioOutput08, ON)
sendCommand(GpioOutput09, ON)
sendCommand(GpioOutput10, ON)
sendCommand(GpioOutput13, ON)
sendCommand(GpioOutput14, ON)
sendCommand(GpioOutput15, ON)
sendCommand(GpioOutput22, ON)
sendCommand(GpioOutput23, ON)
sendCommand(GpioOutput24, ON)
end
This configuration worked fine before I go to release 3.1
I used 3.1.0.M4 - Milestone Build.
Now I make this test:
I start openhab without this gpio thing configuration, now the gpioās not in use.
Then I create the thing configuration and save it, now the gpioās switched on and hold the on state. The relais switched on.
This is an new situation. The milstone builds only activate the gpioās with the thing configuration but doesnt switch them.
I hope you can understand my problem.
Thanks
Best regards
Walter