[Solved] Arduino.org Uno WiFi board with Firmware 1.0.0 and WiFiLink.h Librairies

Finally It’s a great news !

I just adapt the BlynkSimpleWifi.h sketch in a BlynkSimpleWifiLink.h and put in the src folder of Blynk library

the Code :slight_smile:

        /**
        * @file BlynkSimpleWifiLynk.h
        * @
        * @license This project is released under the MIT License (MIT)
        * @copyright Copyright (c) 2015 Volodymyr Shymanskyy
        * @date Jan 2017
        * @brief
        *
        */
        #ifndef BlynkSimpleWifiLink_h
        #define BlynkSimpleWifiLink_h

        #ifndef BLYNK_INFO_CONNECTION
        #define BLYNK_INFO_CONNECTION  "HDG204"
        #endif

        // Fix for WiFi shield (it has a crazy ping duration)
        // #define BLYNK_TIMEOUT_MS 6000UL
        #define BLYNK_SEND_ATOMIC
        #define BLYNK_SEND_CHUNK 64

        #include <WiFiLink.h>
        #include <Adapters/BlynkWiFiCommon.h>

        static WiFiClient _blynkWifiClient;
        static BlynkArduinoClient _blynkTransport(_blynkWifiClient);
        BlynkWifiCommon Blynk(_blynkTransport);

        #include <BlynkWidgets.h>

        #endif

And to use the example of Blynk using a LED widget on your phone!

     /*************************************************************
       Download latest Blynk library here:
         https://github.com/blynkkk/blynk-library/releases/latest

       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
         Sketch generator:           http://examples.blynk.cc
         Blynk community:            http://community.blynk.cc
         Follow us:                  http://www.fb.com/blynkapp
                                     http://twitter.com/blynk_app

       Blynk library is licensed under MIT license
       This example code is in public domain.

      *************************************************************

       Blynk using a LED widget on your phone!

       App project setup:
         LED widget on V1
      *************************************************************/

     /* Comment this out to disable prints and save space */
     #define BLYNK_PRINT Serial
     #define BLYNK_DEBUG

     #include <SPI.h>
     #include <WiFiLink.h>
     #include <BlynkSimpleWifiLink.h>

     // You should get Auth Token in the Blynk App.
     // Go to the Project Settings (nut icon).
     char auth[] = "You Token";

     // Your WiFi credentials.
     // Set password to "" for open networks.
     char ssid[] = "Your SSID";     //  your network SSID (name)
     char pass[] = "Your Pass";  // your network password

     int status = WL_IDLE_STATUS;     // the Wifi rad

     WidgetLED led1(V3);

     BlynkTimer timer;
     bool ledStatus = false;

     #define BLYNK_GREEN     "#23C48E"
     #define BLYNK_BLUE      "#04C0F8"
     #define BLYNK_YELLOW    "#ED9D00"
     #define BLYNK_RED       "#D3435C"
     #define BLYNK_DARK_BLUE "#5F7CD8"

     // V1 LED Widget is blinking
     void blinkLedWidget()
     {
       if (ledStatus) {
         led1.setColor(BLYNK_RED);
         Serial.println("LED on V1: red");
         ledStatus = false;
       } else {
         led1.setColor(BLYNK_GREEN);
         Serial.println("LED on V1: green");
         ledStatus = true;
       }
     }

     void setup()
     {
       // Debug console
       Serial.begin(9600);

       //Blynk.begin(auth, ssid, pass);
       // You can also specify server:
       Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 8442);
       //Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8442);

       // Turn LED on, so colors are visible
       led1.on();
       // Setup periodic color change
       timer.setInterval(1000L, blinkLedWidget);
     }

     void loop()
     {
       Blynk.run();
       timer.run();
     }

Enjoy your Blynk App with an Arduino.org UNO WiFi in Firmware 1.0.0

2 Likes