I had the idea today to add more colors to the TI-84 Plus CE. I haven't looked around for this, so someone may have already done it, but here's the gist of it:
I've used two For( loops (one inside the other) to alternate 2 different default colors, pixel by pixel. It ends up meshing the colors together. So far I have added 9 extra colors to the built-in 8 (that are in the rainbow). I'd like to add some more grays as well and possibly program a gimp-like app for the TI-84.
This is all written in basic. Here is a sample of the code:
Code:
I've used two For( loops (one inside the other) to alternate 2 different default colors, pixel by pixel. It ends up meshing the colors together. So far I have added 9 extra colors to the built-in 8 (that are in the rainbow). I'd like to add some more grays as well and possibly program a gimp-like app for the TI-84.
This is all written in basic. Here is a sample of the code:
Code:
For(X,~10,10,.1)
For(Y,~10,10,.2)
A*~1→A
If A=1
Pt-On(X,Y, 1ST COLOR
If A=~1
Pt-On(X,Y, 2ND COLOR
End
End