From 0b8fa42822f157e9aca43077ae404c528b5b9b92 Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Thu, 30 Aug 2018 20:42:57 -0400 Subject: [PATCH 01/10] Initial commit --- schedule/README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 schedule/README.md diff --git a/schedule/README.md b/schedule/README.md new file mode 100644 index 0000000..32e2684 --- /dev/null +++ b/schedule/README.md @@ -0,0 +1,2 @@ +# Schedule83 +A schedule app for the TI-83/84(+) I use daily. From 9d13bbc5dd5722a9b31a1d1be0f250f1201e036e Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Thu, 30 Aug 2018 20:45:37 -0400 Subject: [PATCH 02/10] Source code --- schedule/SCHEDULE.txt | 82 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 schedule/SCHEDULE.txt diff --git a/schedule/SCHEDULE.txt b/schedule/SCHEDULE.txt new file mode 100644 index 0000000..4142af8 --- /dev/null +++ b/schedule/SCHEDULE.txt @@ -0,0 +1,82 @@ +Disp "SCHEDULE","CODED BY","DEVEN BLAKE 2018 +Pause +ClrHome + +//Menu +Lbl M +0→Z +Menu("LHS 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 +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 From 5b9a9997c58419f15066ed0e6b9aab4abd015afc Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Thu, 30 Aug 2018 21:00:00 -0400 Subject: [PATCH 03/10] Update README.md --- schedule/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/schedule/README.md b/schedule/README.md index 32e2684..6d47273 100644 --- a/schedule/README.md +++ b/schedule/README.md @@ -1,2 +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) +- [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 your game! From 7ab8cb0d79b177cae83436886ae6abafe85991ef Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Thu, 30 Aug 2018 21:03:22 -0400 Subject: [PATCH 04/10] Update README.md --- schedule/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schedule/README.md b/schedule/README.md index 6d47273..02c9cac 100644 --- a/schedule/README.md +++ b/schedule/README.md @@ -2,7 +2,7 @@ A schedule app for the TI-83/84(+) I use daily. ### Required software: -- [LBLWR](https://www.ticalc.org/archives/files/fileinfo/470/47097.html) +- [LBLWR](https://www.ticalc.org/archives/files/fileinfo/470/47097.html) (credit to [Zeda Thomas](https://www.ticalc.org/archives/files/authors/106/10625.html)) - [TI-Connect](https://education.ti.com/en/products/computer-software/ti-connect-sw "ti.com") ### Installing a release: From c3370c1206cc1d276e76d5433482292a8905857e Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Thu, 30 Aug 2018 21:26:37 -0400 Subject: [PATCH 05/10] Fixed stupid error --- schedule/SCHEDULE.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/schedule/SCHEDULE.txt b/schedule/SCHEDULE.txt index 4142af8..618d281 100644 --- a/schedule/SCHEDULE.txt +++ b/schedule/SCHEDULE.txt @@ -22,6 +22,7 @@ While Ans≠21 getKey If Ans≠0 Output(8,1,"2ND TO QUIT + End Goto M //Edit From aac444b3729c3c5cf432dafe52937b361b1691cd Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Fri, 31 Aug 2018 19:46:45 -0400 Subject: [PATCH 06/10] Removed branding specific to one school --- schedule/SCHEDULE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schedule/SCHEDULE.txt b/schedule/SCHEDULE.txt index 618d281..c36d271 100644 --- a/schedule/SCHEDULE.txt +++ b/schedule/SCHEDULE.txt @@ -5,7 +5,7 @@ ClrHome //Menu Lbl M 0→Z -Menu("LHS SCHEDULE","VIEW SCHEDULE",A,"EDIT SCHEDULE",B,"QUIT",C +Menu("SCHEDULE","VIEW SCHEDULE",A,"EDIT SCHEDULE",B,"QUIT",C Stop //View From 9181c0ed55b2eca8d51d156c726cdc50ddf1c4bc Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Mon, 3 Sep 2018 22:11:42 -0400 Subject: [PATCH 07/10] Update SCHEDULE.txt --- schedule/SCHEDULE.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/schedule/SCHEDULE.txt b/schedule/SCHEDULE.txt index c36d271..d604479 100644 --- a/schedule/SCHEDULE.txt +++ b/schedule/SCHEDULE.txt @@ -69,6 +69,7 @@ Goto M //Quit Lbl C ClrHome +" Stop //Data From 8abc92c999ee9f605314cfbe23338421691994e2 Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Tue, 4 Sep 2018 11:45:50 -0400 Subject: [PATCH 08/10] Update SCHEDULE.txt --- schedule/SCHEDULE.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/schedule/SCHEDULE.txt b/schedule/SCHEDULE.txt index d604479..c36d271 100644 --- a/schedule/SCHEDULE.txt +++ b/schedule/SCHEDULE.txt @@ -69,7 +69,6 @@ Goto M //Quit Lbl C ClrHome -" Stop //Data From 13879ebab769452b61f52d8f339c7aeff778e1b9 Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Fri, 1 Nov 2019 11:25:45 -0400 Subject: [PATCH 09/10] Update README.md I copy-pasted this quickstart from ZONK and forgot to edit out the "game" part. --- schedule/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schedule/README.md b/schedule/README.md index 02c9cac..800ab98 100644 --- a/schedule/README.md +++ b/schedule/README.md @@ -16,4 +16,4 @@ A schedule app for the TI-83/84(+) I use daily. 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 your game! +11. Enjoy. From b7d3c5d947a5ef31fede9d39b6de5ffa571c2244 Mon Sep 17 00:00:00 2001 From: Deven Blake Date: Fri, 18 Sep 2020 16:29:43 -0400 Subject: [PATCH 10/10] Update README.md --- schedule/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schedule/README.md b/schedule/README.md index 800ab98..bd76a60 100644 --- a/schedule/README.md +++ b/schedule/README.md @@ -2,7 +2,7 @@ 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://www.ticalc.org/archives/files/authors/106/10625.html)) +- [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: