/ Published in: C++

Testing the slider bug within Cayenne.
This is the Arduino code.
This is the Arduino code.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* Cayenne Ethernet Example This sketch connects to the Cayenne server using an Arduino Ethernet Shield W5100 and runs the main communication loop. The Cayenne Library is required to run this sketch. If you have not already done so you can install it from the Arduino IDE Library Manager. Steps: 1. Set the token variable to match the Arduino token from the Dashboard. 2. Compile and upload this sketch. For Cayenne Dashboard widgets using digital or analog pins this sketch will automatically send data on those pins to the Cayenne server. If the widgets use Virtual Pins, data should be sent to those pins using virtualWrites. Examples for sending and receiving Virtual Pin data are under the Basics folder. */ //#define CAYENNE_DEBUG // Uncomment to show debug messages #define CAYENNE_PRINT Serial // Comment this out to disable prints and save space #include <CayenneEthernet.h> // Cayenne authentication token. This should be obtained from the Cayenne Dashboard. char token[] = "AuthCode"; int vPin1 = 0; void setup() { Serial.begin(9600); Cayenne.begin(token); } void loop() { Cayenne.run(); } CAYENNE_IN(V0){ vPin1 = getValue.asInt(); } CAYENNE_OUT(V1){ Cayenne.virtualWrite(V1, vPin1); }
Comments
