Skip to content
This repository was archived by the owner on Dec 16, 2018. It is now read-only.

Commit a5a2616

Browse files
author
Radomir Dopieralski
committed
Rename the library to rgb
1 parent 5339996 commit a5a2616

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Display drivers for MicroPython.
22
================================
33

4-
Documentation available at http://udisplay.readthedocs.io/
4+
Documentation available at http://micropython-rgb.readthedocs.io/

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
master_doc = 'index'
4848

4949
# General information about the project.
50-
project = u'µDisplay'
50+
project = u'MicroPython RGB'
5151
copyright = u'2016, Radomir Dopieralski'
5252

5353
# The version info for the project you're documenting, acts as replacement for

docs/display.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Display Module
22
**************
33

4-
.. module:: display
4+
.. module:: rgb
55

66
Utilities
77
=========

docs/displays.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
List of Supported Displays
22
**************************
33

4-
.. module:: display
4+
.. module:: rgb
55

66
All of those displays support the methods of the :class:`Display` class.
77

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
Welcome to µDisplay's documentation!
7-
====================================
6+
Welcome to MicroPython RGB's documentation!
7+
===========================================
88

99
Contents:
1010

hx8353.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from display import DisplaySPI, color565
1+
from rgb import DisplaySPI, color565
22

33
_SWRESET = const(0x01)
44
_NORON = const(0x13)

ili9341.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import ustruct
2-
from display import DisplaySPI, color565
2+
from rgb import DisplaySPI, color565
33

44

55
class ILI9341(DisplaySPI):

s6d02a1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from display import DisplaySPI, color565
1+
from rgb import DisplaySPI, color565
22

33
_SWRESET = const(0x01)
44
_DISPON = const(0x29)

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33

44
setup(
5-
name='udisplay',
5+
name='rgb',
66
py_modules=[
7-
'display',
7+
'rgb',
88
'hx8353',
99
'ili9341',
1010
's6d02a1',
@@ -13,14 +13,14 @@
1313
'st7735',
1414
],
1515
version="1.0.0",
16-
description="Drivers for displays for MicroPython.",
16+
description="Drivers for RGB displays for MicroPython.",
1717
long_description="""\
18-
This library lets you use a number of popular displays with MicroPython.""",
18+
This library lets you use a number of popular RGB displays with MicroPython.""",
1919
author='Radomir Dopieralski',
2020
author_email='micropython@sheep.art.pl',
2121
classifiers = [
2222
'Programming Language :: Python :: 3',
2323
'License :: OSI Approved :: MIT License',
2424
],
25-
url="https://bitbucket.org/thesheep/micropython-display",
25+
url="https://bitbucket.org/thesheep/micropython-rgb",
2626
)

ssd1331.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from display import DisplaySPI, color565
1+
from rgb import DisplaySPI, color565
22

33

44
_DRAWLINE = const(0x21)

0 commit comments

Comments
 (0)