Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
petabite committed Sep 2, 2019
1 parent 856ed65 commit 7b33bbc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## Contents
- [Features](#features)
- [Changelog](#changelog)
- [Screenshot](#screenshot)
- [Requirements](#requirements)
- [Dependencies](#dependencies)
Expand Down Expand Up @@ -39,6 +40,12 @@
- Fill from Sides
- Fill Strip

## Changelog
| Release | Changes | Date |
|:-------:|:-------------|:-------:|
|v1.1 | <ul><li>New status LED indicator</li><li>New startup animation</li></ul>| 9/2/2019
|v1.0 | <ul><li>FIRST RELEASE!!</li></ul> |8/12/2019

## Screenshot

<img src="https://raw.githubusercontent.com/petabite/uPixels/master/images/screenshot.png" width="400">
Expand Down
2 changes: 1 addition & 1 deletion uPixels/uPixels.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def __init__(self, pin, num_leds, address="0.0.0.0", port=8000):
}
self.statusLED = 5
self.startupAnimation()
self.toggleServerStatusLED()

def setDeviceName(self, name):
self.device_name = name
Expand All @@ -36,6 +35,7 @@ def startServer(self):
(uWeb.GET, "/"): self.app,
(uWeb.POST, '/execute'): self.execute
})
self.toggleServerStatusLED()
self.server.start()

def app(self):
Expand Down

0 comments on commit 7b33bbc

Please sign in to comment.