-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can it send large .txt files of like 10 MB? #46
Comments
I'd say that FTP is better in SIM800L: easier.
Try with small files instead, divide the 10mb file in small files and send
them more often.
…On Sun 23 Aug 2020, 6:54 p.m. bhupiister ***@***.***> wrote:
Can it send large .txt files of like 10 MB?
I will try this code on ESP32 board. Since its working on Arduino, it
should work on esp32 too.
I want to store sensor data all day and at night want to push this sensor
data on server via FTP of HTTP post. Which is the recommended method ?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#46>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABBWFOBF2IRLIYVLCUOFEYDSCFCTBANCNFSM4QIYEMUQ>
.
|
I wanted some library that could do this division part. |
Came across this code today for large files, will test it. See if you can get something from it to improve your library. #include <SD.h> #define csSD 5 bool debug = 1; void setup() { //init SD Card //check if file arivle //GPRS part void loop() { } byte initSim900() { byte initSim900FTP() { byte Sim900FTPSend (){
} unsigned char sendATcommand(char* ATcommand, char* expected_answer1, unsigned int timeout) { byte powerUp_Sim900() { byte powerDown_Sim900() { void powerSim900() { char* string2char(String command){ byte checkFile() { |
It means that the max chunk size is 1360 bytes per request.
Try writing small files (some Kb) more often and upload them. Do not try to
divide the 10mb one.
…On Sun 23 Aug 2020, 7:48 p.m. bhupiister ***@***.***> wrote:
I wanted some library that could do this division part.
After putting this command
AT+FTPPUT=1
OK
+FTPPUT: 1,1,1360
Does this mean that maximum bytes that can be sent is 1360?
How can we divide a file then?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#46 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABBWFOHKRXYJUMFJ7XD4U33SCFI7LANCNFSM4QIYEMUQ>
.
|
Hello, have you solve this problem?. I want to send a big picture file by ftp with sim800l and esp32 (not wifi). Please, can you write your final code source?. Thanks. |
Can it send large .txt files of like 10 MB?
I will try this code on ESP32 board. Since its working on Arduino, it should work on esp32 too.
I want to store sensor data all day and at night want to push this sensor data on server via FTP of HTTP post. Which is the recommended method ?
The text was updated successfully, but these errors were encountered: