OK totally lost here with Blynk2.0 example!

I didn’t got for 5 free devices

It’s access to app widgets that you get, not web dashboard widgets (at least not at this point).

Pete.

ah ok - there aint much there then pete is there!!

Not yet!

Pete.

Making great progress now and setup a big project on blynk 2,0 but have another question, surprise surprise!!!

I have an original blynk 1.0 project that has 4 different hardware boards attached to it. Can you still do that in blynk2.0? cant see a way in the app

As @PeteKnight said , I am using 4 devices with same auth, that works well

1 Like

Cheers will try it.

Next issue sliders on ios app not showing values. Is it me or a known bug - however they do show up on web dash. No idea what temp im setting!

It’s intentional.
I raised it as an in beta testing issue and was told this…

Pete.

Thanks Pete as long as they are aware of it.

kev

Another issue button on the web dashboard appears to latch but works momentarily on the ios app fine

are you guys aware of this ?

image

The dashboard widgets are switches, not buttons, so latching is the only behaviour available.
Hopefully we’ll get some new dashboard widgets soon that mirror the app widgets better.

Pete.

1 Like

Waiting for a real push button, you can turn the switch into a push button by coding like this :

BLYNK_WRITE(V1) {//reset maxmin button
  int sw = param.asInt();
  // do reset maxmin
  if (sw == 1) {
    Blynk.virtualWrite(V1, 0);
  } else {
    Blynk.virtualWrite(V1, 1);
  }
}

Video_2021-07-05_181620

Have already done this but thanks anyway!

1 Like

perhaps another issue - not sure. When I open my ios app each day it does not update any data until I come out of it and click back on the project. I have got update app in the background turned on. here are screenshot of the web dash and ios before I refreshed the IOS app note the current status field.

2 Likes

@newdos Thanks for the report. Will be fixed in upcoming iOS app update

1 Like

Just loaded 1.0.1 and tried to install in Arduino:

Specified folder/zip file does not contain a valid library

You can also use Arduino library manager. Zip installation is for advanced users

Please do you mean traditional wall light switch will work with this code
Without floating

No, the code is a way of creating a push button widget for the web dashboard, which only has a switch widget currently.

Pete.

Hi
I use Blynk 2.0 and have setup a test template.
In the IOS app the guage is showing 65 (the value is actually 65535, see the graph)
Any ideas ?

In the Web dashboard it is correct.