Blynk Documentation

Dear all,

we made first ready to use Blynk documentation - http://docs.blynk.cc/
Please check it and tell us what do you think. Any feedback is welcome.

4 Likes

Nice work!!!
will be a great help.

Jtalhate

1 Like

I don’t see anything in the documentation tab??
an empty black sidebar with an equally empty white page
Is it me or my Chrome on OSX 10.7.5?
RDG

@Lefthandmedia Just wait few seconds, it may be loading slowly.

Hi,

After opening my inspector i saw that ‘Privacy badger’ blocked cdn.rawgit.com.
After giving that access all went fine thanks for the quick reply.
RDG

1 Like

I went through the documentation and I think the following are typo’s. Most of them are not critical, but I though it would be good to give the feedback anyway.

So need to write code for simple things like LED, Relay control and analog sensors

should be

No need to write code for simple things like LED, Relay control and analog sensors.


It is better version of Value Display

should be

It is a better version of ‘Value Display’


Next formatting options supported:

should be

Next formatting options are supported:


Allows also to send any string to your hardware.

should be

Also allows to send any string to your hardware.


Ardiono Core

should be

Arduino Core


so there is no practical limits

should be

so there are no practical limits


Calling virtualWrite attempts to sent the value to the network immediately.

should be

Calling virtualWrite attempts to send the value to the network immediately.

One more, (it’s not a typo, but copy/pasto) :

BLYNK_READ_DEFAULT()
This redefines the handler for all pins that are not covered by custom BLYNK_WRITE functions.

should be

BLYNK_READ_DEFAULT()
This redefines the handler for all pins that are not covered by custom BLYNK_READ functions.

@Strooom wow, thank you so much. Fixed. Please send me PM with your email so I could give you free energy for help.

One more:

BLYNK_READ(V0)
{
Blynk.virtualWrite(v0, newValue);
}

I think it should be V0 io. v0 as vars are case-sensitive

2 Likes

What’s the distinguish about “BLYNK_READ_DEFAULT()” and “BLYNK_READ(vPIN)”
Could you give me some example or explation? thank you.
I don’t understood the Doc about this website.

@Yangfeng here is example with use case - https://github.com/blynkkk/blynk-library/blob/master/examples/More/PrintAllVirtual/PrintAllVirtual.ino

You can also use search for similar question.