OpenSprinkler Forums OpenSprinkler Mobile and Web App Mobile Web App with Screenshots (Updated) Re: Re: Mobile Web App for OpenSprinkler (w/Screenshots)

#23870

Samer
Keymaster

Okay I found the problem. The interval app uses a different syntax to get the status of stations.

The OS uses:

/sn0

The RPi uses:

/sn=0

The fix can be done by editing the ospi.py file and changing:

'/sn=(d+?Z)', 'get_station', # regular expression, accepts any station number

To:

'/sn(d+?Z)', 'get_station', # regular expression, accepts any station number