5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

nodejsで、AWSIoTのDevice SDKを用いてMacBookをデバイスに登録する

Last updated at Posted at 2016-05-05

必要な環境

パッケージ Version
Node.js V4.4.3

v4.4.3をインストールしておく 

$ node -v
v4.4.3

aws-iot-device-sdkのインストール

npm install aws-iot-device-sdk

サンプルのソースコード

device.js
awsIot = require('aws-iot-device-sdk');

//
// Replace the values of '<YourUniqueClientIdentifier>' and '<YourAWSRegion>'
// with a unique client identifier and the AWS region you created your
// certificate in (e.g. 'us-east-1').  NOTE: client identifiers must be
// unique within your AWS account; if a client attempts to connect with a
// client identifier which is already in use, the existing connection will
// be terminated.
//
var device = awsIot.device({
   keyPath: <YourPrivateKeyPath>,
  certPath: <YourCertificatePath>,
    caPath: <YourRootCACertificatePath>,
  clientId: <YourUniqueClientIdentifier>,
    region: <YourAWSRegion>
});

//
// Device is an instance returned by mqtt.Client(), see mqtt.js for full
// documentation.
//
device
  .on('connect', function() {
    console.log('connect');
    device.subscribe('topic_1');
    device.publish('topic_2', JSON.stringify({ test_data: 1}));
    });

device
  .on('message', function(topic, payload) {
    console.log('message', topic, payload.toString());
  });

必要なファイル

項目 概要 解説場所
keyPath SSL証明書のprivate-key Thingsの作成で説明
certPath SSL証明書のcertificate Thingsの作成で説明
caPath Root証明書 ルート証明書の取得で説明
clientId ClientID Things名(この例の場合MacBook)
region Tokyoならap-northeast-1

Thingsの作成

awsiot001.png

awsiot002.png

awsiot003.png

awsiot004.png

awsiot005.png

awsiot006.png

awsiot007.png

ここまでの手順で 

  • SSL証明書のprivate-key
  • SSL証明書のcertificate

が取得できる。

$ mkdir cert

keyというフォルダを作成し、そこに保存しておく。

また、AWSIoTのDashboardには、MacBook, MacBookPolicy,certificate が生成される。

MacBook001.png

ルート証明書の取得

root002.png

$ cd cert
$ wget http://www.symantec.com/content/en/us/enterprise/verisign/roots/VeriSign-Class%203-Public-Primary-Certification-Authority-G5.pem

これでルート証明書が取得できた。

$ ls
57555c6996-certificate.pem.crt
57555c6996-private.pem.key
VeriSign-Class 3-Public-Primary-Certification-Authority-G5.pem

サンプルのソースコードの修正

device.js
awsIot = require('aws-iot-device-sdk');

//
// Replace the values of '<YourUniqueClientIdentifier>' and '<YourAWSRegion>'
// with a unique client identifier and the AWS region you created your
// certificate in (e.g. 'us-east-1').  NOTE: client identifiers must be
// unique within your AWS account; if a client attempts to connect with a
// client identifier which is already in use, the existing connection will
// be terminated.
//
var device = awsIot.device({
   keyPath: './cert/57555c6996-private.pem.key',
  certPath: './cert/57555c6996-certificate.pem.crt',
    caPath: './cert/VeriSign-Class 3-Public-Primary-Certification-Authority-G5.pem',
  clientId: 'MacBook',
    region: 'ap-northeast-1'
});

//
// Device is an instance returned by mqtt.Client(), see mqtt.js for full
// documentation.
//
device
  .on('connect', function() {
    console.log('connect');
    device.subscribe('topic_1');
    device.publish('topic_2', JSON.stringify({ test_data: 1}));
    });

device
  .on('message', function(topic, payload) {
    console.log('message', topic, payload.toString());
  });

TestClientの作成 

mqtt001.png

mqtt002.png

mqtt003.png

mqtt004.png

実行

$ ls 
device.js	cert		node_modules

$node device.js
connect

Publishした{ test_data:1}がMQTT Clientのtopic_2に反映される。

mqtt007.png

プログラムでは、この部分でtopic_2にPublishしている。

device.publish('topic_2', JSON.stringify({ test_data: 1}));

今度は、{key: "value"}という値をMQTT ClientからMacBookに、topic_1でPublishする。

mqtt101.png

device
  .on('message', function(topic, payload) {
    console.log('message', topic, payload.toString());
  });
$ node device.js 
connected
message topic_1 {key: "value"}
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?