IoT-Unit5-Part4-Xively Cloud For IoT
IoT-Unit5-Part4-Xively Cloud For IoT
Xively
• Xively (formerly known as Cosm and Pachube)
is an Internet of Things (IoT) platform owned
by Google. Xively offers product companies a
way to connect products, manage connected
devices and the data they produce, and
integrate that data into other systems
Xively Cloud Services
• void setup() {
• // initialize serial communications at 9600 bps:
• Serial.begin(9600);
• analogReference(EXTERNAL);
•
• }
• void loop() {
• // read the analog in value:
•
• sensorValue = readTemp();
• float millivolts = (sensorValue * 3300.0) / 1024.0;
• float temperature = (millivolts - 500.0) / 10.0;