File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -52,37 +52,37 @@ def __init__(
52
52
53
53
@property
54
54
def key (self ):
55
- """ Getter for feed key """
55
+ """ Getter for feed key. Will give the value of the feed key """
56
56
return self ._key
57
57
58
58
@key .setter
59
59
def key (self , value ):
60
- """ Setter for feed key """
60
+ """ Setter for feed key. Sets a new value for the feed key property _key """
61
61
self ._key = value
62
62
63
63
@property
64
64
def text (self ):
65
- """ Getter for text ready to be formatted """
65
+ """ Getter for text ready to be formatted. Will give the feed text """
66
66
return self ._text
67
67
68
68
@text .setter
69
69
def text (self , value ):
70
- """ Setter for text ready to be formatted """
70
+ """ Setter for text ready to be formatted. Allows to change the feed text """
71
71
self ._text = value
72
72
73
73
@property
74
74
def callback (self ):
75
- """ Getter for callback function """
75
+ """ Getter for callback function. Returns the feed callback """
76
76
return self ._callback
77
77
78
78
@callback .setter
79
79
def callback (self , value ):
80
- """ Setter for callback function """
80
+ """ Setter for callback function. Changes the feed callback """
81
81
self ._callback = value
82
82
83
83
@property
84
84
def color (self ):
85
- """ Getter for text color callback function """
85
+ """ Getter for text color callback function. Will return the color for the feed """
86
86
return self ._color
87
87
88
88
@color .setter
Original file line number Diff line number Diff line change 5
5
.. use this format as the module name: "adafruit_foo.foo"
6
6
7
7
.. automodule :: adafruit_dash_display
8
- :members:
8
+ :members:
9
+ :member-order: bysource
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ Ensure your device works with this simple test.
7
7
:caption: examples/dash_display_simpletest.py
8
8
:linenos:
9
9
10
+ Advanced example
11
+ ----------------
12
+
13
+ This illustrates more features of the library
14
+
10
15
.. literalinclude :: ../examples/dash_display_advancedtest.py
11
16
:caption: examples/dash_display_advancedtest.py
12
17
:linenos:
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ Table of Contents
24
24
.. toctree ::
25
25
:caption: Tutorials
26
26
27
+ Adafruit IO IOT Hub with the Adafruit FunHouse <https://learn.adafruit.com/adafruit-io-hub-with-the-adafruit-funhouse >
28
+
27
29
.. toctree ::
28
30
:caption: Related Products
29
31
You can’t perform that action at this time.
0 commit comments