Post topics, source code that relate to the Arduino Platform

User avatar
By chalupien
#3201 Hello all, Pretty sweet reliable module. I would like to see if anyone can help me get started on making an FTP connection. My goal is to upload a file to a server. I really don't know where to even start. Any direction would be great. ~Thank you
User avatar
By thedwarfer19
#4863 Hi

I was trying out this module and managed to get it to connect to my ftp server

Commands are as follows:

AT+CWMODE=3

AT+CWJAP=[WIFI SSID],[WIFI PASSWORD]

AT+CIPMUX=0

AT+CIPSTART="TCP","[FTP ADDRESS]",21

# at this point you will get the ftp server's welcome message in the terminal

AT+CIPMUX=0

AT+CIPSEND=[length in chars of the data]

# then you should see a > character

# and you enter the data to send


Sadly I ran into a roadblock at that point getting a syntax error no matter what data i send.

If you have any luck, maybe you could share your findings back here as I have