All Projects → vshymanskyy → Blynk Library Js

vshymanskyy / Blynk Library Js

Licence: mit
Blynk library for JS. Works with Browsers, Node.js, Espruino.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Blynk Library Js

Blynk Library Particle
Blynk library for Particle Core, Photon, Electon, P0, P1, RedBear Duo etc.
Stars: ✭ 35 (-80.66%)
Mutual labels:  iot-platform, smartphone, iot
Jetlinks Community
JetLinks 基于Java8,Spring Boot 2.x ,WebFlux,Netty,Vert.x,Reactor等开发, 是一个全响应式的企业级物联网平台。支持统一物模型管理,多种设备,多种厂家,统一管理。统一设备连接管理,多协议适配(TCP,MQTT,UDP,CoAP,HTTP等),屏蔽网络编程复杂性,灵活接入不同厂家不同协议等设备。实时数据处理,设备告警,消息通知,数据转发。地理位置,数据可视化等。能帮助你快速建立物联网相关业务系统。
Stars: ✭ 2,405 (+1228.73%)
Mutual labels:  iot-platform, iot
Hsweb Iot Cloud
⚠️ 本项目已停更,欢迎关注新的开源物联网平台 JetLinks
Stars: ✭ 105 (-41.99%)
Mutual labels:  iot-platform, iot
Actorcloud
Open-source IoT Platform
Stars: ✭ 138 (-23.76%)
Mutual labels:  iot-platform, iot
Temp Monitor
Internet of Things data platform for temperature and humidity sensors with maps
Stars: ✭ 84 (-53.59%)
Mutual labels:  iot-platform, iot
Tplink Cloud Api
A node.js npm module to remotely control TP-Link smartplugs (HS100, HS110) and smartbulbs (LB100, LB110, LB120, LB130) using their cloud web service (no need to be on the same wifi/lan)
Stars: ✭ 96 (-46.96%)
Mutual labels:  iot, npm-package
Swifitch
Swifitch is ESP8266 based relay board that could be used to turn any light or any wall socket into smart one!
Stars: ✭ 117 (-35.36%)
Mutual labels:  iot-platform, iot
Platform
The main components of OSGP.
Stars: ✭ 39 (-78.45%)
Mutual labels:  iot-platform, iot
Astarte
Core Astarte Repository
Stars: ✭ 148 (-18.23%)
Mutual labels:  iot-platform, iot
Angular5 Iot Dashboard
Multipurpose dashboard admin for IoT softwares, remote control, user interface. Develop your client dashboards in Angular 5 with vast variety of components available.
Stars: ✭ 148 (-18.23%)
Mutual labels:  iot-platform, iot
Pando Cloud
pando open source iot cloud.
Stars: ✭ 162 (-10.5%)
Mutual labels:  iot-platform, iot
Iotplatform
An open-source IoT platform that enables rapid development, management and scaling of IoT projects. With this IoT platform, you are able to: 1) Provision and control devices, 2) Collect and visualize data from devices, 3) Analyze device data and trigger alarms, 4) Deliver device data to other systems, 5) Enable use-case specific features using customizable rules and plugins.
Stars: ✭ 82 (-54.7%)
Mutual labels:  iot-platform, iot
Harmonyos
鸿蒙系统资料。Docs about HarmonyOS.
Stars: ✭ 1,191 (+558.01%)
Mutual labels:  iot-platform, iot
Mainflux
Industrial IoT Messaging and Device Management Platform
Stars: ✭ 1,341 (+640.88%)
Mutual labels:  iot-platform, iot
Thingsboard
Open-source IoT Platform - Device management, data collection, processing and visualization.
Stars: ✭ 10,526 (+5715.47%)
Mutual labels:  iot-platform, iot
Iot Technical Guide
🐝 IoT Technical Guide --- 从零搭建高性能物联网平台及物联网解决方案和Thingsboard源码分析 ✨ ✨ ✨ (IoT Platform, SaaS, MQTT, CoAP, HTTP, Modbus, OPC, WebSocket, 物模型,Protobuf, PostgreSQL, MongoDB, Spring Security, OAuth2, RuleEngine, Kafka, Docker)
Stars: ✭ 2,334 (+1189.5%)
Mutual labels:  iot-platform, iot
Blynk Library Python
Blynk library for Python. Works with Python 2, Python 3, MicroPython.
Stars: ✭ 170 (-6.08%)
Mutual labels:  smartphone, iot
Cbj smart Home
If you are searching for an easy way to deploy a smart home 🏡 by yourself CyBear Jinni 🦾🐻🧞‍♂️ is here for you. Join the community and make your home smarter than yesterday.
Stars: ✭ 37 (-79.56%)
Mutual labels:  iot-platform, iot
Lib Python
Blynk IoT library for Python and Micropython
Stars: ✭ 140 (-22.65%)
Mutual labels:  iot-platform, iot
Mqttnet
MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from http://mqtt.org/.
Stars: ✭ 2,486 (+1273.48%)
Mutual labels:  iot-platform, iot

blynk-library-js

Blynk library implementation for JavaScript (Node.js, Espruino)

NPM version NPM download GitHub stars GitHub issues GitHub license

If you like Blynk - give it a star, or fork it and contribute! GitHub stars GitHub forks


What is Blynk?

Blynk provides iOS and Android apps to control any hardware over the Internet or directly using Bluetooth. You can easily build graphic interfaces for all your projects by simply dragging and dropping widgets, right on your smartphone. Blynk is the most popular IoT platform used by design studios, makers, educators, and equipment vendors all over the world.

Blynk Banner

Download

Blynk App: Google Play | App Store

Blynk Server

Documentation

Social: Webpage / Facebook / Twitter / Kickstarter
Help Center: http://help.blynk.cc
Documentation: http://docs.blynk.cc/#blynk-firmware
Community Forum: http://community.blynk.cc
Examples Browser: http://examples.blynk.cc
Blynk for Business: http://www.blynk.io

Getting Started tutorials

Usage example

var BlynkLib = require('blynk-library');

var blynk = new BlynkLib.Blynk('715f8caae9bf4a91bae319d0376caa8d');
var v1 = new blynk.VirtualPin(1);
var v9 = new blynk.VirtualPin(9);

v1.on('write', function(param) {
  console.log('V1:', param);
});

v9.on('read', function() {
  v9.write(new Date().getSeconds());
});

Tested on:

  • Node.js
  • Intel Edison
  • Desktop (Windows, Linux): TCP, SSL
  • Espruino
  • Pico: ESP8266WiFi_0v25, over USB/Serial
  • VoCore (using OpenWRT Espruino package)
  • Linux

Boards with supported direct pin IO:

  • Intel Edison, Galileo using mraa package
  • Raspberry Pi, Beaglebone using onoff package
  • Espruino Pico
  • OpenWrt + Espruino package

Just install the required package and this module will do auto-detection.


Implementations for other platforms

License

This project is released under The MIT License (MIT)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].