This repository was archived by the owner on Dec 16, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 12 files changed +17
-17
lines changed
Expand file tree Collapse file tree 12 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 11Display drivers for MicroPython.
22================================
33
4- Documentation available at http://udisplay .readthedocs.io/
4+ Documentation available at http://micropython-rgb .readthedocs.io/
Original file line number Diff line number Diff line change 4747master_doc = 'index'
4848
4949# General information about the project.
50- project = u'µDisplay '
50+ project = u'MicroPython RGB '
5151copyright = u'2016, Radomir Dopieralski'
5252
5353# The version info for the project you're documenting, acts as replacement for
Original file line number Diff line number Diff line change 11Display Module
22**************
33
4- .. module :: display
4+ .. module :: rgb
55
66Utilities
77=========
Original file line number Diff line number Diff line change 11List of Supported Displays
22**************************
33
4- .. module :: display
4+ .. module :: rgb
55
66All of those displays support the methods of the :class: `Display ` class.
77
Original file line number Diff line number Diff line change 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
99Contents:
1010
Original file line number Diff line number Diff line change 1- from display import DisplaySPI , color565
1+ from rgb import DisplaySPI , color565
22
33_SWRESET = const (0x01 )
44_NORON = const (0x13 )
Original file line number Diff line number Diff line change 11import ustruct
2- from display import DisplaySPI , color565
2+ from rgb import DisplaySPI , color565
33
44
55class ILI9341 (DisplaySPI ):
Original file line number Diff line number Diff line change 1- from display import DisplaySPI , color565
1+ from rgb import DisplaySPI , color565
22
33_SWRESET = const (0x01 )
44_DISPON = const (0x29 )
Original file line number Diff line number Diff line change 22
33
44setup (
5- name = 'udisplay ' ,
5+ name = 'rgb ' ,
66 py_modules = [
7- 'display ' ,
7+ 'rgb ' ,
88 'hx8353' ,
99 'ili9341' ,
1010 's6d02a1' ,
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)
Original file line number Diff line number Diff line change 1- from display import DisplaySPI , color565
1+ from rgb import DisplaySPI , color565
22
33
44_DRAWLINE = const (0x21 )
You can’t perform that action at this time.
0 commit comments