File tree Expand file tree Collapse file tree 6 files changed +43
-14
lines changed
Expand file tree Collapse file tree 6 files changed +43
-14
lines changed Original file line number Diff line number Diff line change 33ti_python_module /__pycache__
44/test.py
55/ti-python-log.log
6- /ti-python-settings.cfg
6+ /ti-python-settings.cfg
7+ test.py
Original file line number Diff line number Diff line change 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###########################################################################################
Original file line number Diff line number Diff line change 1+ """
2+ TI HUB
3+ ----------
4+
5+ ----------
6+
7+ All the classes and functions from the Texas Instruments TI-Innovator Hub.
8+ """
19from ti_python_module .err import withConsole as err
210from ti_python_module .err import onlyCheck as cerr
311from ti_python_module .file_handler import create_log as log
412import time as t
513import random as rng
6- """
7- Class containing all TI-Hub commands. Used for debugging
8- """
914
1015
1116
1217###########################################################################################
1318
1419def 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'.
Original file line number Diff line number Diff line change 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"""
49from ti_python_module .file_handler import create_log as log
510from ti_python_module .err import withConsole as err
Original file line number Diff line number Diff line change 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"""
49from ti_python_module .err import withConsole as err
510from ti_python_module .err import onlyCheck as cerr
Original file line number Diff line number Diff line change 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"""
49from ti_python_module .err import withConsole as err
510from ti_python_module .err import onlyCheck as cerr
You can’t perform that action at this time.
0 commit comments