whitecatboard / Lua-RTOS-ESP32

Lua RTOS for ESP32
Other
1.2k stars 221 forks source link

Delete files? #57

Closed bsuhel closed 7 years ago

bsuhel commented 7 years ago

We cant delete lua or xml or any files from Whitecat IDE. Only way is to end wccagent.exe and start putty. From "normal" editor than all command work normaly. Why hidening some stuf and why just not opened everything.? Where to find saved lua or xml files on computer, same problem.... Just download it on Download section.. If i use Whitecad editor some command are filtered(seems os.shell(false) ) why that? Thing is totaly useless in school if you block on that way..... Do you plan to support blue tooth on lua and whitecard IDE? What about DHT22 sensor? Don't protect against unwanted or stupid command, if we or students make mistake, we just flash it again.....

jolivepetrus commented 7 years ago

Hi @bsuhel,

Thanks for report this.

The Whitecat IDE is in alpha version. The reason to publish this tool to the community were to obtain feedback from the community.

Delete lua or xml or any files from Whitecat IDE: we will include this soon.

Where to find saved lua or xml files on computer: this is complex, because is browser-dependent and your desktop platform. From browsers we only have access to a sanboxed file system that is managed by the browser.

os.shell(false): The Whitecat IDE disables the shell for now.

BLE: this is an amazing feature, but complex. We want to include BLE support, but probably we will have a call to specs to the community before. Please, don't doubt to send us your specs.

DHT22: we will include this soon. We have commitments with some universities and schools for include support for 37 sensors/actuators by Novembre/2017.

I will close this issue now, and recreate-id in The Whitecat IDE project.

jolivepetrus commented 7 years ago

New issues:

https://github.com/whitecatboard/whitecat-ide/issues/7 https://github.com/whitecatboard/whitecat-ide/issues/6 https://github.com/whitecatboard/whitecat-ide/issues/5

bsuhel commented 7 years ago

Thank you for respond.

:).

On 28 July 2017 at 12:09, Jaume Olivé Petrus notifications@github.com wrote:

New issues:

whitecatboard/whitecat-ide#7 https://github.com/whitecatboard/whitecat-ide/issues/7 whitecatboard/whitecat-ide#6 https://github.com/whitecatboard/whitecat-ide/issues/6 whitecatboard/whitecat-ide#5 https://github.com/whitecatboard/whitecat-ide/issues/5

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/whitecatboard/Lua-RTOS-ESP32/issues/57#issuecomment-318614801, or mute the thread https://github.com/notifications/unsubscribe-auth/AI_mxnyaekaopJDARk3FYf2cBO_p6mZ-ks5sSbM7gaJpZM4OmIlS .

--

Mag. Boštjan Šuhel Kajuhova 3, SI3270 Laško, Slovenia MŠ: 6927840000 DŠ:98351133 ++386 (0) 64 11 22 00

Spletna stran https://sites.google.com/site/bostjansuhel/

jolivepetrus commented 7 years ago

Hi @bsuhel.

DHT22 sensor is supported from commit# https://github.com/whitecatboard/Lua-RTOS-ESP32/commit/b4e0543eda011405567f6be3040f6c3886deebc1.

jolivepetrus commented 6 years ago

Hi @bsuhel,

There is a new branch (https://github.com/whitecatboard/Lua-RTOS-ESP32/tree/ble) with a very, very, very, initial version about ble support in Lua RTOS.

The initial version has support for:

bt.attach(bt.mode.BLE)

bt.advertise(160, 160, bt.adv.ADV_IND, bt.ownaddr.Public, bt.peeraddr.Public, "808182838485", bt.chann.All, bt.filter.ConnAllScanAll, advData)

bt.reset()

b1 = bt.service.eddystone.uid("808182838485", 0xed, "3F3B51B60B88EF9949E5", "CF484185AE0B") b2 = bt.service.eddystone.url("808182838485", 0xed, "https://whitecatboard.org") b1:start() b2:start()

I know that is not too much, but please, take a look if anyone have time to give ideas.

Best regards,

Jaume