You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 9, 2022. It is now read-only.
and real-life project [Hack GMC Geigercounter With Blynk](https://www.instructables.com/id/Hack-GMC-Geigercounter-With-Blynk/) of [Crosswalkersam](https://www.instructables.com/member/Crosswalkersam/)
59
+
and real-life project [Hack GMC Geigercounter With Blynk](https://www.instructables.com/id/Hack-GMC-Geigercounter-With-Blynk/) of [Crosswalkersam](https://www.instructables.com/member/Crosswalkersam/)
@@ -92,8 +92,8 @@ Enter your credentials, then click `Save`. After you restarted, you will see you
92
92
93
93
94
94
## Prerequisite
95
-
*Release `1.0.4` or newer of the [ESP32 core for Arduino](https://github.com/espressif/arduino-esp32)
96
-
*[`Blynk library 0.6.1 or later`](https://github.com/blynkkk/blynk-library/releases)
95
+
*`ESP32 core 1.0.4 or later`
96
+
*`Blynk library 0.6.1 or later`(https://www.arduino.cc/en/guide/libraries#toc3)
97
97
98
98
## Sample code
99
99
```
@@ -208,28 +208,68 @@ void loop()
208
208
}
209
209
```
210
210
211
-
and this is the terminal debug output when running both WiFi and BT at the same time using example [ESP32_BLE_WF](examples/ESP32_BLE_WF)
211
+
and this is the terminal debug output when running both WiFi and BT at the same time using example [Geiger_Counter_OLED_BT_BLE_WF](examples/Geiger_Counter_OLED_BT_BLE_WF)
212
212
213
213
```
214
214
215
-
Starting ESP32_BLE_WF
216
-
GPIO14 LOW, Use BLE
217
-
[51] Load configfile
218
-
[52] OK
219
-
[52] Header = ESP32_WFM, SSID = ***, PW = ***
220
-
[52] Server = account.duckdns.org, Port = 8080, Token = ****
221
-
[56] BT Token = ****, BLE Token = ****
222
-
[64] Board Name = Geiger-OLED-BLE-BT
223
-
Connecting Blynk via BLE, using auth = ****
224
-
[149]
215
+
216
+
Starting Geiger-Counter-OLED-BT-BLE-WF
217
+
Use WiFi to connect Blynk
218
+
[332] RFC925 Hostname = GeigerCounter-WiFi
219
+
[338] Calc Cksum = 0x3446, Read Cksum = 0x3446
220
+
[338] Header = ESP32_WFM, SSID = ****, PW = ****
221
+
[338] Server = ****.duckdns.org, Port = 8080, Token = ****
222
+
[344] BT Token = ****, BLE Token = ****
223
+
[352] Board Name = ESP32-BLE-WF
224
+
[355]
225
+
___ __ __
226
+
/ _ )/ /_ _____ / /__
227
+
/ _ / / // / _ \/ '_/
228
+
/____/_/\_, /_//_/_/\_\
229
+
/___/ v0.6.1 on ESP32
230
+
231
+
[371] con2WF: start
232
+
[1872] con2WF: con OK
233
+
[1872] IP = 192.168.2.92, GW = 192.168.2.1, SN = 255.255.0.0
234
+
[1872] DNS1 = 192.168.2.1, DNS2 = 0.0.0.0
235
+
[1872] bg: WiFi connected. Try Blynk
236
+
[1875] BlynkArduinoClient.connect: Connecting to ****.duckdns.org:8080
Copy file name to clipboardExpand all lines: library.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "BlynkESP32_BT_WF",
3
-
"version": "1.0.2",
3
+
"version": "1.0.3",
4
4
"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 ...",
Copy file name to clipboardExpand all lines: library.properties
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
name=BlynkESP32_BT_WF
2
-
version=1.0.2
2
+
version=1.0.3
3
3
author=Khoi Hoang
4
4
license=MIT
5
5
maintainer=Khoi Hoang <khoih.prog@gmail.com>
6
-
sentence=Enable inclusion of both ESP32 Blynk BT/BLE and WiFi libraries. Then run both WiFi and BT/BLE simultaneously, or select one to use at runtime after reboot.
7
-
paragraph=Eliminate hardcoding your Wifi and Blynk credentials and configuration data saved in either SPIFFS or EEPROM.
6
+
sentence=Enable inclusion of both ESP32 Blynk BT/BLE and WiFi libraries. Then select one at reboot or run both. Eliminate hardcoding your Wifi and Blynk credentials and configuration data saved in either SPIFFS or EEPROM.
7
+
paragraph=Library for inclusion of both ESP32 Blynk BT/BLE and WiFi libraries. Then select one at reboot or run both. Eliminate hardcoding your Wifi and Blynk credentials and configuration data saved in either SPIFFS or EEPROM.
0 commit comments