Skip to main content

NanoLeaf controller

Project description

NanoController Python Package

Overview

The NanoController package allows you to interface with Nanoleaf devices, providing functionality for controlling individual lights programmatically, creating custom effects, setting timers, and displaying weather information. The package supports advanced features such as custom weather visualization, dynamic notifications, and more.


Installation

pip install nanocontroller

Authorization

To use the Nanoleaf OpenAPI, physical access to the device is required:

Hold the on-off button for 5-7 seconds until the LED starts flashing in a pattern or open the authorization window via the Nanoleaf mobile app by navigating to device settings and selecting "Connect to API."

Run this function to obtain auth_token during authorization window

from nano import get_token

get_token(
    ip address,     # Found on back of device, in app, or through network discovery tool 
    port            # Port defaults to "16021", but manual port discovery recommended. 
    )

Getting Started

Initializing the NanoController

from nano import NanoController

nano = NanoController(
    ip_address="172.20.7.17",  # Found on the back of the device, in the app, or via a network scan.
    port="16021",              # Default port. Discovery recommended.
    latitude=28.5383,          # Optional latitude, required for weather functions.
    longitude=-81.3792         # Optional longitude, required for weather functions.
)

or create a .env file

NANO_AUTH_TOKEN=
NANO_IP_ADDRESS=                # Strings
NANO_PORT=

NANO_LATITUDE =                 # Floats
NANO_LONGITUDE = 

and just

from nano import NanoController

nano = NanoController()

Location can be updated at any point after initialization with:

nano.set_location(lattitude, longitude)

Methods

General Controls

  • Get states:

    await nano.get_brightness()          # Get current brightness level.
    await nano.get_effect()              # Get the currently active effect.
    await nano.get_effects_list()        # List available effects downloaded in the app.
    await nano.get_state()               # Retrieve all states of the panels.
    
  • Set states:

    await nano.set_brightness(50)        # Set brightness (0-100).
    await nano.set_effect("Aurora")      # Set a specific effect by name.
    

Custom Effects

Customize the panel colors and effects programmatically:

await nano.custom(color_dict, loop=True)
  • Input Format:
    color_dict = {
        0: [(255, 0, 0, 10)],                     # Panel 1: Changes to Red with a 1-second transition.
        3: [(0, 255, 0, 10), (0, 0, 255, 30)],    # Panel 4: Changes to Green with a 1-second transition, then changes to blue with a 3 second transition. Loops by default, if Loop is False then remains static on blue after transitions
        ...
    }
    
    You can change all panels at once, or partial sets. The keys(0 to (number of panels - 1)) correspond to the set order of the panels. This defaults to "top_to_bottom" but can be changed with:
    nano.panels.bottom_to_top()
    nano.panels.left_to_right()
    nano.panels.right_to_left()
    
    You can use multiple ordering methods when only one would leave room for ambiguity:
    nano.panels.left_to_right()
    nano.panels.bottom_to_top()
    
    You can customize the ordering if the positions do not strictly follow a specific order:
    print(nano.panels)                        # Gets IDs and relative postions        
    
    #Output: [Panel(id=30344, x=0, y=580), Panel(id=26383, x=0, y=464), Panel(id=19622, x=0, y=348), Panel(id=29596, x=0, y=232), Panel(id=11739, x=0, y=116), Panel(id=38168, x=0, y=0)]
    
    nano.panels.custom_sort(ordered_ids)      # ordered_ids is an array of the ids in a customized order, [26383, 19622, 30344, etc...]  
    

Timer Functionality

Gradually transition panels from one color to another, one by one, over a defined time. Follows the set ordering of panels, defaulting to "top_to_bottom":

await nano.timer(
    duration = 60,                  # Required - Time in seconds (≥ total number of panels).
    start_color = BLUE,             # Default blue.
    end_color = ORANGE,             # Default orange.
    alarm_length = 10,              # Alarm duration in seconds.
    alarm_brightness = 100,         # Full brightness for the alarm.
    end_animation = None,           # Custom `color_dict` for end effect. Defaults to quckly cycling through random colors.
    end_function = None,            # Optional async function to execute during end_animation
    end_function_kwargs = None      # Arguments for the end function.
)

Weather Visualization

  1. Set location:

    await nano.set_location(latitude, longitude)
    
  2. Display hourly forecast: Each panel represents an hour. For example:

    • Heavy rain in 3 hours: Panel 3 quickly flashes blues and whites.
    • Overcast: Panel slowly transitions between grey tones.
    • weather_codes.py defines weather animations and can be customized. Is not fully optimized yet.
    await nano.set_hourly_forecast(
        latitude = None, 
        longitude = None,                # If location has not been set at initialization or with .set_location() it must be provided here
        sunrise = 6,                     # Weather effects varry based on if they occur during day or night. Daytime hours fall within (sunrise, sunset) exclusive. 
        sunset = 18,
    )
    
  3. Display precipitation levels: Sets the panels to display precipitaion level over "hour_interval" periods. Defaults to one hour per panel. Precipitation is represented on a gradient from the brightest blue for 100% chance and yellow for 0%. These colors are customizable.

    await nano.set_precipitation(
             hour_interval = 1, 
             latitude = None,                  # Location necesarry if not already set
             longitude = None,
             max_color = BLUE,                 # Many standard colors are predefined
             min_color = YELLOW
     )
    
  4. Display temperature gradients: Sets the panels to display the temperature per hour intervals. Defaults to one hour per panel. Default color gradients defined by the dictionary:

    gradient_dict = {
        0: {
            "start": (255, 255, 255),  # Bright white
            "end": (255, 255, 255)     # Bright white
        },
        40: {
            "start": (255, 255, 255),  # Bright white
            "end": (200, 200, 200)     # Light white
        },
        50: {
            "start": (125, 0, 175),    # Purple
            "end": (150, 0, 255)       # Duller purple
        },
        60: {
            "start": (0, 0, 255),      # Blue
            "end": (80, 90, 255)       # Slightly lighter blue
        },
        },
        70: {
            "start": (0, 255, 90),     # Aqua
            "end": (0, 255, 190)       # Slightly bluer aqua
        },
        80: {
            "start": (255, 255, 0),    # Bright yellow
            "end": (255, 100, 0)       # Reddish yellow
        },
        100: {
            "start": (255, 60, 0),     # Bright red-orange
            "end": (255, 0, 0)         # Red
        }
    }
    

    Custom gradient dictionary of the same form can be passed to accomadate different climates. Intervals can be customized. "start" defines the color at the lowest point in the interval and "end" defines the color at the highest point in the interval.

    await nano.set_temperature(
            hour_interval = 1,       
            latitude = None, 
            longitude = None, 
            gradient_dict = None,
    )
    

Features

Built-in Functionalities

  • Weather visualization: Displays hourly forecasts, precipitation, and temperature using panel colors.
  • Timers: Create visual countdowns with customizable colors and alarms.

Extendability

Leverage the nano.custom() method to:

  • Display dynamic notifications.
  • Create personalized status displays.

Contributing

Feel free to submit issues or pull requests on the GitHub repository. Contributions to add new features or improve existing ones are always welcome.


License

This package is licensed under the MIT License. See the LICENSE file for more information.

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

nanocontroller-1.0.2.tar.gz (18.6 kB view details)

Uploaded Source

Built Distribution

nanocontroller-1.0.2-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file nanocontroller-1.0.2.tar.gz.

File metadata

  • Download URL: nanocontroller-1.0.2.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.5

File hashes

Hashes for nanocontroller-1.0.2.tar.gz
Algorithm Hash digest
SHA256 ba6cac5a243a06272cff8e715cf8aa28f90017bc9840c007e5e3d4178be52e7a
MD5 75a7b6b6b8c0741d5fcdad8369833b30
BLAKE2b-256 95c73b1ebf11d15f47bf1e281c55f0da37c9aed2076c6314c831081a144d938c

See more details on using hashes here.

File details

Details for the file nanocontroller-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for nanocontroller-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 00fa38299ae6753fd015a8bf024513413d82728b4e85b1fe0fa46535f0bc8ac8
MD5 627a6eee208c1401036c9ba586bc1ea2
BLAKE2b-256 a7b6cbf1e211837560b3d357a01041dccb50e4d8a6a117159ecbf1f05a8f3c7f

See more details on using hashes here.

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