Error when trying to use the thingspeak-arduino ESP32 Eaxmples - WriteSingl​eFieldSecu​re.ino

조회 수: 19 (최근 30일)
When I try compile and run the example file
WriteSingleFieldSecure.ino
I get the following error:
Compilation error: 'WiFi' was not declared in this scope
If I add
#include <WiFi.h>
at the top, it compiles but the code does not work.
This is the output I get:
09:41:36.694 -> WARNING: This library doesn't support SSL connection to ThingSpeak. Default HTTP Connection used.
09:41:36.831 -> Attempting to connect to SSID: My-SSID
09:41:36.831 -> .
09:41:41.838 -> Connected.
09:41:41.884 -> Problem updating channel. HTTP error code -301
09:42:01.864 -> Problem updating channel. HTTP error code -301
Additionally I tried the example file
WriteMultipleFieldsSecure.ino
but got similar results.
I would like to be able to write fields securely to ThingSpeak using ESP32. How do I do this?
  댓글 수: 8
Jungle Jim
Jungle Jim 2024년 9월 24일
Hi @Umar,
Thanks for that link on the other site. It does help a little. but I'm still struggling to get the correct certificate of Mathworks to use in my code.
Those examples that Mathworks provided here: https://github.com/mathworks/thingspeak-arduino/tree/master/examples/ESP32 and in particular this one does not work: examples/ESP32/WriteSingleFieldSecure/WriteSingleFieldSecure.ino
Umar
Umar 2024년 9월 25일
편집: Umar 2024년 9월 26일

Hi @Jungle Jim,

I did some research and let me address the issues you're facing with the WriteSingleFieldSecure.ino example,

Include Necessary Libraries: Make sure you have included both the WiFi.h and WiFiClientSecure.h libraries at the top of your code:



#include <WiFi.h>
#include <WiFiClientSecure.h>


Correct API Endpoint: Verify that you are using the correct ThingSpeak API endpoint. The HTTP error code -301 indicates that the URL may have changed. The correct endpoint for secure connections is:

 const char* server = "api.thingspeak.com";



Use SSL for Secure Connections: Modify your HTTP request function to utilize SSL. Here’s a basic example of how to set up a secure connection:

 WiFiClientSecure client;

client.setInsecure(); // Use this for testing; for production, use a     valid certificate
if (!client.connect(server, 443)) {
  Serial.println("Connection failed");
  return;
}


Certificate Handling: If you need to use a specific certificate, you can obtain it from the ThingSpeak documentation or their support.

Please let me know if you have any further questions.

댓글을 달려면 로그인하십시오.

답변 (1개)

Jungle Jim
Jungle Jim 2024년 9월 25일
When I try compile and run the example file
WriteSingleFieldSecure.ino
I get the following error:
Compilation error: 'WiFi' was not declared in this scope
If I add
#include <WiFi.h>
at the top, it compiles but the code does not work.
This is the output I get:
09:41:36.694 -> WARNING: This library doesn't support SSL connection to ThingSpeak. Default HTTP Connection used.
09:41:36.831 -> Attempting to connect to SSID: My-SSID
09:41:36.831 -> .
09:41:41.838 -> Connected.
09:41:41.884 -> Problem updating channel. HTTP error code -301
09:42:01.864 -> Problem updating channel. HTTP error code -301
Additionally I tried the example file
WriteMultipleFieldsSecure.ino
but got similar results

카테고리

Help CenterFile Exchange에서 REST API에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by