mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
Модуль GoogleSheet, Уточнил платформу для esp_2mb
This commit is contained in:
@@ -34,6 +34,10 @@
|
||||
"path": "src/modules/virtual/Cron",
|
||||
"active": true
|
||||
},
|
||||
{
|
||||
"path": "src/modules/virtual/GoogleSheet",
|
||||
"active": false
|
||||
},
|
||||
{
|
||||
"path": "src/modules/virtual/Loging",
|
||||
"active": true
|
||||
|
||||
@@ -34,6 +34,10 @@
|
||||
"path": "src/modules/virtual/Cron",
|
||||
"active": true
|
||||
},
|
||||
{
|
||||
"path": "src/modules/virtual/GoogleSheet",
|
||||
"active": false
|
||||
},
|
||||
{
|
||||
"path": "src/modules/virtual/Loging",
|
||||
"active": true
|
||||
|
||||
@@ -79,7 +79,7 @@ build_flags = -Desp8266_2mb="esp8266_2mb"
|
||||
framework = arduino
|
||||
board = d1_wroom_02
|
||||
board_build.ldscript = eagle.flash.2m1m.ld
|
||||
platform = espressif8266
|
||||
platform = espressif8266 @4.2.0
|
||||
monitor_filters = esp8266_exception_decoder
|
||||
upload_speed = 921600
|
||||
monitor_speed = 115200
|
||||
@@ -100,7 +100,7 @@ build_flags = -Desp8266_2mb_ota="esp8266_2mb_ota"
|
||||
framework = arduino
|
||||
board = d1_wroom_02
|
||||
board_build.ldscript = eagle.flash.2m256.ld
|
||||
platform = espressif8266
|
||||
platform = espressif8266 @4.2.0
|
||||
monitor_filters = esp8266_exception_decoder
|
||||
upload_speed = 921600
|
||||
monitor_speed = 115200
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
],
|
||||
"about": {
|
||||
"authorName": "Bubnov Mikhail",
|
||||
"authorContact": "https://t.me/Mitchel",
|
||||
"authorContact": "https://t.me/Mit4bmw",
|
||||
"authorGit": "https://github.com/Mit4el",
|
||||
"exampleURL": "https://iotmanager.org/wiki",
|
||||
"specialThanks": "",
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
],
|
||||
"about": {
|
||||
"authorName": "Bubnov Mikhail",
|
||||
"authorContact": "https://t.me/Mitchel",
|
||||
"authorContact": "https://t.me/Mit4bmw",
|
||||
"authorGit": "https://github.com/Mit4el",
|
||||
"exampleURL": "https://iotmanager.org/wiki",
|
||||
"specialThanks": "",
|
||||
|
||||
89
src/modules/virtual/GoogleSheet/GoogleSheet.cpp
Normal file
89
src/modules/virtual/GoogleSheet/GoogleSheet.cpp
Normal file
@@ -0,0 +1,89 @@
|
||||
|
||||
#include "Global.h"
|
||||
#include "classes/IoTItem.h"
|
||||
|
||||
String URL = "https://script.google.com/macros/s/";
|
||||
long interval;
|
||||
|
||||
class GoogleSheet : public IoTItem
|
||||
{
|
||||
private:
|
||||
String id;
|
||||
String logid;
|
||||
String scid = "";
|
||||
String shname = "";
|
||||
bool init = false;
|
||||
public:
|
||||
GoogleSheet(String parameters) : IoTItem(parameters)
|
||||
{
|
||||
jsonRead(parameters, F("id"), id);
|
||||
jsonRead(parameters, F("logid"), logid);
|
||||
jsonRead(parameters, F("scid"), scid);
|
||||
jsonRead(parameters, F("shname"), shname);
|
||||
jsonRead(parameters, F("int"), interval);
|
||||
interval = interval * 1000 * 60; // приводим к милисекундам
|
||||
}
|
||||
|
||||
void doByInterval()
|
||||
{
|
||||
if (WiFi.status() == WL_CONNECTED)
|
||||
{
|
||||
String value = getItemValue(logid);
|
||||
String urlFinal = URL + scid + "/exec?"+"sheet=" + shname + "&id=" + logid + "&value=" + value;
|
||||
if (!init){ init=true; urlFinal = urlFinal + "&init=1";}
|
||||
|
||||
HTTPClient http;
|
||||
#if defined ESP8266
|
||||
WiFiClientSecure client;
|
||||
client.setInsecure();
|
||||
if (!http.begin(client, urlFinal))
|
||||
{
|
||||
#elif defined ESP32
|
||||
WiFiClient client;
|
||||
if (!http.begin(urlFinal))
|
||||
{
|
||||
#endif
|
||||
SerialPrint("I", F("GoogleSheet"), "connection failed ");
|
||||
}
|
||||
http.setFollowRedirects(HTTPC_STRICT_FOLLOW_REDIRECTS);
|
||||
http.addHeader("Content-Type", "application/x-www-form-urlencoded");
|
||||
int httpCode = http.GET();
|
||||
String payload = http.getString();
|
||||
SerialPrint("<-", F("GoogleSheet"), "URL: " + urlFinal);
|
||||
SerialPrint("->", F("GoogleSheet"), "URL: " + urlFinal + ", server: " + httpCode);
|
||||
if (httpCode > 0)
|
||||
{
|
||||
SerialPrint("->", F("GoogleSheet"), "msg from server: " + (String)payload.c_str());
|
||||
}
|
||||
http.end();
|
||||
}
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
if (enableDoByInt)
|
||||
{
|
||||
currentMillis = millis();
|
||||
difference = currentMillis - prevMillis;
|
||||
if (difference >= interval)
|
||||
{
|
||||
prevMillis = millis();
|
||||
this->doByInterval();
|
||||
}
|
||||
}
|
||||
}
|
||||
~GoogleSheet(){};
|
||||
};
|
||||
|
||||
void *getAPI_GoogleSheet(String subtype, String param)
|
||||
{
|
||||
|
||||
if (subtype == F("GoogleSheet"))
|
||||
{
|
||||
return new GoogleSheet(param);
|
||||
}
|
||||
else
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
51
src/modules/virtual/GoogleSheet/modinfo.json
Normal file
51
src/modules/virtual/GoogleSheet/modinfo.json
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"menuSection": "Виртуальные элементы",
|
||||
"configItem": [
|
||||
{
|
||||
"global": 0,
|
||||
"name": "GoogleSheet",
|
||||
"type": "Reading",
|
||||
"subtype": "GoogleSheet",
|
||||
"id": "sheet",
|
||||
"widget": "nil",
|
||||
"page": "",
|
||||
"descr": "",
|
||||
"int": 5,
|
||||
"logid": "id",
|
||||
"scid": "Script_ID",
|
||||
"shname": "Logger"
|
||||
}
|
||||
],
|
||||
"about": {
|
||||
"authorName": "Bubnov Mikhail",
|
||||
"authorContact": "https://t.me/Mit4bmw",
|
||||
"authorGit": "https://github.com/Mit4el",
|
||||
"exampleURL": "https://iotmanager.org/wiki",
|
||||
"specialThanks": "",
|
||||
"moduleName": "GoogleSheet",
|
||||
"moduleVersion": "1.0",
|
||||
"usedRam": {
|
||||
"esp32_4mb": 10,
|
||||
"esp8266_4mb": 10
|
||||
},
|
||||
"title": "Логирование в Google таблицы",
|
||||
"moduleDesc": "Расширение позволяющее логировать любую величину в Google таблицы. Инструкция https://drive.google.com/file/d/1VuI06arObNfH3rsOSHKww1tyhfgqXd9F/view?usp=sharing",
|
||||
"propInfo": {
|
||||
"int": "Интервал логирования в минутах",
|
||||
"logid": "ID величины которую будем логировать",
|
||||
"scid": "Идентификатор развертывания Google Apps (script id)",
|
||||
"shname": "Наименование листа в таблице (sheet name)"
|
||||
}
|
||||
},
|
||||
"defActive": false,
|
||||
"usedLibs": {
|
||||
"esp32_4mb": [],
|
||||
"esp8266_4mb": [],
|
||||
"esp8266_1mb": [],
|
||||
"esp8266_1mb_ota": [],
|
||||
"esp8285_1mb": [],
|
||||
"esp8285_1mb_ota": [],
|
||||
"esp8266_2mb": [],
|
||||
"esp8266_2mb_ota": []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user