Skip to content

geckoal/gecko-iot-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

36 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🦎 Gecko IoT Client

Caution

🚨 HEAVY DEVELOPMENT IN PROGRESS 🚨

This project is under heavy active development and the API is rapidly changing.

  • ⚠️ Breaking changes expected in the coming days/weeks
  • 🚫 Not recommended for production use until v1.0.0
  • 🎯 Use at your own risk for development/testing only
  • πŸ“… API stability target: Within November 2025

Python Version License Tests Documentation Quality Gate Status Coverage PyPI Version

A modern, asynchronous Python client library for Gecko IoT devices with AWS IoT integration. Control and monitor your Gecko-powered spas, hot tubs, and pool equipment with ease.

✨ Features

  • 🌐 AWS IoT Integration: Secure MQTT communication via AWS IoT Core
  • 🏊 Multi-Zone Control: Temperature, lighting, and flow zone management
  • πŸ“‘ Real-time Updates: Event-driven state synchronization
  • πŸ”„ Async/Await Support: Modern Python async programming patterns
  • πŸ›‘οΈ Type Safety: Full type hints and mypy compatibility
  • πŸ“Š Comprehensive Logging: Detailed debug and monitoring capabilities
  • πŸ§ͺ Well Tested: Extensive test suite with code coverage
  • πŸ“– Rich Documentation: Auto-generated API docs and examples

πŸš€ Quick Start

Installation

pip install gecko-iot-client

Basic Usage

import asyncio
from gecko_iot_client import GeckoIotClient
from gecko_iot_client.transporters.mqtt import MqttTransporter

async def main():
    # Create MQTT transporter with your AWS IoT endpoint
    transporter = MqttTransporter(
        endpoint="wss://your-endpoint.iot.region.amazonaws.com/mqtt",
        device_id="your-device-id"
    )
    
    # Initialize client
    client = GeckoIotClient(idd="your-device-id", transporter=transporter)
    
    async with client:
        # Get all temperature control zones
        temp_zones = client.get_zones_by_type(ZoneType.TEMPERATURE_CONTROL_ZONE)
        
        for zone in temp_zones:
            print(f"Zone {zone.name}: {zone.temperature}Β°C (target: {zone.target_temperature}Β°C)")
        
        # Control lighting
        lighting_zones = client.get_zones_by_type(ZoneType.LIGHTING_ZONE)
        if lighting_zones:
            light = lighting_zones[0]
            await light.activate()  # Turn on
            await light.set_color(255, 0, 0)  # Set to red

if __name__ == "__main__":
    asyncio.run(main())

πŸ—οΈ Architecture

Zone Types

The client supports three main zone types:

  • 🌑️ Temperature Control Zones: Heater and temperature management
  • πŸ’‘ Lighting Zones: LED lighting control with color support
  • 🌊 Flow Zones: Pump and circulation control

Event System

def on_temperature_change(zone, old_temp, new_temp):
    print(f"Temperature changed from {old_temp}Β°C to {new_temp}Β°C")

client.register_zone_callbacks(lambda zone_name: on_temperature_change)

πŸ“ Project Structure

gecko-iot-client/
β”œβ”€β”€ .github/workflows/     # CI/CD pipelines
β”œβ”€β”€ gecko_iot_client/      # Main package
β”‚   β”œβ”€β”€ src/              # Source code
β”‚   β”‚   └── gecko_iot_client/
β”‚   β”‚       β”œβ”€β”€ models/   # Data models and zone types
β”‚   β”‚       └── transporters/  # Communication layers
β”‚   β”œβ”€β”€ tests/            # Test suite
β”‚   β”œβ”€β”€ docs/             # Sphinx documentation
β”‚   └── examples/         # Usage examples
└── README.md             # This file

πŸ› οΈ Development

Prerequisites

  • Python 3.13+
  • Poetry (recommended) or pip

Setup

# Clone the repository
git clone https://github.com/geckoal/gecko-iot-client.git
cd gecko-iot-client

# Install dependencies
cd gecko_iot_client
pip install -e ".[dev,docs]"

# Run tests
pytest tests/ --cov=gecko_iot_client

# Format code
black src/ tests/
isort src/ tests/

# Build documentation
sphinx-build docs/source docs/build/html

# Generate changelog from git history
./scripts/generate-changelog.sh
# or using the Python entry point
gecko-build-changelog

Running Examples

# Run the demo script
python gecko_iot_client/examples/demo.py

πŸ“š Documentation

🀝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Workflow

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Add tests for new functionality
  5. Ensure all tests pass (pytest)
  6. Commit your changes (git commit -m 'Add amazing feature')
  7. Push to the branch (git push origin feature/amazing-feature)
  8. Open a Pull Request

πŸ“Š Testing & Quality

  • βœ… Automated Testing: GitHub Actions run tests on every push and PR
  • πŸ“ˆ Code Coverage: Monitored via SonarCloud with detailed quality reports
  • πŸ” Code Quality: SonarCloud analysis with Black, isort, and flake8 for consistent style
  • πŸ“ Documentation: Auto-generated and deployed on every release

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ†˜ Support

🏷️ Versioning Strategy

This project follows Semantic Versioning (SemVer) combined with PEP 440 for Python compatibility.

Version Format

MAJOR.MINOR.PATCH[-PRERELEASE]
  • MAJOR: Breaking changes (incompatible API changes)
  • MINOR: New features (backward-compatible functionality)
  • PATCH: Bug fixes (backward-compatible fixes)

Git Tag Format

All releases use the v prefix in git tags:

# Release versions
v1.0.0          # Major release
v1.1.0          # Minor release  
v1.1.1          # Patch release

# Pre-release versions
v1.0.0-alpha.1  # Alpha release
v1.0.0-beta.1   # Beta release
v1.0.0-rc.1     # Release candidate

Release Lifecycle

Stage Git Tag Example PyPI Version Purpose
Alpha v0.1.0-alpha.1 0.1.0a1 Early development, internal testing
Beta v0.1.0-beta.1 0.1.0b1 Feature complete, external testing
Release Candidate v0.1.0-rc.1 0.1.0rc1 Final validation before release
Stable Release v0.1.0 0.1.0 Production ready
Patch Release v0.1.1 0.1.1 Bug fixes only
Minor Release v0.2.0 0.2.0 New features, backward compatible
Major Release v1.0.0 1.0.0 Breaking changes

Current Development Phase

🚧 Alpha Stage - The project is currently in alpha development:

  • API Stability: ⚠️ APIs may change without notice
  • Production Use: ❌ Not recommended until v1.0.0
  • Testing: βœ… Suitable for development and testing
  • Feedback: 🎯 Highly appreciated via GitHub Issues

Version Detection

Versions are automatically determined from git tags using setuptools-scm:

import gecko_iot_client
print(gecko_iot_client.__version__)  # e.g., "0.1.0a2.post1"

Version Components:

  • 0.1.0a2 - Alpha version 2 of release 0.1.0
  • .post1 - 1 commit after the tagged release
  • +dirty - Local uncommitted changes (development builds)

Release Process

  1. Development happens on the develop branch
  2. Tagging creates releases: git tag v0.1.0-alpha.3 && git push origin v0.1.0-alpha.3
  3. GitHub Actions automatically builds and publishes to PyPI
  4. Documentation is automatically updated and deployed

🏷️ Version History

See CHANGELOG.md for a detailed version history.


Made with ❀️ by the Gecko Team
Powering the future of smart pool and spa control

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages