-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from G3zz/tcs3472-rebased
Add support for the TCS34725 colour sensor
- Loading branch information
Showing
26 changed files
with
673 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
python-sense-hat (2.3.1~test0) UNRELEASED; urgency=medium | ||
|
||
* v2.3.1 alpha | ||
|
||
-- George Boukeas <[email protected]> Wed, 21 Jul 2021 15:11:00 +0000 | ||
|
||
python-sense-hat (2.3.0~test0) UNRELEASED; urgency=medium | ||
|
||
* v2.3.0 alpha | ||
|
||
-- Serge Schneider <[email protected]> Fri, 11 Dec 2020 14:41:32 +0000 | ||
|
||
python-sense-hat (2.2.0-1) jessie; urgency=medium | ||
|
||
* v2.2.0 release | ||
|
||
-- Serge Schneider <[email protected]> Sun, 07 Aug 2016 14:32:16 +0100 | ||
|
||
python-sense-hat (2.1.0-1) jessie; urgency=low | ||
|
||
* v2.1.0 release | ||
|
||
-- Serge Schneider <[email protected]> Tue, 25 Aug 2015 05:19:02 +0100 | ||
|
||
python-sense-hat (2.0.0-1) jessie; urgency=low | ||
|
||
* v2.0.0 release | ||
* Rename to python-sense-hat | ||
|
||
-- Serge Schneider <[email protected]> Fri, 21 Aug 2015 19:36:23 +0100 | ||
|
||
astropi (1.1.5-1) jessie; urgency=low | ||
|
||
* Initial release | ||
|
||
-- Serge Schneider <[email protected]> Fri, 03 Jul 2015 03:24:45 +0100 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Source: python-sense-hat | ||
Section: python | ||
Priority: optional | ||
Maintainer: Serge Schneider <[email protected]> | ||
Build-Depends: debhelper (>= 9~), dh-python, python-all (>= 2.6.6-3~), | ||
python-setuptools, python3-all, python3-setuptools | ||
Standards-Version: 4.3.0 | ||
Homepage: https://github.com/RPi-Distro/python-sense-hat | ||
Vcs-Git: git://github.com/RPi-Distro/python-sense-hat.git -b debian | ||
Vcs-Browser: https://github.com/RPi-Distro/python-sense-hat/tree/debian | ||
|
||
Package: python-sense-hat | ||
Architecture: all | ||
Depends: ${misc:Depends}, ${python:Depends}, python-rtimulib, python-pil, | ||
python-numpy | ||
Description: Sense HAT python library (Python 2) | ||
Python module to control the Sense HAT for the Raspberry Pi used | ||
in the Astro Pi mission - an education outreach programme for UK schools | ||
sending code experiments to the International Space Station | ||
. | ||
This package installs the library for Python 2. | ||
|
||
Package: python3-sense-hat | ||
Architecture: all | ||
Depends: ${misc:Depends}, ${python3:Depends}, python3-rtimulib, python3-pil, | ||
python3-numpy, python3-smbus | ||
Description: Sense HAT python library (Python 3) | ||
Python module to control the Sense HAT for the Raspberry Pi used | ||
in the Astro Pi mission - an education outreach programme for UK schools | ||
sending code experiments to the International Space Station | ||
. | ||
This package installs the library for Python 3. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: python-sense-hat | ||
Source: https://github.com/RPi-Distro/python-sense-hat | ||
|
||
Files: * | ||
Copyright: 2015 Raspberry Pi Foundation | ||
License: BSD-3-Clause | ||
|
||
License: BSD-3-Clause | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
3. Neither the name of the University nor the names of its contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HOLDERS OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/make -f | ||
# See debhelper(7) (uncomment to enable) | ||
# output every command that modifies files on the build system. | ||
#DH_VERBOSE = 1 | ||
|
||
DPKG_EXPORT_BUILDFLAGS = 1 | ||
include /usr/share/dpkg/default.mk | ||
|
||
|
||
export PYBUILD_NAME = sense-hat | ||
|
||
%: | ||
dh $@ --with python2,python3 --buildsystem=pybuild |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |
This file contains 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
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
ACTION_HELD, | ||
) | ||
|
||
__version__ = '2.2.0' | ||
__version__ = '2.3.1' |
Oops, something went wrong.