How can I write multiple fields all at once using ThingSpeak library?

조회 수: 93 (최근 30일)
I want to write information for controlling a device in my ThingSpeak channel, can I store the control parameters in ThingSpeak and read all of the paremeters at once back to the device? I'd like to be able to read multiple fields without having to make multiple calls to the ThingSpeak readfield command on my Arduino or esp32 or ESP8266. Is this possible?

채택된 답변

MathWorks Internet of Things Team
The updated ThingSpeak library for Arduino and Particle version 2.0.1 includes the ability to read multiple fields in one function call. The example embedded in the Arduino library can be reached in the File > Examples > ThingSpeak menu in the Arduino IDE once you have installed the latest version of the ThingSpeak library.
Reading multiple fields is especially helpful when you are using your ThingSpeak channel for control settings. For example, I have a drip irrigation system in my backyard that uses ThingSpeak channel 597924 to set the water time and the sleep time. You can see the battery level for the solar powered battery for the pump on ThingSpeak channel 592680.
Here are the basic steps using C code.
First include the library and declare variables in the setup function
include “ThingSpeak.h”
unsigned long weatherStationChannelNumber = 12397;
int statusCode = 0;
In the loop function, read all the fields together and then use the type specific built-in functions to get the values you need.
statusCode = ThingSpeak.readMultipleFields(weatherStationChannelNumber);
if(statusCode == 200)
{
int windDir = ThingSpeak.getFieldAsInt(1); // Field 1
float windSpeed = ThingSpeak.getFieldAsFloat(2); // Field 2
int percentHumid = ThingSpeak.getFieldAsInt(3); // Field 3
}
You can read the status, position information and all eight fields. See the help file at the GitHub repo for the ThingSpeak Arduino Library for more information. Your device will save the information locally until you repeat the call to readMultipleFields again.
  댓글 수: 1
Suraj
Suraj 2022년 10월 15일
편집: Suraj 2022년 10월 15일
i am not getting data in field whereas program load in esp8266 successfully
please help
i am using multiple field i.e field 1 and field2

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

추가 답변 (1개)

Milena Mendez
Milena Mendez 2022년 11월 26일
편집: Milena Mendez 2022년 11월 26일
Hello
You can use the following sentence from your scrip, according with the values to publish:
thingSpeakWrite(channel number, [value1, value2,..., valueN],'WriteKey', appKey);

커뮤니티

더 많은 답변 보기:  ThingSpeak 커뮤니티

카테고리

Help CenterFile Exchange에서 Read Data from Channel에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by