Merge remote-tracking branch 's/main'
This commit is contained in:
commit
a9a7bd139e
19
schedule/README.md
Normal file
19
schedule/README.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Schedule83
|
||||||
|
A schedule app for the TI-83/84(+) I use daily.
|
||||||
|
|
||||||
|
### Required software:
|
||||||
|
- [LBLWR](https://www.ticalc.org/archives/files/fileinfo/470/47097.html) (credit to [Zeda Thomas](https://github.com/Zeda) (they were also the first star on the project!))
|
||||||
|
- [TI-Connect](https://education.ti.com/en/products/computer-software/ti-connect-sw "ti.com")
|
||||||
|
|
||||||
|
### Installing a release:
|
||||||
|
01. Go to the releases page and grab SCHEDULE.8xp.
|
||||||
|
02. Go to the TICalc page for LblWR and grab that ZIP.
|
||||||
|
03. Extract that ZIP and grab LBLRW.8xp.
|
||||||
|
04. Install TI-Connect.
|
||||||
|
05. Plug in your calculator.
|
||||||
|
06. Open TI-Connect.
|
||||||
|
07. Open your file explorer and navigate to the directory with the files in it.
|
||||||
|
08. Copy LBLRW and SCHEDULE to your calculator.
|
||||||
|
09. Wait for the copy process to finish and wait an additional ten seconds for TI-Connect to finish calibration.
|
||||||
|
10. Unplug your calculator.
|
||||||
|
11. Enjoy.
|
83
schedule/SCHEDULE.txt
Normal file
83
schedule/SCHEDULE.txt
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
Disp "SCHEDULE","CODED BY","DEVEN BLAKE 2018
|
||||||
|
Pause
|
||||||
|
ClrHome
|
||||||
|
|
||||||
|
//Menu
|
||||||
|
Lbl M
|
||||||
|
0→Z
|
||||||
|
Menu("SCHEDULE","VIEW SCHEDULE",A,"EDIT SCHEDULE",B,"QUIT",C
|
||||||
|
Stop
|
||||||
|
|
||||||
|
//View
|
||||||
|
Lbl A
|
||||||
|
ClrHome
|
||||||
|
For(A,1,8
|
||||||
|
"!D:→Str1
|
||||||
|
A
|
||||||
|
Asm(prgmLBLRW
|
||||||
|
Output(A,1,Ans
|
||||||
|
End
|
||||||
|
0
|
||||||
|
While Ans≠21
|
||||||
|
getKey
|
||||||
|
If Ans≠0
|
||||||
|
Output(8,1,"2ND TO QUIT
|
||||||
|
End
|
||||||
|
Goto M
|
||||||
|
|
||||||
|
//Edit
|
||||||
|
Lbl B
|
||||||
|
ClrHome
|
||||||
|
Output(1,1,"1-8 TO EDIT
|
||||||
|
Output(2,1,"OTHERS TO QUIT
|
||||||
|
0→A
|
||||||
|
0
|
||||||
|
While Ans=0
|
||||||
|
getKey
|
||||||
|
If Ans=72
|
||||||
|
7→A
|
||||||
|
If Ans=73
|
||||||
|
8→A
|
||||||
|
If Ans=82
|
||||||
|
4→A
|
||||||
|
If Ans=83
|
||||||
|
5→A
|
||||||
|
If Ans=84
|
||||||
|
6→A
|
||||||
|
If Ans=92
|
||||||
|
1→A
|
||||||
|
If Ans=93
|
||||||
|
2→A
|
||||||
|
If Ans=94
|
||||||
|
3→A
|
||||||
|
End
|
||||||
|
If A=0
|
||||||
|
Goto M
|
||||||
|
ClrHome
|
||||||
|
Disp "ENTER NEW DATA
|
||||||
|
Input "",Str1
|
||||||
|
"D:"+Str1→Str1
|
||||||
|
A
|
||||||
|
Asm(prgmLBLRW
|
||||||
|
ClrHome
|
||||||
|
Disp "DATA CHANGED!
|
||||||
|
While Ans≠21
|
||||||
|
getKey
|
||||||
|
End
|
||||||
|
Goto M
|
||||||
|
|
||||||
|
//Quit
|
||||||
|
Lbl C
|
||||||
|
ClrHome
|
||||||
|
Stop
|
||||||
|
|
||||||
|
//Data
|
||||||
|
Lbl D
|
||||||
|
PERIOD ONE
|
||||||
|
PERIOD TWO
|
||||||
|
PERIOD THREE
|
||||||
|
PERIOD FOUR
|
||||||
|
PERIOD FIVE
|
||||||
|
PERIOD SIX
|
||||||
|
PERIOD SEVEN
|
||||||
|
PERIOD EIGHT
|
Loading…
Reference in New Issue
Block a user