Giter Club home page Giter Club logo

blynkkk.github.io's People

Contributors

agnetka-qa avatar aleksey-10 avatar alexargc avatar alexkipar avatar blynkkk avatar doom369 avatar earlold avatar eepetrash avatar emil01 avatar jamesfromit avatar mark-pan avatar refenz avatar thanxx avatar vshymanskyy avatar vyacheslav-code avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

blynkkk.github.io's Issues

Typos and grammar issues

  1. https://www.blynk.cc/
    Every project made with Blynk can be branded, and published to App Store and Google Play with your icon and app name.
    Unnecessary comma after "branded":

  2. http://help.blynk.cc/getting-started-library-auth-token-code-examples/getting-started
    typo: If you hardware -> if your hardware

  3. There are many cases of absence of the articles before the nouns in the docs and help section. I am not an expert in English but I think the text should be checked by a competent person.

Documentation is not rendered

Hi,
I cloned this repo, put it into my webserver Document root and expected my browser to render the documentation, but it does not.
I can only see the black frames on top and left side, but the content is not loaded. What am I missing?

Structure

Every logical entity should be a separate .md file
/2.0/en/product/datastream/name.md

Joystick + servo not working, but it working with slider

Hello! I have a problem with the joystick. I am trying to control a servo. This works great with the slider element, but does not work with the joystick element.
I watched the Debug console. When I use the slider, I see how the data comes in the console and everything works. I tried different options (write interval, Output (split / merge)). But when I use the joystick, the data does not come to the console and servo not working. How can I fix this? Thanks!

#define BLYNK_PRINT Serial

#include <Servo.h>
#include <Blynk.h>
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

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

// Your WiFi credentials.
// Set password to “” for open networks.
char ssid[] = “mywifi”;
char pass[] = “12345678”;

Servo servo;
BLYNK_WRITE(V3) {

int x = param[0].asInt();
servo.write(x);
Serial.println(x, DEC);
}

void setup()
{
// Debug console
Serial.begin(9600);
Blynk.begin(auth, ssid, pass, “myserver.com”, 8081);
servo.attach(15); // 15 means D8 pin of ESP8266
}

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


Add Blynk commands to the doc

BLYNK_WRITE(vPIN)
BLYNK_READ(vPIN)
BLYNK_WRITE_DEFAULT()
BLYNK_READ_DEFAULT()
Blynk.virtualWrite();

define BLYNK_PRINT

define BLYNK_DEBUG

BLYNK_LOG()

and all the others needed (except for widgets) - they are in a different section

Add Russian language

  • Add link to Russian language to the page header
  • Create page for Russian documentation
  • Make it possible to get back to English version

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.