Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ase1590

Pages: [1]
1
TI-Nspire / Re: Would an NES emulator be possible on Nspire?
« on: March 15, 2011, 04:46:23 pm »
and source code included.
Nice!

2
TI-BASIC / Nspire basic- displaying equation rather than var
« on: March 08, 2011, 10:07:35 pm »
I am still learning the basics of scripting on my Nspire CAS calculator, and am having a problem getting my simple script to work properly

Code: [Select]
  1.
      Define evenodd(eq,var)=
   2.
      Prgm
   3.
      :Local even
   4.
      :©attempting even(-x)=4x+1 should give -4x+1
   5.
      :©I want to display an equation, not the variable "eq"
   6.
      :  even(var):=eq
   7.
      :Disp even(-var)
   8.
      :EndPrgm
after running evenodd() i do not get the expected result.
instead of evenodd(x2+x+1, x) returning x2-x+1 i get the variable eq returned to me.
Basically I am trying to use a function like f1(x)=x+2 in a program, only i want to be able to do it in a manner of f(x)=equation

3
Introduce Yourself! / Re: Hello!
« on: March 08, 2011, 09:41:00 pm »
Yes, I am the owner of an NSpire CAS
Right now I'm just getting the ti-basic scripting under my belt. As I progress, I may move to more complicated libraries over time, hard to say what exactly. I just create them on an as-need basis at the moment.

4
Introduce Yourself! / Hello!
« on: March 08, 2011, 09:24:58 pm »
Hello!
I am ase1590, and I am a beginning programmer. I have been lurking the forums for a few months, and decided I would make up an intro.
As I am a relatively newcomer to TI technology, I have been playing with making Libraries for my Nspire, and my natural inclination to extend the features of all the devices I own led me to here in my searching.

So Hello OmniMaga!

5
TI-Nspire / Re: Would an NES emulator be possible on Nspire?
« on: February 06, 2011, 01:21:27 pm »
Source would definitely be a plus, as there hasn't been much activity with this for a bit.

6
nDoom / Re: nDOOM - Work in progress
« on: February 06, 2011, 01:19:10 pm »
Just tried it out on my touch-pad. The extra gray-scale colors really makes a difference! Nice job!

7
nDoom / Re: nDOOM - Work in progress
« on: January 28, 2011, 05:47:08 pm »
Tried it on the Touchpad, but cant find the Use key.
I tried looking through source, but couldn't find any mention of it being there, unless I overlooked it.

edit:unless this is it, but I cant tell if it is for the touch or the click, unless it's universal.


Code: [Select]
if (isKeyPressed(KEY_NSPIRE_CTRL)) {
event.type= ev_keydown;
event.data1 = ' ';
D_PostEvent(&event);
} else {
event.type= ev_keyup;
event.data1 = ' ';
D_PostEvent(&event);

finally had time to try it, yup that was it, disregard post.

8
Ndless / Re: Ndless 2.0 for TI-Nspire Clickpad/Touchpad
« on: January 27, 2011, 07:15:39 pm »
The current build works correctly on the touchpad CAS on OS 2.1.0.631 which is the current latest OS version in case you didnt read my last post and edit

9
Ndless / Re: Ndless 2.0 for TI-Nspire Clickpad/Touchpad
« on: January 27, 2011, 06:42:32 pm »
You need OS 2.0.1.60, not 2.0.0.1188. 2.1.0.631 will work fine too. 2.0.0.1188 support was not added for safety measures (this OS has a very dangerous USB bug that can kill your calc, which probably explains 2.0.1.60 was released this fast after 2.0.0.1188 came out).
Interesting, well I will upgrade to 2.1.0.631 and see if his changes my results.
Thanks.

edit:success

10
Ndless / Re: Ndless 2.0 for TI-Nspire Clickpad/Touchpad
« on: January 27, 2011, 06:11:24 pm »
Also, I just compiled this to attempt to see if it was compatible with the CAS touchpad 2.0.0.118

It appears it is not. As I am not going to read back 25+ pages, I am assuming this is already old news?

Pages: [1]