Без опису

Legimet 51f9f2d3bc Update to Duktape v2.3.0 6 роки тому
examples c66cd27f39 ADDED mini GFX lib 0.1 9 роки тому
.gitignore ef9d30a872 Add Mandelbrot demo 9 роки тому
COPYING 2573ffec13 * Add (incomplete) filesystem and keys modules 9 роки тому
COPYING.LESSER 2573ffec13 * Add (incomplete) filesystem and keys modules 9 роки тому
Makefile a7dca82bd1 Use newer lcd_blit API, add support for HW-W and classic 7 роки тому
README.md 16ae5eaf3f Add some usage information to README 7 роки тому
duk_config.h 51f9f2d3bc Update to Duktape v2.3.0 6 роки тому
duk_console.c 32e61fb804 Add console binding 7 роки тому
duk_console.h 32e61fb804 Add console binding 7 роки тому
duk_module_node.c d533c93191 Update to Duktape v2.2.0 7 роки тому
duk_module_node.h 350831b20f Node-like module system and other minor changes 7 роки тому
duk_print_alert.c cd4e739fb7 Actually add print/alert functions 7 роки тому
duk_print_alert.h cd4e739fb7 Actually add print/alert functions 7 роки тому
duktape.c 51f9f2d3bc Update to Duktape v2.3.0 6 роки тому
duktape.h 51f9f2d3bc Update to Duktape v2.3.0 6 роки тому
floodfill.h 21cc49ef3f Indentation change 8 роки тому
framebuffer.h 21cc49ef3f Indentation change 8 роки тому
fs.c f75cb205e3 Fix warnings from duk_throw 7 роки тому
fs.h 2573ffec13 * Add (incomplete) filesystem and keys modules 9 роки тому
main.c ef759b2889 Add console.readline() to read user input 7 роки тому
misc.c ef759b2889 Add console.readline() to read user input 7 роки тому
misc.h ef759b2889 Add console.readline() to read user input 7 роки тому
module.c 350831b20f Node-like module system and other minor changes 7 роки тому
module.h 350831b20f Node-like module system and other minor changes 7 роки тому
nsp_keys.c f75cb205e3 Fix warnings from duk_throw 7 роки тому
nsp_keys.h 3a62c0c685 Change header guard 9 роки тому
nsp_texture.c a7dca82bd1 Use newer lcd_blit API, add support for HW-W and classic 7 роки тому
nsp_texture.h d0e6724dad Add incomplete Texture class (still need to add setData and drawOnTo) 9 роки тому

README.md

Duktape-nspire 0.1.1

Duktape-nspire provides a JavaScript (ECMAScript) interpreter for the TI-Nspire handheld calculator. It combines the Duktape Javascript engine with a set of Nspire-specific modules and module support, and a REPL (using Nspire I/O for its interface).

Usage

The calculator must have Ndless installed. To get to the interactive Nspire I/O console, run Duktape directly from the document browser. Type .exit to exit.

You can also run scripts with a .js extension from the document browser. The extension should be registered with duktape. This is done automatically the first time you run Duktape from the document browser, but you can also register it manually by editing ndless.cfg.tns.

Modules

The following modules are available right now:

  • fs: Filesystem functions, compatible with the fs module of Node.js
  • nsp/keys: Functions for keyboard input
  • nsp/texture: Graphics support, compatible with the Texture class of the Nspire port of Micro Python

These modules are not complete, and more functions and modules will be added in the future.

License

Duktape-nspire is licensed under the GNU LGPL, version 3 or above:

Copyright (C) 2015 Legimet

This file is part of Duktape-nspire.

Duktape-nspire is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Duktape-nspire is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with Duktape-nspire. If not, see http://www.gnu.org/licenses/.

Duktape itself is licensed under the MIT License (Expat), which can be found in the file duktape.h.