bestes
December 8, 2017, 6:21pm
1
We have just released support for using your ESP8266 as a WiFi shield for Cayenne’s MQTT Arduino library. This feature has been asked a TON by the community.
Please download it, use it for your projects, and let us know how it works!
Here is the updated library on the myDevices github page:
And the code can be found here:
/*
This sketch connects to the Cayenne server using an ESP8266 WiFi module as a shield connected via a hardware serial to an Arduino.
The CayenneMQTT 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. Install the ESP8266SerialLibrary.zip library via the Arduino IDE (Sketch->Include Library->Add .ZIP Library) from the Cayenne extras/libraries
folder (e.g. My Documents\Arduino\libraries\CayenneMQTT\extras\libraries) to compile this example.
2. Connect the ESP8266 as a shield to your Arduino. This example uses the Serial1 hardware serial pins available on the Mega. You can also try
using a software serial, though it may be less stable.
3. Set the Cayenne authentication info to match the authentication info from the Dashboard.
4. Set the network name and password.
5. Compile and upload the sketch.
6. A temporary widget will be automatically generated in the Cayenne Dashboard. To make the widget permanent click the plus sign on the widget.
NOTE: This code requires ESP8266 firmware version 1.0.0 (AT v0.22) or later.
*/
//#define CAYENNE_DEBUG // Uncomment to show debug messages
#define CAYENNE_PRINT Serial // Comment this out to disable prints and save space
This file has been truncated. show original
If you need any help, just create a new topic in the community forum.
Cheers all,
~Benny
4 Likes
bestes
December 8, 2017, 6:24pm
2
Here is a good article by @ebtenorio too:
2 Likes
Thanks for sharing, @bestes !
1 Like