FTP
-
I cannot connect to my LoPy with FTP in passive mode. It just hangs. I have however been flashing both over serial with the Atom PyMakr plugin and over Wifi with the PyBytes web console. Do I need to set the device up as an access point first to use FTP?
-
@brady-aiello You have to change it on the xxPy device. I usuall switch to station mode in my boot.py script and connect the xxPy device to my home AP.
-
@robert-hh Thank you! I found out that it was using a different FTP address (192.168.4.69 instead of 192.168.4.1) and I don't know how to change it. It seems to not care about the pymakr.conf file.
-
@brady-aiello The device is working as AP by default. You may have to activate it once with
import pycom
pycom.wifi_on_boot(True)
-
@jmarcelino you seem to be the expert :-)