-
Notifications
You must be signed in to change notification settings - Fork 215
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
HTTP-601 - Arduino Nano #325
Comments
I am aware of the sprintf issue, that has been fixed. same result unfortunately |
My suspicion is the port - you are using port 3000. Please try accessing
the front page of any website (e.g. google.com or microsoft.com on) on port
80 first. Narrow the problem down. If you can access google on port 80,
then try accessing your server on port 80. If you can access your server on
port 80, but not on port 3000 then it is a firewall issue. You have opened
port 3000 on the receiving server, right?
…On Sun, Aug 6, 2023 at 6:19 AM Christopher Allen ***@***.***> wrote:
I am aware of the sprintf issue, that has been fixed. same result
unfortunately
—
Reply to this email directly, view it on GitHub
<#325 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFAGDCTVKYNILQX34B47DCDXT4SPJANCNFSM6AAAAAA3FT2YJA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Changing my code to request only http://google.com results in the same failed error.
In my original question, I poised that the default code provided by botletics works just fine, even with my URL.
It is unclear what/if I am missing to make this issue occur. |
It would help for you to post more of your serial monitor to troubleshoot. Code 601 usually means your device isn't actually connected to the internet, usually by an unsuccessful "enableGPRS(true)" |
I have taken pieces of the Bioletics SIM7000 Demo Code in an attempt to get temperature data from my arduino to a Node.JS Server with automation.
When running the bioletics demo code, the following commands function perfectly, I run the following order.
G (enable GMRS data) - w (get) -> http://23.94.248.142:3000/test ( this test appears on my webserver console just fine)
The following code takes the setup of the normal bioletics file, combines it with a SHT31 temperature probe and attempts to transmit it.
The result is unfortunately a 601 error.
---> AT+HTTPTERM <--- OK ---> AT+HTTPINIT <--- OK ---> AT+HTTPPARA="CID" <--- OK ---> AT+HTTPPARA="UA" <--- OK ---> AT+HTTPPARA="URL" <--- OK ---> AT+HTTPACTION=0 <--- OK Status: 601 Len: 0 ---> AT+HTTPREAD <--- OK Failed!
I was expecting the typical response from my server of "URL logged to the console.".
Unfortunately I get a 601.
What am I doing wrong?
Thank you for any help you can provide.
The text was updated successfully, but these errors were encountered: