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 has been archived by the owner on Jan 11, 2020. It is now read-only.
Hi,
I love this project and I wanted to use it for my first diy project. Unfortunately, I can't find everything I need in the documentation or in the ct magazine.
My goal is to have a text input on the http page, where you can set your door message. That message should be shown on the display. I startet like this:
I don't think it's the right way, because when I click "Save", it gets resetted to the standard message. Also, I don't want to show the wireless and mqqt settings page, once the wireless has been set up. Not using MQTT for now. How would you do it? Is Basecamp the right base to start from?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I love this project and I wanted to use it for my first diy project. Unfortunately, I can't find everything I need in the documentation or in the ct magazine.
My goal is to have a text input on the http page, where you can set your door message. That message should be shown on the display. I startet like this:
`#include <Basecamp.hpp>
Basecamp iot{
};
String doormessage = "Test Message !";
void setup() {
iot.begin();
iot.configuration.set("my-DoorMessage", doormessage);
iot.web.addInterfaceElement("DoorMessageDisplay", "input", "Türschildnachricht:", "#configform", "my-DoorMessage");
iot.web.setInterfaceElementAttribute("my-DoorMessage", "type", "text");
}
void loop() {
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
Serial.println("Türschildnachricht: ");
Serial.println(doormessage);
delay(5000);
}`
I don't think it's the right way, because when I click "Save", it gets resetted to the standard message. Also, I don't want to show the wireless and mqqt settings page, once the wireless has been set up. Not using MQTT for now. How would you do it? Is Basecamp the right base to start from?
The text was updated successfully, but these errors were encountered: