A mógłbyś pobrać sobie źrodła z maina: https://github.com/supla/supla-device ?
Od 25.11 było robione trochę zmian i możliwe, że coś poprawiałem w międzyczasie.
A mógłbyś pobrać sobie źrodła z maina: https://github.com/supla/supla-device ?
Ten soft jest na nowych SRW i na SmartBob.Maniek913 wrote: Mon Jan 05, 2026 6:22 pm Niestety zostałem odesłany z powrotem![]()
Zastanawiam się czym się różni wysyłane sterowania z aplikacji, clouda i bezpośrednio z urządzenia - jest możliwe że te same polecenia wywołują różne reakcje ?
Chciałbym skonfrontować ten problem z innymi - naprawdę nikt nie używa tej funkcji fasadówek?
U mnie także działa bez problemów pokazanych na filmiku. Sprawdzałem różne konfiguracje ustawień.klew wrote: Mon Jan 05, 2026 7:40 pmTen soft jest na nowych SRW i na SmartBob.Maniek913 wrote: Mon Jan 05, 2026 6:22 pm Niestety zostałem odesłany z powrotem![]()
Zastanawiam się czym się różni wysyłane sterowania z aplikacji, clouda i bezpośrednio z urządzenia - jest możliwe że te same polecenia wywołują różne reakcje ?
Chciałbym skonfrontować ten problem z innymi - naprawdę nikt nie używa tej funkcji fasadówek?
Ja to też uruchamiałem u siebie i u mnie działa. Ale będziemy szukać, aż znajdziemy problem![]()
Wrzuciłem powyższe na C3 i działa bez problemów.Maniek913 wrote: Mon Jan 05, 2026 12:16 pm Kod jakiego używam : (Płytka esp32 C3 superMini) i przykład "Roller Shutter"Code: Select all
/* Copyright (C) AC SOFTWARE SP. Z O.O. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <SuplaDevice.h> #include <supla/control/button.h> #include <supla/control/pin_status_led.h> #include <supla/control/roller_shutter.h> #include <supla/device/status_led.h> #include <supla/network/esp_web_server.h> #include <supla/network/esp_wifi.h> #include <supla/network/html/device_info.h> #include <supla/network/html/protocol_parameters.h> #include <supla/network/html/status_led_parameters.h> #include <supla/network/html/wifi_parameters.h> #include <supla/storage/littlefs_config.h> #define STATUS_LED_GPIO 8 Supla::ESPWifi wifi; Supla::LittleFsConfig configSupla; Supla::Device::StatusLed statusLed(STATUS_LED_GPIO, true); // inverted state Supla::EspWebServer suplaServer; void setup() { Serial.begin(115200); // HTML www component new Supla::Html::DeviceInfo(&SuplaDevice); new Supla::Html::WifiParameters; new Supla::Html::ProtocolParameters; new Supla::Html::StatusLedParameters; Supla::Control::RollerShutter *rs = new Supla::Control::RollerShutter(4, 3, false); Supla::Control::Button *buttonOpen = new Supla::Control::Button(1, true, true); Supla::Control::Button *buttonClose = new Supla::Control::Button(0, true, true); rs->addTiltFunctions(); // Add two LEDs to inform about roller shutter relay status // If inverted value is required, please add third parameter with true value //new Supla::Control::PinStatusLed( // 30, 24); // pin 30 status to be informed on pin 24 //new Supla::Control::PinStatusLed( // 31, 25); // pin 31 status to be informed on pin 25 // TODO(anyone): replace with addButton method on rs instance buttonOpen->addAction(Supla::OPEN_OR_STOP, *rs, Supla::ON_PRESS); buttonClose->addAction(Supla::CLOSE_OR_STOP, *rs, Supla::ON_PRESS); SuplaDevice.setInitialMode(Supla::InitialMode::StartInCfgMode); SuplaDevice.begin(); } void loop() { SuplaDevice.iterate(); }
A ja wczoraj z ciekawości wgrałem na wemosa d1 mini i też w aplikacji zamykało się na 3 razylukfud wrote: Tue Jan 06, 2026 1:01 pmWrzuciłem powyższe na C3 i działa bez problemów.Maniek913 wrote: Mon Jan 05, 2026 12:16 pm Kod jakiego używam : (Płytka esp32 C3 superMini) i przykład "Roller Shutter"Code: Select all
/* Copyright (C) AC SOFTWARE SP. Z O.O. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <SuplaDevice.h> #include <supla/control/button.h> #include <supla/control/pin_status_led.h> #include <supla/control/roller_shutter.h> #include <supla/device/status_led.h> #include <supla/network/esp_web_server.h> #include <supla/network/esp_wifi.h> #include <supla/network/html/device_info.h> #include <supla/network/html/protocol_parameters.h> #include <supla/network/html/status_led_parameters.h> #include <supla/network/html/wifi_parameters.h> #include <supla/storage/littlefs_config.h> #define STATUS_LED_GPIO 8 Supla::ESPWifi wifi; Supla::LittleFsConfig configSupla; Supla::Device::StatusLed statusLed(STATUS_LED_GPIO, true); // inverted state Supla::EspWebServer suplaServer; void setup() { Serial.begin(115200); // HTML www component new Supla::Html::DeviceInfo(&SuplaDevice); new Supla::Html::WifiParameters; new Supla::Html::ProtocolParameters; new Supla::Html::StatusLedParameters; Supla::Control::RollerShutter *rs = new Supla::Control::RollerShutter(4, 3, false); Supla::Control::Button *buttonOpen = new Supla::Control::Button(1, true, true); Supla::Control::Button *buttonClose = new Supla::Control::Button(0, true, true); rs->addTiltFunctions(); // Add two LEDs to inform about roller shutter relay status // If inverted value is required, please add third parameter with true value //new Supla::Control::PinStatusLed( // 30, 24); // pin 30 status to be informed on pin 24 //new Supla::Control::PinStatusLed( // 31, 25); // pin 31 status to be informed on pin 25 // TODO(anyone): replace with addButton method on rs instance buttonOpen->addAction(Supla::OPEN_OR_STOP, *rs, Supla::ON_PRESS); buttonClose->addAction(Supla::CLOSE_OR_STOP, *rs, Supla::ON_PRESS); SuplaDevice.setInitialMode(Supla::InitialMode::StartInCfgMode); SuplaDevice.begin(); } void loop() { SuplaDevice.iterate(); }
Rzeczywiście, testowałem jeszcze dziś na Esp32 C6 i to samo.Ok, to dobrze
Maniek pisał że u niego na C3 też jest ten problem.
Napiszcie proszę dokładnie krok po kroku co robicie i jak ustawiacie od momentu wgrania softu na czystą płytkę.
Screeny mile widziane.
Ustaw jak na screenie, będziesz miał logi na serial monitorze