All Projects → blynkkk → blynk-sketch-generator

blynkkk / blynk-sketch-generator

Licence: MIT license
This repository is for generating Blynk sketches.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to blynk-sketch-generator

Esp8266
ESP8266 NodeMCU Workshop
Stars: ✭ 109 (+445%)
Mutual labels:  esp8266, nodemcu
n2d
An easy to use ESP8266 flash tool with built-in support for the Deauther Project.
Stars: ✭ 136 (+580%)
Mutual labels:  esp8266, nodemcu
Swifitch
Swifitch is ESP8266 based relay board that could be used to turn any light or any wall socket into smart one!
Stars: ✭ 117 (+485%)
Mutual labels:  esp8266, nodemcu
Openwifidetectoresp8266
MASLOW: an Open WiFi Detector with ESP8266
Stars: ✭ 15 (-25%)
Mutual labels:  esp8266, nodemcu
Esp Lisp
Beta: A small fast lisp interpeter for a ESP8266 as alternative to lua on the nodemcu.
Stars: ✭ 236 (+1080%)
Mutual labels:  esp8266, nodemcu
Easyntpclient
Library to read time from Network Time Protocol (NTP) servers.
Stars: ✭ 20 (+0%)
Mutual labels:  esp8266, nodemcu
Esp8266 wifi captive portal
🔑 WiFi captive portal for ESP8266 for phishing WiFi passwords
Stars: ✭ 165 (+725%)
Mutual labels:  esp8266, nodemcu
Ideasnprojects
That Project's Source Code
Stars: ✭ 344 (+1620%)
Mutual labels:  esp8266, nodemcu
Awesome Esp
📶 A curated list of awesome ESP8266/32 projects and code
Stars: ✭ 212 (+960%)
Mutual labels:  esp8266, nodemcu
Lorawangateway
A LoRaWan Gateway in LUA
Stars: ✭ 197 (+885%)
Mutual labels:  esp8266, nodemcu
Nodemcu Firmware
Lua based interactive firmware for ESP8266, ESP8285 and ESP32
Stars: ✭ 6,884 (+34320%)
Mutual labels:  esp8266, nodemcu
Jarolift MQTT
Controlling Jarolift TDEF 433MHZ radio shutters via ESP8266 and CC1101 Transceiver Module in asynchronous mode
Stars: ✭ 43 (+115%)
Mutual labels:  esp8266, nodemcu
Esp Mqtt Json Digital Leds
(OBSOLETE) ESP8266 MQTT JSON Digital LEDs for Home Assistant
Stars: ✭ 503 (+2415%)
Mutual labels:  esp8266, nodemcu
Esp8266scheduler
ESP8266 Co-operative Multitasking
Stars: ✭ 93 (+365%)
Mutual labels:  esp8266, nodemcu
Automated Irrigation System
This is the software of an open source automated irrigation system. The complete setup including hardware can be found in the README.
Stars: ✭ 442 (+2110%)
Mutual labels:  esp8266, nodemcu
Configmanager
ESP8266 Wifi connection and configuration manager.
Stars: ✭ 149 (+645%)
Mutual labels:  esp8266, nodemcu
Nodemcu Uploader
Upload files to your esp8266 running nodeMcu
Stars: ✭ 290 (+1350%)
Mutual labels:  esp8266, nodemcu
Esp Mqtt Json Multisensor
(OBSOLETE) ESP MQTT JSON Multisensor for Home Assistant. Supported sensors include the TEMT6000 light, AM312 PIR, DHT22 temperature/humidity sensors. RGB led supports flash, fade, and transition. Over-The-Air (OTA) uploading, too!
Stars: ✭ 323 (+1515%)
Mutual labels:  esp8266, nodemcu
Openmqttgateway
MQTT gateway for ESP8266, ESP32, Sonoff RF Bridge or Arduino with bidirectional 433mhz/315mhz/868mhz, Infrared communications, BLE, Bluetooth, beacons detection, mi flora, mi jia, LYWSD02, LYWSD03MMC, Mi Scale, TPMS, BBQ thermometer compatibility, SMS & LORA.
Stars: ✭ 2,413 (+11965%)
Mutual labels:  esp8266, nodemcu
Nodemcu Tool
🔧 Upload + Manage Lua files on NodeMCU
Stars: ✭ 248 (+1140%)
Mutual labels:  esp8266, nodemcu

blynk-sketch-generator

This repository is for generating Blynk sketches.

https://examples.blynk.cc/

Installation

Fail to ban

sudo apt-get update
sudo apt-get install fail2ban
sudo cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local

Certs

wget https://dl.eff.org/certbot-auto
chmod a+x certbot-auto
export LC_ALL="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
./certbot-auto certonly --standalone -d examples.blynk.cc

Cron job

@monthly /root/certbot-auto renew --standalone --pre-hook "/root/blynk-sketch-generator/stop_server.sh" --post-hook "/root/blynk-sketch-generator/start_server.sh"

Git

sudo apt-get install git

Download project

git clone https://github.com/blynkkk/blynk-sketch-generator.git

Install nodejs

curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
sudo apt-get install -y nodejs build-essential realpath

Install used modules

cd blynk-sketch-generator
npm install
npm install -g forever

Forward to correct port

sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
sudo iptables -t nat -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-port 8443
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].