Disable FTP on WiPy
-
Hi to everyone.
There is a way to disable / enable ftp connection on the wipy module?
-
@Innocenzo Yes I believe so.
-
@bucknall is it the only way....right?
-
Hi @Innocenzo
You can find out about how to disable the FTP server here:
https://docs.pycom.io/pycom_esp32/library/network.Server.html?highlight=ftp#class-server
The snippet of code you need is as follows:
import network server = network.Server() server.deinit() # disable the server