Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
A Python 3 wrapper for the Nanoleaf OpenAPI, for use when controlling the Light Panels, Canvas and Shapes (including Hexagons)
nanoleafapi is a Python 3 wrapper for the Nanoleaf OpenAPI. It provides an easy way to use many of the functions available in the API. It supports the Light Panels (previously Aurora), Canvas and Shapes (Hexagons, Triangles and Elements). It does not support the Nanoleaf Essentials range.
Nanoleaf API: https://forum.nanoleaf.me/docs/openapi
Detailed package documentation: https://nanoleafapi.readthedocs.io
IMPORTANT: As of version 2.0.0, there have been some API changes relating to how the authentication token is generated and stored, please re-read the Usage section.
To install the latest stable release:
python -m pip install nanoleafapi
You must know the IP address of the Nanoleaf device. This can be either be done using your own methods or by using the disovery module. This module uses SSDP and should work but I have found cases of this method not functioning properly. If it doesn't work, and gives an empty dictionary please identify the IP of the Nanoleaf device yourself.
To use the discovery module:
from nanoleafapi import discovery
nanoleaf_dict = discovery.discover_devices()
This will return a dictionary in the format: {name: ip}
.
There is just one class that contains all relevant functions for controlling the lights. To get started:
from nanoleafapi import Nanoleaf
Next, a Nanoleaf object can be created with the following line of code. IF you don't have an authentication token yet, hold the power button for 5-7 seconds on your Nanoleaf device before running the following code. This will generate a new token and save it to your user directory to use for future uses of this package.
nl = Nanoleaf("ip")
You can now use the commands to control the panels as displayed in the example below.
nl.toggle_power() # Toggle power
nl.set_color((255, 0, 0)) # Set colour to red
All of the following methods can be called with the Nanoleaf object you created.
For more information about the Nanoleaf API: https://forum.nanoleaf.me/docs/openapi
For more in-depth documentation about this package visit: https://nanoleafapi.readthedocs.io
create_auth_token() # Creates an authentication token and stores it in the user's home directory.
delete_auth_token() # Deletes an authentication token from the device and the token storage file.
get_info() # Returns device information dictionary
get_name() # Returns the current device name
check_connection() # Raises NanoleafConnectionError if connection fails
get_power() # Returns True if lights are on, otherwise False
power_off() # Powers off the lights
power_on() # Powers on the lights
toggle_power() # Toggles light on/off
Colours are generated using HSV (or HSB) in the API, and these individual values can be adjusted using methods which are as described, hue, saturation, brightness/value. The method in this section uses RGB (0-255) and converts this to HSV.
There are already some pre-set colours which can be imported to be used with the set_color()
method:
from nanoleafapi import RED, ORANGE, YELLOW, GREEN, LIGHT_BLUE, BLUE, PINK, PURPLE, WHITE
The set_color()
method can then be called, passing in either a pre-set colour or your own RGB colour in the form of a tuple: (r, g, b)
.
set_color((r, g, b)) # Set all lights to RGB colour. Pass the colour as a tuple.
set_color(RED) # Same result but using a pre-set colour.
set_brightness(brightness, duration) # Sets the brightness of the lights (accepts values between 0-100)
increment_brightness(value) # Increments the brightness by set amount (can also be negative)
get_brightness() # Returns current brightness
Use these if you want to change the HSV values manually, otherwise use set_color()
for colour change using RGB.
set_hue(value) # Sets the hue of the lights (accepts values between 0-360)
increment_hue(value) # Increments the hue by set amount (can also be negative)
get_hue() # Returns current hue
Use these if you want to change the HSV values manually, otherwise use set_color()
for colour change using RGB.
set_saturation(value) # Sets the saturation of the lights (accepts value between 0-100)
increment_saturation(value) # Increments the saturation by set amount (can also be negative)
get_saturation() # Returns current saturation
This is usually used to identify the current lights by flashing them on and off.
identify()
set_color_temp(value) # Sets the colour temperature of the lights (accepts between 1200-6500)
increment_color_temp(value) # Increments the colour temperature by set amount (can also be negative)
get_color_temp() # Returns current colour temperature
get_color_mode() # Returns current colour mode
get_current_effect() # Returns either name of current effect if available or *Solid*/*Static*/*Dynamic*.
list_effects() # Returns a list of names of all available effects.
effect_exists(name) # Helper method which determines whether the given string exists as an effect.
set_effect(name) # Sets the current effect.
pulsate((r, g, b), speed) # Displays a pulsate effect with the specified colour and speed.
flow([(r, g, b), (r, g, b), ...], speed) # Displays a sequence of specified colours and speed.
spectrum(speed) # Displays a spectrum cycling effect with the specified speed.
write_effect(effect_dict) # Sets a user-created effect.
Writing effects is rather complicated; you need to follow the the exact format for the effect dictionary, which can be found here: https://forum.nanoleaf.me/docs/openapi#_u2t4jzmkp8nt
In future updates, I hope to add a way to make this process easier, but for now an example of a valid effect dictionary is provided below:
effect_data = {
"command": "display",
"animName": "New animation",
"animType": "random",
"colorType": "HSB",
"animData": None,
"palette": [
{
"hue": 0,
"saturation": 100,
"brightness": 100
},
{
"hue": 120,
"saturation": 100,
"brightness": 100
},
{
"hue": 180,
"saturation": 100,
"brightness": 100
}
],
"brightnessRange": {
"minValue": 50,
"maxValue": 100
},
"transTime": {
"minValue": 50,
"maxValue": 100
},
"delayTime": {
"minValue": 50,
"maxValue": 100
},
"loop": True
}
Inputting an invalid dictionary will raise a NanoleafEffectCreationError.
nl.enable_extcontrol() # Enables UDP extControl API
This enables the UDP extControl API, which is detailed further in the documentation. There is also an example provided by @erhan- in their PR for adding this feature, which gives a great first example. This can be found here.
Creates an event listener for the different types of events.
register_event(function, event_types)
You should pass your own function with one argument (event as a dictionary). This function will run every time a new event is received.
IMPORTANT: You cannot currently call register_event()
more than once due to API limitations. Instead, distinguish between the events in your function using the dictionary data.
A list of event types you would like to listen for should also be passed. You can register up to 4 events (all of them), and these are listed below:
Event IDs:
State (changes in power/brightness): 1
Layout: 2
Effects: 3
Touch (Canvas/Shapes only): 4
def event_function(event):
print(event)
# Register for all events
nl.register_event(event_function, [1, 2, 3, 4])
When an event occurs, the event_function()
will run and therefore in this case, print the event dictionary.
{"events":[{"attr":2,"value":65}]} # Example of state event (1)
{"events":[{"attr":1,"value":"Falling Whites"}]} # Example of effects event (3)
{"events":[{"panelId":7397,"gesture":0}]} # Example of touch event (4)
This class is used to make a digital twin (or copy) of the Nanoleaf device, allowing you to change the colour of individual tiles and then sync all the changes at once to the real device.
To create an instance of this class, you must initialise it with a Nanoleaf object:
from nanoleafapi import Nanoleaf, NanoleafDigitalTwin
nl = Nanoleaf("192.168.0.2")
digital_twin = NanoleafDigitalTwin(nl)
nl.get_ids() # Returns a list of panel IDs
Setting the colour is all managed by using an RGB tuple, in the format: (R, G, B)
.
digital_twin.set_color(panel_id, (255, 255, 255)) # Sets the panel with specified ID to white
digital_twin.set_all_colors((255, 255, 255)) # Sets all panels to white
digital_twin.get_color(panel_id) # Gets the colour of a specified panel
digital_twin.get_all_colors() # Returns a dictionary of {panel_id: (R, G, B)}
The sync method applies the changes to the real Nanoleaf device, based on the changes made here.
digital_twin.sync() # Syncs with the real Nanoleaf counterpart
from nanoleafapi import Nanoleaf, NanoleafDigitalTwin
import random
nl = Nanoleaf("ip")
digital_twin = NanoleafDigitalTwin(nl)
# get a list of all panels
panels = nl.get_ids()
for panel_id in panels:
# set each panel to a random RGB value
digital_twin.set_color(panel_id, (
random.randint(0,255),
random.randint(0,255),
random.randint(0,255),
))
# call 'sync' to copy the "twin" state to the actual panels
digital_twin.sync()
NanoleafRegistrationError() # Raised when token generation mode not active on device
NanoleafConnectionError() # Raised when there is a connection error during check_connection() method
NanoleafEffectCreationError() # Raised when there is an error with an effect dictionary/method arguments
FAQs
A Python 3 wrapper for the Nanoleaf OpenAPI, for use when controlling the Light Panels, Canvas and Shapes (including Hexagons)
We found that nanoleafapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.