Hi All,
I try to upload this code in an Arduino Nano with an ENC28J60 via Codebender
> /**************************************************************
> * Blynk is a platform with iOS and Android apps to control
> * Arduino, Raspberry Pi and the likes over the Internet.
> * You can easily build graphic interfaces for all your
> * projects by simply dragging and dropping widgets.
> *
> * Downloads, docs, tutorials: http://www.blynk.cc
> * Blynk community: http://community.blynk.cc
> * Social groups: http://www.fb.com/blynkapp
> * http://twitter.com/blynk_app
> *
> * Blynk library is licensed under MIT license
> * This example code is in public domain.
> *
> **************************************************************
> *
> * This example shows how to use ENC28J60 (UIPEthernet library)
> * to connect your project to Blynk.
> *
> * For this example you need UIPEthernet library:
> * https://github.com/ntruchsess/arduino_uip
> *
> * Feel free to apply it to any other example. It's simple!
> *
> **************************************************************/
> #define BLYNK_PRINT Serial // Comment this out to disable prints and save space
> #include "UIPEthernet.h"
> #include "BlynkSimpleUIPEthernet.h"
> // You should get Auth Token in the Blynk App.
> // Go to the Project Settings (nut icon).
> char auth[] = "cbc274078xxxxxxxxxxxxx94abc2f10f";
> void setup()
> {
> Serial.begin(9600);
> Blynk.begin(auth);
> // You can also specify server.
> // For more options, see Transports/Advanced/CustomEthernet example
> //Blynk.begin(auth, "server.org", 8442);
> //Blynk.begin(auth, IPAddress(192,168,1,100), 8888);
> }
> void loop()
> {
> Blynk.run();
> }
The verification fail with these error:
ENC28J60.ino:29:10: fatal error: ‘BlynkSimpleUIPEthernet.h’ file not found
Although the specified file is present in my codebender personal library…
Thanks in advance if you have any idea !