This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .navbar--wrapper_1t_ { | |
| background: #1c2539; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author: Max McKinney | |
| # Description: A simple 'busy light' for displaying your meeting status to those outside your home office. | |
| import time | |
| import random | |
| import board | |
| import terminalio | |
| import displayio | |
| import neopixel | |
| from digitalio import DigitalInOut, Direction, Pull |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| secrets = { | |
| 'ssid' : 'your_wifi_ssid', | |
| 'password' : 'your_wifi_password', | |
| 'aio_username' : '_your_aio_username_', | |
| 'aio_key' : '_your_big_huge_super_long_aio_key_' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Feed needs to match your feed name. This feed represents the current True or False status of being in a meeting. AKA being busy or not. | |
| meetingFeed = matrixportal.get_io_feed("meeting-status.inmeeting") | |
| meetingValue = meetingFeed['last_value'] | |
| # Feed needs to match your feed name. This feed represents the current True or False status of having the display off or on. | |
| isDimmedFeed = matrixportal.get_io_feed("meeting-status.isdimmed") | |
| isDimmedValue = isDimmedFeed['last_value'] |
OlderNewer