Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Core | 64,395 | 6 | a day ago | 1,163 | November 30, 2023 | 2,519 | apache-2.0 | Python | ||
:house_with_garden: Open source home automation that puts local control and privacy first. | ||||||||||
Casaos | 18,370 | 2 | 7 days ago | 111 | November 28, 2023 | 228 | apache-2.0 | Go | ||
CasaOS - A simple, easy-to-use, elegant open-source Personal Cloud system. | ||||||||||
Raylib | 16,410 | a day ago | 10 | zlib | C | |||||
A simple and easy-to-use library to enjoy videogames programming | ||||||||||
Iot For Beginners | 13,966 | 5 days ago | 54 | mit | C++ | |||||
12 Weeks, 24 Lessons, IoT for All! | ||||||||||
Johnny Five | 13,105 | 1,724 | 177 | 2 months ago | 300 | July 06, 2021 | 57 | other | JavaScript | |
JavaScript Robotics and IoT programming framework, developed at Bocoup. | ||||||||||
Gobot | 8,543 | 20 | 31 | 2 days ago | 32 | October 30, 2023 | 124 | other | Go | |
Golang framework for robotics, drones, and the Internet of Things (IoT) | ||||||||||
Home Assistantconfig | 4,518 | 9 days ago | 206 | other | JavaScript | |||||
:house: Home Assistant configuration & Documentation for my Smart House. Write-ups, videos, part lists, and links throughout. Be sure to :star: it. Updated FREQUENTLY! | ||||||||||
Tuya Convert | 4,258 | 2 months ago | 191 | mit | Python | |||||
A collection of scripts to flash Tuya IoT devices to alternative firmwares | ||||||||||
Raspap Webgui | 4,143 | a day ago | 42 | November 25, 2023 | 35 | gpl-3.0 | PHP | |||
Simple wireless AP setup & management for Debian-based devices | ||||||||||
Blynk Library | 3,731 | a month ago | 7 | mit | C++ | |||||
Blynk library for IoT boards. Works with Arduino, ESP32, ESP8266, Raspberry Pi, Particle, ARM Mbed, etc. |
Note: The library has been updated for Blynk 2.0.
Please remain on v0.2.0
for legacy Blynk.
If you like Blynk - give it a star, or fork it and contribute!
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 Mobile App:
Google Play |
App Store
Social: Webpage / Facebook / Twitter / Kickstarter
Documentation: https://docs.blynk.io
Community Forum: http://community.blynk.cc
Blynk for Business: http://www.blynk.io
import BlynkLib
# Initialize Blynk
blynk = BlynkLib.Blynk('YourAuthToken')
# Register Virtual Pins
@blynk.VIRTUAL_WRITE(1)
def my_write_handler(value):
print('Current V1 value: {}'.format(value))
@blynk.VIRTUAL_READ(2)
def my_read_handler():
# this widget will show some time in seconds..
blynk.virtual_write(2, int(time.time()))
while True:
blynk.run()
virtual_write
sync_virtual
set_property
log_event
Vn
, connected
, disconnected
, invalid_auth
TCP
and secure TLS/SSL
connection supportESP8266
, ESP32
, W600
or OpenWrt
pip install blynk-library-python
For Blynk.Edgent Dynamic Provisioning, please see examples/Edgent_Linux_RPi
auth token
and wifi credentials)ampy
or any other method to transfer files to the device
export AMPY_PORT=/dev/ttyUSB0
ampy mkdir /lib
ampy put BlynkLib.py /lib/BlynkLib.py
ampy put ./examples/hardware/ESP8266_ESP32.py main.py
Note: LoBo firmware stores files uder /flash
directory, use ampy mkdir /flash/lib
and so onexecfile('main.py')
)blynk = BlynkLib.Blynk('YourAuthToken', insecure=True)
This project is released under The MIT License (MIT)