LinkIt ONE problem with basic example

I can’t use your LinkIt ONE examples. When trying to connect the Linkit board gets unresponsive. I tried the following code:

#include <LWiFi.h>
#include <LWiFiClient.h>
#include <BlynkSimpleLinkItONE.h>

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

#define WIFI_SSID "my_ssid"
#define WIFI_PASS "my_pass"
#define WIFI_AUTH LWIFI_WPA

void setup()
{
  Serial.begin(9600);
  Serial.print("starting WiFi connection...");
  Blynk.begin(auth, WIFI_SSID, WIFI_PASS, WIFI_AUTH);
  Serial.println("connected.");
  
  // print the SSID of the network you're attached to:
  Serial.print("SSID: ");
  Serial.println(LWiFi.SSID());

  // print your LWiFi shield's IP address:
  IPAddress ip = LWiFi.localIP();
  Serial.print("IP Address: ");
  Serial.println(ip);

  // print the received signal strength:
  long rssi = LWiFi.RSSI();
  Serial.print("signal strength (RSSI):");
  Serial.print(rssi);
  Serial.println(" dBm");

}

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

This will connect to the AP and the Linkit gets an IP-address:

starting WiFi connection...connected.
SSID: my_ssid
IP Address: 192.168.2.104
signal strength (RSSI):-80 dBm

But when I uncomment “Blynk.run()” there is no serial output and I can’t get a connect and the board does not show up in my router?!

I am running SDK 1.1.11 from MediaTek and Arduino IDE 1.6.4 on a Mac.

What’s wrong? Any idea?

Unfortunately can’t help with this right now…
The LinkIt ONE support was based on community contribution, and I don’t have the board to test it.

Sad to hear! I really like Blynk and startet using it with the RBL CC3200 board. Was a plug&play experience and I got addicted :wink: I bought the LinkIt ONE especially because it was listed in 0.30 release and it has so much connectivity.

Can you contact the contributor? Maybe it was developed with an older SDK and got bricked by an update?

The board is definitely worth it to be supported!

I have same problem too.
It’s a bad news to hear that linkit one is not support by official

Please have a look into this thread: LinkIt One workaround
Do you use the latest Blynk release?

OK!! I will take a look of that.

I use the latest Blynk release.
But it still cannot use.

We will soon get a sample from LinkIt ONE and it will get better. Thanks.