Skip to main content

Rain Bird Controller

Project description

pyrainbird Build Status Coverage Status

Python module for interacting with WiFi LNK module of the Rain Bird Irrigation system

This project has no affiliation with Rain Bird. This module works with the Rain Bird LNK WiFi Module. For more information see https://www.rainbird.com/products/module-wi-fi-lnk


This module communicates directly towards the IP Address of the WiFi module it does not support the cloud. You can start/stop the irrigation and get the currently active zone.

I'm not a Python developer, so sorry for the bad code. I've developed it to control it from my domtica systems.

**Please, feel free to contribute to this repo or chip in some cents for the effort and Donate

On the bottom of the module is some test code. Feel free te test it with your own

# Test for controller
from pyrainbird import RainbirdController
import time
import logging

logging.basicConfig(filename='pypython.log',level=logging.DEBUG)


_LOGGER = logging.getLogger(__name__)
_LOGGER .setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
_LOGGER.addHandler(ch)

controller = RainbirdController("####IP#####","####PASS#####")
controller.irrigate_zone(4,5)
time.sleep(4)
controller.stop_irrigation()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrainbird-0.7.0.tar.gz (10.8 kB view hashes)

Uploaded Source

Built Distribution

pyrainbird-0.7.0-py3-none-any.whl (12.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page