You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
783 B
C++
36 lines
783 B
C++
// пример работы через SoftSerial при помощи hub stream
|
|
|
|
#include <Arduino.h>
|
|
|
|
// можно выключить остальную связь
|
|
#define GH_NO_HTTP
|
|
#define GH_NO_WS
|
|
#define GH_NO_MQTT
|
|
|
|
#include <GyverHub.h>
|
|
GyverHub hub;
|
|
|
|
// SoftwareSerial на пинах 2 и 3, подключен Bluetooth
|
|
#include <SoftwareSerial.h>
|
|
SoftwareSerial bt(2, 3);
|
|
|
|
void build(gh::Builder& b) {
|
|
static int val;
|
|
b.Title(F("Hello!"));
|
|
b.Slider(&val);
|
|
}
|
|
|
|
void setup() {
|
|
bt.begin(9600);
|
|
|
|
// подключить экземпляр любого Stream-класса
|
|
hub.stream.config(&bt, gh::Connection::Bluetooth);
|
|
|
|
hub.config(F("MyDevices"), F("AVR"), F(""));
|
|
hub.onBuild(build);
|
|
hub.begin();
|
|
}
|
|
|
|
void loop() {
|
|
hub.tick();
|
|
} |