Hey so I was using the online you know TI link thing and it can't send pictures
So I am asking if anyone can maybe make a program that takes hex from a 8xi variable you know like when you run it with source coder and then it gives you the hexadecimal and two parts it's supposed to be for axe but I need a TI basic program that will draw it

Will somebody please help
Maybe have the raw hexadecimal parts in string 1 and 2 and then it will just draw it out and then save the graph to a variable let's say pick nine
You don't know StorePic and RecallPic???
No that's not the problem I know recall picking store pic but I don't I have a hexadecimal string bitmap for the whole screen and I don't know how to implement that
I don't really understand what you're asking but this sounds kind of like SD Picture Viewer https://www.cemetech.net/forum/viewtopic.php?t=20334&start=0
Nourayenner wrote:
No that's not the problem I know recall picking store pic but I don't I have a hexadecimal string bitmap for the whole screen and I don't know how to implement that


First, you are able to absorb a pic variable using [Pic1^r] and store the address.
(The Pic1 can be found under [vars]>[pictures].)

Then to display it you just use a for loop of Pt-On(). Just make sure to multiply the increment by 8 and not 16, I made that mistake before with a project and it was a nightmare to troubleshoot.

Example Code

Code:
.B
ClrDraw
[Pic1^r]->A
Pt-On(0,0,A)
DispGraph


Edit: I didn't have time to clarify, but the Pt-On displays a 8x8 sprite. So if you use a for loop for the x and y axis, you can display the whole picture.

Example Code:

Code:
For(Y,0,5)
For(X,0,11)
Pt-On(X*8,Y*8,A+(Y*12+X*8))
End
End
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement