Skip to content

Commit d57f7d3

Browse files
added module description
1 parent ea84de5 commit d57f7d3

File tree

6 files changed

+43
-14
lines changed

6 files changed

+43
-14
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
ti_python_module/__pycache__
44
/test.py
55
/ti-python-log.log
6-
/ti-python-settings.cfg
6+
/ti-python-settings.cfg
7+
test.py

ti_python_module/ti_draw.py

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
1+
"""
2+
TI DRAW
3+
----------
14
2-
from ti_python_module.err import withConsole as err
3-
from ti_python_module.err import onlyCheck as cerr
4-
from ti_python_module.file_handler import create_log as log
5-
import random as rng
5+
----------
66
7+
All the classes and functions from the Texas Instruments Drawing Module.
78
8-
"""
9-
Class containing all TI-Draw commands
9+
---------
10+
Info:
1011
1112
• The default configuration has (0,0) in the top left corner of the screen. The positive x-axis points to the right and the positive y-axis points to the bottom This can be modified by using the set_window() function.\n
1213
• The functions in ti_draw module are only available on the handheld and in handheld view on desktop
1314
"""
1415

16+
from ti_python_module.err import withConsole as err
17+
from ti_python_module.err import onlyCheck as cerr
18+
from ti_python_module.file_handler import create_log as log
19+
import random as rng
20+
21+
22+
1523

1624

1725
###########################################################################################

ti_python_module/ti_hub.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
1+
"""
2+
TI HUB
3+
----------
4+
5+
----------
6+
7+
All the classes and functions from the Texas Instruments TI-Innovator Hub.
8+
"""
19
from ti_python_module.err import withConsole as err
210
from ti_python_module.err import onlyCheck as cerr
311
from ti_python_module.file_handler import create_log as log
412
import time as t
513
import random as rng
6-
"""
7-
Class containing all TI-Hub commands. Used for debugging
8-
"""
914

1015

1116

1217
###########################################################################################
1318

1419
def text_at(line: int, text: str, align: str):
1520
"""
16-
Displays "text" in plotting area at specified "align".
21+
Displays "text" at specified "align".
1722
1823
Args:
1924
line (int): The line of the text. Possible Options: 'line, 'text', 'align'.

ti_python_module/ti_plotlib.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
"""
2-
Class containing all the TI Plotlib elements.
2+
TI PLOTLIB
3+
----------
4+
5+
----------
6+
7+
All the classes and functions from the Texas Instruments TI-Plotlib Module.
38
"""
49
from ti_python_module.file_handler import create_log as log
510
from ti_python_module.err import withConsole as err

ti_python_module/ti_rover.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
"""
2-
Class containing all TI-Rover commands. Used for debugging
2+
TI ROVER
3+
----------
4+
5+
----------
6+
7+
All the classes and functions from the Texas Instruments Rover.
38
"""
49
from ti_python_module.err import withConsole as err
510
from ti_python_module.err import onlyCheck as cerr

ti_python_module/ti_system.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
"""
2-
A class containing all the TI-System commands
2+
TI SYSTEM
3+
----------
4+
5+
----------
6+
7+
All the classes and functions from the Texas Instruments System Module.
38
"""
49
from ti_python_module.err import withConsole as err
510
from ti_python_module.err import onlyCheck as cerr

0 commit comments

Comments
 (0)