forked from blynkkk/blynk-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlynkSimpleFishino.h
119 lines (100 loc) · 3.09 KB
/
BlynkSimpleFishino.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/**
* @file BlynkSimpleFishino.h
* @author Volodymyr Shymanskyy
* @license This project is released under the MIT License (MIT)
* @copyright Copyright (c) 2015 Volodymyr Shymanskyy
* @date Jun 2016
* @brief
*
*/
#ifndef BlynkSimpleFishino_h
#define BlynkSimpleFishino_h
#ifndef BLYNK_INFO_CONNECTION
#define BLYNK_INFO_CONNECTION "Fishino"
#endif
#ifdef ESP8266
#error This code is not intended to run on the ESP8266 platform! Please check your Tools->Board setting.
#endif
#include <BlynkApiArduino.h>
#include <Blynk/BlynkProtocol.h>
#include <Adapters/BlynkArduinoClient.h>
#include <Fishino.h>
class BlynkFishino
: public BlynkProtocol<BlynkArduinoClient>
{
typedef BlynkProtocol<BlynkArduinoClient> Base;
public:
BlynkFishino(BlynkArduinoClient& transp)
: Base(transp)
{}
void connectWiFi(const char* ssid, const char* pass)
{
BLYNK_LOG2(BLYNK_F("Connecting to "), ssid);
SPI.begin();
SPI.setClockDivider(SPI_CLOCK_DIV2);
while(!Fishino.reset()) {
BLYNK_LOG1(BLYNK_F("Fishino RESET FAILED"));
}
Fishino.setMode(STATION_MODE);
if (pass && strlen(pass)) {
while (!Fishino.begin(ssid, pass)) {
BlynkDelay(500);
}
} else {
while (!Fishino.begin(ssid)) {
BlynkDelay(500);
}
}
BLYNK_LOG1(BLYNK_F("Connected to WiFi"));
Fishino.staStartDHCP();
while(Fishino.status() != STATION_GOT_IP)
{
BlynkDelay(500);
}
IPAddress myip = Fishino.localIP();
BLYNK_LOG_IP("IP: ", myip);
}
void config(const char* auth,
const char* domain = BLYNK_DEFAULT_DOMAIN,
uint16_t port = BLYNK_DEFAULT_PORT)
{
Base::begin(auth);
this->conn.begin(domain, port);
}
void config(const char* auth,
IPAddress ip,
uint16_t port = BLYNK_DEFAULT_PORT)
{
Base::begin(auth);
this->conn.begin(ip, port);
}
void begin(const char* auth,
const char* ssid,
const char* pass,
const char* domain = BLYNK_DEFAULT_DOMAIN,
uint16_t port = BLYNK_DEFAULT_PORT)
{
connectWiFi(ssid, pass);
config(auth, domain, port);
while(this->connect() != true) {}
}
void begin(const char* auth,
const char* ssid,
const char* pass,
IPAddress ip,
uint16_t port = BLYNK_DEFAULT_PORT)
{
connectWiFi(ssid, pass);
config(auth, ip, port);
while(this->connect() != true) {}
}
};
#if !defined(NO_GLOBAL_INSTANCES) && !defined(NO_GLOBAL_BLYNK)
static FishinoClient _blynkFishinoClient;
static BlynkArduinoClient _blynkTransport(_blynkFishinoClient);
BlynkFishino Blynk(_blynkTransport);
#else
extern BlynkFishino Blynk;
#endif
#include <BlynkWidgets.h>
#endif