我有一个Raspberry pi 2,我正在读取传感器数据并将其显示在屏幕上;这是我在Raspberry pi上运行的代码:
#include "eHealth.h"
void loop() {
float temperature = eHealth.getTemperature();
printf("Temperature : %f \n", temperature);
delay(2000);
}
int main(){
while(1){
loop();
}
return 0;
}
代码运行良好,温度显示在命令行中。我想把它作为IoT应用程序,但我是初学者,我不知道如何设置。我尝试了IBM Bluemix并注册了该设备。它表示设备处于活动状态,但将设备设置为发送数据以进行可视化。任何帮助都会非常感激。
答案 0 :(得分:1)
此tutorial引导您了解如何将您的树莓派连接到物联网平台。
答案 1 :(得分:1)
有一种方法可以在Pi上使用Node-Red连接您的Pi和平台,并创建Watson IoT平台节点。这是关于如何操作的视频: http://www.ibm.com/internet-of-things/ecosystem/devices/raspberry-pi/