背景: シンプルなオンオフセンサーからデータをアップロードして、Xively メソッドを学習しようとしています。WiFiシールド付きのArduino Unoを使用しています。Xively ライブラリのサンプル スケッチに簡単な変更を加えて、非常にシンプルにしました。ドキュメントを読み、FAQ に加えて Web を検索しました。同様の質問があり (Arduino + wifi シールドを使用して Xively に接続できません、"ret = -1 ソケットがありません)、その答えは読み込まれたライブラリの数を減らすことでした。その中で推奨されているのと同じライブラリ リストを使用していますpost.また、Arduino IDE を更新し、最新の xively および HTTP ライブラリをダウンロードしました. コードはエラーなしでコンパイルされます. xively ウェブサイトでデバイスを再ロードし、新しい API キーと番号も取得しました. さらに, 確実にチャネルが正しいセンサー名で追加されました。
問題: Xively Web サイトでデータを表示できず、Arduino のシリアル モニターに次のエラー メッセージが表示され続けます。
xivelyclint.put は -1 を返しました
また、何度か試行した後、「利用可能なソケットがありません」と表示されます
質問: コードに問題がありますか、それとも別の問題ですか?
現在の Arduino コード (実際の ssid、パスワード、API キーと番号は削除されています):
#include <SPI.h>
#include <WiFi.h>
#include <HttpClient.h>
#include <Xively.h>
char ssid[] = "ssid"; // your network SSID (name)
char pass[] = "password"; // your network password (use for WPA, or use as key for WEP)
int keyIndex = 0; // your network key Index number (needed only for WEP)
int status = WL_IDLE_STATUS;
// Your Xively key to let you upload data
char xivelyKey[] = "api_key";
// Analog pin which we're monitoring (0 and 1 are used by the Ethernet shield)
int sensorPin = 2;
// Define the strings for our datastream IDs
char sensorId[] = "sensor_id";
XivelyDatastream datastreams[] = {
XivelyDatastream(sensorId, strlen(sensorId), DATASTREAM_INT),
};
// Finally, wrap the datastreams into a feed
XivelyFeed feed(feed no., datastreams, 1 /* number of datastreams */);
WiFiClient client;
XivelyClient xivelyclient(client);
void printWifiStatus() {
// print the SSID of the network you're attached to:
Serial.print("SSID: ");
Serial.println(WiFi.SSID());
// print your WiFi shield's IP address:
IPAddress ip = WiFi.localIP();
Serial.print("IP Address: ");
Serial.println(ip);
// print the received signal strength:
long rssi = WiFi.RSSI();
Serial.print("signal strength (RSSI):");
Serial.print(rssi);
Serial.println(" dBm");
}
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println("Starting single datastream upload to Xively...");
Serial.println();
// attempt to connect to Wifi network:
while ( status != WL_CONNECTED) {
Serial.print("Attempting to connect to SSID: ");
Serial.println(ssid);
status = WiFi.begin(ssid, pass);
// wait 10 seconds for connection:
delay(10000);
}
Serial.println("Connected to wifi");
printWifiStatus();
}
void loop() {
int sensorValue = digitalRead(sensorPin);
datastreams[0].setInt(sensorValue);
Serial.print("Read sensor value ");
Serial.println(datastreams[0].getInt());
Serial.println("Uploading it to Xively");
int ret = xivelyclient.put(feed, xivelyKey);
Serial.print("xivelyclient.put returned ");
Serial.println(ret);
Serial.println();
delay(15000);
}