Metadata-Version: 2.1
Name: semhue
Version: 1.1.4
Summary: UNKNOWN
Home-page: https://github.com/semmoolenschot/semhue
Author: Sem Moolenschot
Author-email: 
License: MIT
Description: # semhue
        Python package for manipulation Phillips Hue lights
        
        <img src="https://img.shields.io/badge/python%20-%2314354C.svg?&style=for-the-badge&logo=python&logoColor=white"/> <img src = "https://img.shields.io/github/license/Devansh3712/PySQL?style=for-the-badge">
        
        ## Installation
        
        > Windows
        
        ```console
        pip install semhue
        ```
        
        > Linux/MacOS
        
        ```console
        pip3 install semhue
        ```
        
        ## Usage
        
        ```python
        import semhue
        from semhue import *
        ```
        
        ## Available commands
        
        - `semhue.turn_lights_on(room_name, IP_ADDRESS)`: switch on the lights of a room
        - `semhue.turn_lights_off(room_name, IP_ADDRESS)`: switch off the lights of a room
        - `semhue.random_color(room_name, IP_ADDRESS)`: switch light color of a room to a random color
        - `semhue.change_color(room_name, color, IP_ADDRESS)`: switch light colors of a room from available colors
        - `semhue.loop_all_colors(room_name, IP_ADDRESS)`: loop through all the available colors in a room
        - `semhue.available_colors()`: prints all available colors
        - `semhue.set_brightness(room_name, brightness, IP_ADDRESS)`: set custom brightness for lights in a room
        - `semhue.get_rooms(IP_ADDRESS)`: get all the rooms associated to an IP address
        
        ## License
        MIT LICENSE
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
