Skip to content

Commit e529c19

Browse files
committed
Prep for v0.0.3
1 parent 32b0fb5 commit e529c19

4 files changed

Lines changed: 24 additions & 2 deletions

File tree

library/CHANGELOG.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.0.3
2+
-----
3+
4+
* Support SPI with cs None and no_cs
5+
* Add support for inverted output (GPIO ONLY)
6+
* Fix colour order to BGR
7+
* Fix SOF, EOF and data lengths
8+
* Drop noisy debug print from SPI mode
9+
* Fix set_brightness so it doesn't break pixel SOF
10+
* Add spi_max_speed_hz parameter
11+
112
0.0.2
213
-----
314

library/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,17 @@ Pixels are zero-indexed and accept Red, Green and Blue colour values from 0 to 2
5252

5353
# Changelog
5454

55+
0.0.3
56+
-----
57+
58+
* Support SPI with cs None and no_cs
59+
* Add support for inverted output (GPIO ONLY)
60+
* Fix colour order to BGR
61+
* Fix SOF, EOF and data lengths
62+
* Drop noisy debug print from SPI mode
63+
* Fix set_brightness so it doesn't break pixel SOF
64+
* Add spi_max_speed_hz parameter
65+
5566
0.0.2
5667
-----
5768

library/apa102/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import spidev
33
import RPi.GPIO as GPIO
44

5-
__version__ = '0.0.2'
5+
__version__ = '0.0.3'
66

77

88
class APA102():

library/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
[metadata]
33
name = apa102
4-
version = 0.0.2
4+
version = 0.0.3
55
author = Philip Howard
66
author_email = phil@pimoroni.com
77
description = Python library for APA102 LEDs

0 commit comments

Comments
 (0)