Search found 847 matches

by OutoftheBOTS_
Sun Dec 31, 2017 10:39 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

I have installed the nppftp plugin for note++ and connected it to the esp32 use passive binary ftp insecure and it connects fine and shows me the contents of the esp32 and I can create directories and remove directories and can delete files on the esp32 but it fails when it tries to upload or down l...
by OutoftheBOTS_
Sun Dec 31, 2017 10:09 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

It looks like note++ has a plugin called nppftp that allows you to edit remote files over ftp directly without needing filezilla.
by OutoftheBOTS_
Sun Dec 31, 2017 1:46 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

@loboris Your a freaking genius :)
I just tried it and it works perfectly :)
by OutoftheBOTS_
Sun Dec 31, 2017 1:11 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

or possibly a clear memory function that will clear all variables and modules in python memory.
by OutoftheBOTS_
Sun Dec 31, 2017 12:54 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

unfortunately that didn't work. It seems that once you import the module it puts it in memory and doesn't care if it has been deleted from the flash file system or not and it doesn't reload it when imported again. It would be great if when you import a module that has already been imported it will r...
by OutoftheBOTS_
Sun Dec 31, 2017 11:58 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

Ok I now have filezilla setup so that I can edit the py files on the esp32 board with my preferred editor using ftp and I can get a wifi repl prompt with putty using telnet. Now I just have 1 problem left. It seems that to run a py file that I have edited I have to import it but then if I edit it ag...
by OutoftheBOTS_
Sun Dec 31, 2017 11:27 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

Ok I don't know what has changed but filezilla will now login to ESP32 and I can transfer files to the esp32 wireless now :)
by OutoftheBOTS_
Sun Dec 31, 2017 10:49 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

from linux I ran ftp -p 192.168.1.109 then typed in the user and password and got this respoce Remote system type is UNIX. Using binary mode to transfer files. I then typed ls and got this respoce ftp> ls 227 (192,168,1,109,7,232) 150 drw-rw-r-- 1 root root 0 Jan 01 1970 flash 226 edit seems if I ty...
by OutoftheBOTS_
Sun Dec 31, 2017 10:15 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

I have repl working properly using PuTTY but are unable to get ftp working using filezilla. I ran this line of code and it returned true network.ftp.start(user="micro",password="python",buffsize=1024,timeout=300) I have the filezilla settings exactly as in the docs, this is the response filezilla gi...
by OutoftheBOTS_
Sun Dec 31, 2017 6:41 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 531615

Re: MicroPython on ESP32 with SPIRAM support

my main thing is my robots r mobile running on batteries so I am hoping to cut the cord. With ESP8266 I could use WebRepl and with RPi I use WinSCP. So far for ESP32 I have been using ampy and PuTTy serial. I was hoping to be able to transfer files wireless using FTP. On Ubuntu I did connect success...