Difference between revisions of "Main Page"

From Inspired-Lua Wiki
Jump to navigation Jump to search
(OS 4.2 update)
(43 intermediate revisions by 7 users not shown)
Line 1: Line 1:
'''Welcome to the Inspire-Lua Wiki''', the only place to know everything about Lua programming on the TI-Nspire !
+
'''Welcome to the Inspired-Lua.org Wiki''' !<br />
 +
Here, you can learn "everything" about Lua scripting on the TI-Nspire platform ! Since this is a wiki, you're welcome to contribute ;)
  
Please Note that the wiki is not finished at all... to see an example of a function's specific documentation; please read the [[gc:drawString]] page.
+
This website is not official but is considered a great source of information. <br /> Its goal is to gather official information (from [http://education.ti.com/nspire/scripting-api TI's pdf documentation], mainly) and also to explain things further, with more details and examples.
  
== Categories  ==
+
An overview of the TI-Nspire Lua Scripting API is available here : [[Overview of the API]]
  
[[:Category:Standard Library|Standard Library]]
+
'''News''' :
 +
* [June 7th, 2012] : TI-Nspire OS 3.2 is released, with major updates to the Lua API. You can see [[Changes in OS 3.2|what's changed here]].<br />
 +
* [February 7th, 2013] : TI-Nspire iPad applications released, which came with OS 3.4, in which the Lua API got updated a bit. You can see [[Changes in OS 3.4|what's changed here]].
 +
* [December 10th, 2013] : TI-Nspire OS 3.6 is released, which changed the Lua API a little bit. You can see [[Changes in OS 3.6|what's changed here]].
 +
* [June 25th, 2014] : TI-Nspire OS 3.9 is released, with minor changes to the Lua API. You can see [[Changes in OS 3.9|what's changed here]].
 +
* [August 25th, 2014] : TI-Nspire for iPad version 3.11 is released, with changes to the Lua API related to [[:Category:BLE|BLE]] features. You can see [[Changes in OS 3.11|what's changed here]].
 +
* [March 6th, 2015] : TI-Nspire for iPad version 4.1 is released, with minor changes to the Lua API related to [[:Category:BLE|BLE]] features (Advertisement data, RSSI, timeout for connect procedure).
 +
* [February 16th, 2016] : TI-Nspire OS 4.2 is released, with major new features to the Lua API related to peripheral I/O ([[:Category:ASI|ASI]], "Asynchronous Serial Interface") mainly.  You can see [[Changes in OS 4.2|what's changed here]].
  
[[:Category:Events|Events]]
+
== Categories  ==
 
 
[[:Category:cursor|cursor]]
 
 
 
[[:Category:clipboard|clipboard]]
 
 
 
[[:Category:D2Editor|D2Editor]]
 
 
 
[[:Category:document|document]]
 
 
 
[[:Category:gc|gc]]
 
 
 
[[:Category:image|image]]
 
  
[[:Category:locale|locale]]  
+
{| cellspacing="0" cellpadding="1" class="wikitable" style="width: 500px;"
 +
|-
 +
| width="64" height="64" | [[Image:Lua-logo.gif|64x64px|Lua-logo.gif]]
 +
| [[Overview of the API|Standard Library]]
 +
| The standard Lua functions
 +
|-
 +
| width="64" height="64" | [[Image:Lua-logo.gif|64x64px|Lua-logo.gif]]
 +
| [[:Category:Extended Standard Library|Extended Standard Library]]
 +
| Some functions that TI added to the standard Lua library
 +
|-
 +
| [[Image:Timer-icon.gif|64x64px|Timer-icon.gif]]
 +
| [[timer|Timer]]
 +
| The integrated timer
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]  
  
[[:Category:platform|platform]]  
+
| [[Events|Events]]
 +
| Platform Events
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]
 +
| [[gc|Graphics context]]
 +
| Draw on the screen with gc
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]
 +
| [[platform|Platform]]
 +
| Get and manage platform information
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]
 +
| [[image|Image]]
 +
| The image library
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]  
 +
| [[Physics Engine|Physics]]
 +
| A Physics Engine !
 +
|-
  
[[:Category:timer|timer]]  
+
| [[Image:Rtf icon.png|64x64px|Rtf icon.png]]
 +
| [[D2Editor|D2Editor]]
 +
| A rich text editor
 +
|-
 +
| [[Image:Locale.png|64x64px|Locale.png]]
 +
| [[locale|Locale]]
 +
| Get Locale information
 +
|-
 +
| [[Image:Clipboard-Paste-icon.png|67x67px|Clipboard-Paste-icon.png]]
 +
| [[clipboard|Clipboard]]
 +
| Add and get text from the clipboard
 +
|-
 +
| [[Image:File.png|64x64px|File.png]]
 +
| [[var|Var]]
 +
| Manage files in the local document
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]
 +
| [[document|Document]]
 +
| Set global document flags
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]  
  
[[:Category:toolpalette|toolpalette]]  
+
| [[toolpalette|Tool Palette]]
 +
| An easy to manage menu
 +
|-
 +
| width="64" height="64" | [[Image:Logo1-icon.png|64x64px|Logo1-icon.png]]
 +
| [[cursor|Cursor]]
 +
| Change or hide the cursor
 +
|}
  
[[:Category:var|var]]
+
<br>

Revision as of 05:22, 19 February 2016

Welcome to the Inspired-Lua.org Wiki !
Here, you can learn "everything" about Lua scripting on the TI-Nspire platform ! Since this is a wiki, you're welcome to contribute ;)

This website is not official but is considered a great source of information.
Its goal is to gather official information (from TI's pdf documentation, mainly) and also to explain things further, with more details and examples.

An overview of the TI-Nspire Lua Scripting API is available here : Overview of the API

News :

  • [June 7th, 2012] : TI-Nspire OS 3.2 is released, with major updates to the Lua API. You can see what's changed here.
  • [February 7th, 2013] : TI-Nspire iPad applications released, which came with OS 3.4, in which the Lua API got updated a bit. You can see what's changed here.
  • [December 10th, 2013] : TI-Nspire OS 3.6 is released, which changed the Lua API a little bit. You can see what's changed here.
  • [June 25th, 2014] : TI-Nspire OS 3.9 is released, with minor changes to the Lua API. You can see what's changed here.
  • [August 25th, 2014] : TI-Nspire for iPad version 3.11 is released, with changes to the Lua API related to BLE features. You can see what's changed here.
  • [March 6th, 2015] : TI-Nspire for iPad version 4.1 is released, with minor changes to the Lua API related to BLE features (Advertisement data, RSSI, timeout for connect procedure).
  • [February 16th, 2016] : TI-Nspire OS 4.2 is released, with major new features to the Lua API related to peripheral I/O (ASI, "Asynchronous Serial Interface") mainly. You can see what's changed here.

Categories

Lua-logo.gif Standard Library The standard Lua functions
Lua-logo.gif Extended Standard Library Some functions that TI added to the standard Lua library
Timer-icon.gif Timer The integrated timer
Logo1-icon.png Events Platform Events
Logo1-icon.png Graphics context Draw on the screen with gc
Logo1-icon.png Platform Get and manage platform information
Logo1-icon.png Image The image library
Logo1-icon.png Physics A Physics Engine !
Rtf icon.png D2Editor A rich text editor
Locale.png Locale Get Locale information
Clipboard-Paste-icon.png Clipboard Add and get text from the clipboard
File.png Var Manage files in the local document
Logo1-icon.png Document Set global document flags
Logo1-icon.png Tool Palette An easy to manage menu
Logo1-icon.png Cursor Change or hide the cursor