head

2015年4月28日火曜日

[type-a] ARDUINO、 WEB APIとの、送信 - 受信

========================================================
参考の記事
http://kuc-arc-f.com/agri/?product=product-post-2
========================================================

EtherNet 機能対応の、ARDUINOで
web(クラウド、web service)との I/O部分です。

*) ARDUNO Ethernet シールド / WIFI モジュール 付ARDUINO などで使用可能

code:
https://github.com/kuc-arc-f/arduino-mc-typ-01b/blob/master/mc-typ-01/mc-typ-01.ino

Tutorial - WebClient
http://www.arduino.cc/en/Tutorial/WebClient


#送信
入力可能なセンサ系デバイス値などから、Webサービス
( 最近でいう、IoT: Internet Of Thongs )
へ、アナログ値など送信可能

if (Ethernet.begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
Ethernet.begin(mac, ip);
}
if (client.connect(server, 80)) {
Serial.println("connected");
String sReq= "GET /api-123.php?param=123";
sReq.concat(" HTTP/1.1");
client.println(sReq);
client.println("Host: www.google.com");
client.println("Connection: close");
client.println();
}
else {
Serial.println("connection failed");
}
view raw gistfile1.txt hosted with ❤ by GitHub
#受信
デバイス制御で使うには、プロトコルの解析が必要
Loop 内で client.read()で、1文字読込が可能

void loop()
{
if (client.available()) {
char c = client.read();
Serial.print(c);
}
if (!client.connected()) {
Serial.println();
Serial.println("disconnecting.");
client.stop();
}
}
view raw gistfile1.txt hosted with ❤ by GitHub
*) 開発者向けのまとめ記事
http://knaka0209.blogspot.jp/2015/04/agri.html


0 件のコメント:

コメントを投稿

google colaboratory お試し編 、GPUも使える機械学習の環境構築

前回続き、機械学習の関連となります。 開発環境まわりの内容となり。先人様の情報を元に調査しました。 google colab(google colaboratory) を試してみました。機械学習系の いくつかのライブラリがインストール済みで、 クラウド上で、ある程度機械学...

AD-parts

Shop
Bluetooth搭載
ベース基板

Social