Skip to content

Commit

Permalink
Fix UX issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Mar 29, 2021
1 parent 5e99401 commit cfd9b6f
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
5 changes: 5 additions & 0 deletions examples/Blynk.Edgent/Edgent_ESP32/BlynkEdgent.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ extern "C" {

#include "Settings.h"
#include <BlynkSimpleEsp32_SSL.h>

#ifndef BLYNK_NEW_LIBRARY
#error "Old version of Blynk library is in use. Please replace it with the new one."
#endif

#include "BlynkState.h"
#include "ConfigStore.h"
#include "ResetButton.h"
Expand Down
5 changes: 5 additions & 0 deletions examples/Blynk.Edgent/Edgent_ESP8266/BlynkEdgent.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ extern "C" {

#include "Settings.h"
#include <BlynkSimpleEsp8266_SSL.h>

#ifndef BLYNK_NEW_LIBRARY
#error "Old version of Blynk library is in use. Please replace it with the new one."
#endif

#include "BlynkState.h"
#include "ConfigStore.h"
#include "ResetButton.h"
Expand Down
3 changes: 3 additions & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ BLYNK_VAR_STRING KEYWORD2
BLYNK_DEBUG KEYWORD2
BLYNK_DEBUG_ALL KEYWORD2
BLYNK_PRINT KEYWORD2
BLYNK_TEMPLATE_ID KEYWORD2
BLYNK_DEVICE_NAME KEYWORD2
BLYNK_FIRMWARE_VERSION KEYWORD2

BLYNK_HEARTBEAT KEYWORD2
BLYNK_EXPERIMENTAL KEYWORD2
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Blynk",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"description": "Build a smartphone app for your project in minutes. Blynk allows creating IoT solutions easily. It supports WiFi, BLE, Bluetooth, Ethernet, GSM, USB, Serial. Works with many boards like ESP8266, ESP32, Arduino UNO, Nano, Due, Mega, Zero, MKR100, Yun, Raspberry Pi, Particle, Energia, ARM mbed, Intel Edison/Galileo/Joule, BBC micro:bit, DFRobot, RedBearLab, Microduino, LinkIt ONE ...",
"keywords": "sensors, control, device, smartphone, mobile, app, web, cloud, communication, protocol, iot, m2m, wifi, ble, bluetooth, ethernet, usb, serial, gsm, gprs, 3g, data, esp8266, http",
"authors":
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Blynk
version=1.0.0-beta.2
version=1.0.0-beta.3
author=Volodymyr Shymanskyy
license=MIT
maintainer=Volodymyr Shymanskyy <vshymanskyi@gmail.com>
Expand Down
8 changes: 6 additions & 2 deletions src/Blynk/BlynkConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
/***************************************************
* Change these settings to match your need
***************************************************/
#ifndef BLYNK_DEFAULT_DOMAIN
#ifdef BLYNK_TEMPLATE_ID
#define BLYNK_DEFAULT_DOMAIN "blynk.cloud"
#else
#define BLYNK_DEFAULT_DOMAIN "blynk-cloud.com"
#endif

Expand All @@ -27,7 +29,9 @@
* Professional settings
***************************************************/
// Library version.
#define BLYNK_VERSION "1.0.0-beta.2"
#define BLYNK_VERSION "1.0.0-beta.3"

#define BLYNK_NEW_LIBRARY

// Heartbeat period in seconds.
#ifndef BLYNK_HEARTBEAT
Expand Down

0 comments on commit cfd9b6f

Please sign in to comment.