New To Luafx/afx? You Can Ask Here.
#1
Posted 07 November 2011 - 05:52 PM
#2
Posted 13 May 2012 - 05:35 AM
You can post LuaFX/AFX related questions and problems here.
How to implement this program for Fx-9860GII?
#3
Posted 13 May 2012 - 08:12 AM
However, anybody tested it on fx-9860GII for the moment. When you will test it, could you tell me if it works well?
#4
Posted 13 May 2012 - 01:32 PM
I haven't tested till now and I want to know how to create G1A file using Lua.The program is designed for the calculators of the fx-9680 family, Lua should work on your calculator.
However, anybody tested it on fx-9860GII for the moment. When you will test it, could you tell me if it works well?
#5
Posted 13 May 2012 - 03:42 PM
You write the programs on your computer (an on-calc editor is being programmed) and you send them on your calculator to execute them (or you use the fx emulator)
I didn't have time before, but now I am writting the manuals in English and I hope I will soon release them.
#6
Posted 13 May 2012 - 04:57 PM
Sounds great....!You don't create G1A: you send a G1A on our calculator that will execute lua programs.
You write the programs on your computer (an on-calc editor is being programmed) and you send them on your calculator to execute them (or you use the fx emulator)
I didn't have time before, but now I am writting the manuals in English and I hope I will soon release them.
I have Lua FX on my calculator.
Can you give some examples on how to run lua?
#7
Posted 13 May 2012 - 08:24 PM
Sounds great....!
I have Lua FX on my calculator.
Can you give some examples on how to run lua?
print("Hello World")
#8
Posted 13 May 2012 - 11:24 PM
The program is designed for the calculators of the fx-9680 family, Lua should work on your calculator.
However, anybody tested it on fx-9860GII for the moment. When you will test it, could you tell me if it works well?
I have used it on my fx9860GII and it works great
print("Hello World")
Actually, that code will not work with luaFX.
You have to use the nbdraw.print function like this:
nbdraw.print = print print("hello world")
#9
Posted 14 May 2012 - 04:10 AM
This code is not working on my calculator.
Its returning with unexpected symbol.
I used Notepad++ and saved the file as example.lua
Please help.
Also post some examples like accessing RTC,Storing in list, mathematical calculations etc.
Thanks
#10
Posted 14 May 2012 - 09:19 AM
local print = nbdraw.printprint("hello world")repeat until key(5) -- wait we press exe
Also post some examples like accessing RTC,Storing in list, mathematical calculations etc.
We can't access the RTC (maybe in an other version)
There are no lists, but tables can be use in multiples ways and can be used like lists.
I include in the package a lua library that define functions sin, cos, tan, atan, asin, acos, ...
On internet, there are many english documentation on lua and examples on how to use tables, ... Try the links flyingfisch posted in the topic lua tutorials.
Notepad should work with lua, you just need a text editor.
However some text editor record their files in 16bits characters, make sure you only record 8bits characters.
Edited by veb, 14 May 2012 - 09:19 AM.
#11
Posted 14 May 2012 - 08:15 PM
flyingfisch : your code is wrong: try instead :
local print = nbdraw.printprint("hello world")repeat until key(5) -- wait we press exe
We can't access the RTC (maybe in an other version)
There are no lists, but tables can be use in multiples ways and can be used like lists.
I include in the package a lua library that define functions sin, cos, tan, atan, asin, acos, ...
On internet, there are many english documentation on lua and examples on how to use tables, ... Try the links flyingfisch posted in the topic lua tutorials.
Notepad should work with lua, you just need a text editor.
However some text editor record their files in 16bits characters, make sure you only record 8bits characters.
And remember than microsoft has convinced itself that normal quotes don't work, and that it must use "smart" quotes. Of course, no one else thinks this is a good idea, so it's not suppoerted outside of windows. (Which means they aren't on the calc either)
#12
Posted 03 February 2014 - 06:52 AM
#13
Posted 08 February 2014 - 10:16 AM
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users