You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
AutoConnect/mkdocs/acjson.md

9.9 KiB

You can embed custom Web pages written in JSON into AutoConnect without AutoConnectAux & AutoConnectElements declaration. Custom Web page declaration by JSON can embed in the sketch as a fixed string or can store in the external file such as SPIFFS for stream loading. Also, you can also load and save AutoConnectElements objects individually.1

By providing the following JSON document to AutoConnect, you can include the custom Web page like the below:

A JSON document for AutoConnect can contain the custom Web page multiple. You can further reduce the sketch process by loading multiple pages of JSON document at once.

!!! caution "Need ArduinoJson v5" To process the AutoConnectAux & AutoConnectElements written in the JSON is you need to install the ArduinoJson version 5 library.

JSON objects & elements for the custom Web page

JSON document structure for AutoConnectAux

AutoConnectAux will configure custom Web pages with JSON objects. The elements that make up the object are as follows:

{
  "title" : title,
  "uri" : uri,
  "menu" : true | false,
  "element" : element_array
}

title

: A title of the custom Web page. This is string value. String specified title will be displayed in the AutoConnection menu.

uri

: String of URI path that specifies where to place the custom Web page. It needs to be a location from the root path including '/'.

menu

: This is a Boolean value indicating whether to include the custom Web page in the AutoConnect menu. If the page only responds to another page and you want to prevent the direct use from the menu, you can exclude from the AutoConnect menu. If this key is false, it will not appear in the menu.

element

: Describe an array of JSON objects as element_array. It is a JSON object array of the AutoConnectElements that make up the custom Web page.

!!! note "Order of elements on a custom Web page" The order in which AutoConnectElements are placed on a custom Web page is the order in the JSON document.

Multiple custom Web pages declaration in JSON document

You can put declarations of multiple custom Web pages in one JSON document. In that case, declare an array of each custom Web page with JSON. The following JSON document contains three custom Web pages:

[
  {
    "title" : "Page 1 title",
    "uri" : "/page1",
    "menu" : true,
    "element" : [
      {
        "name" : "caption",
        "type" : "ACText",
        "value" : "hello, world"
      },
      {
        "name" : "send",
        "type" : "ACSubmit",
        "uri" : "/page2"
      }
    ]
  },
  {
    "title" : "Page 1 title",
    "uri" : "/page2",
    "menu" : false,
    "element" : [
      {
        "name" : "responds",
        "type" : "ACText",
        "value" : "Good day"
      },
      {
        "name" : "send",
        "type" : "ACSubmit",
        "uri" : "/page3"
      }
    ]
  },
  {
    "title" : "Page 3 title",
    "uri" : "/page3",
    "menu" : true,
    "element" : [
      {
        "name" : "responds",
        "type" : "ACText",
        "value" : "bye"
      }
    ]
  }
]

JSON object for AutoConnectElements

JSON description for AutoConnectElements describes as an array in the element with arguments of each constructor.

{
  "name" : name,
  "type" : type,
  key_according_to_type : the_value | array_of_value,
  [ key_according_to_type : the_value | array_of_value ]
}

name

: A string of the name for the element.

type

: A string of the type for the element. For this type, specify the following string corresponding to each element.

key_according_to_type

This is different for each AutoConnectElements, and the key that can be specified by the type of AutoConnectElements is determined.

ACButton

: - value : Specifies the button label. This value also applies to the value attribute of an HTML button tag.
  • action : Specifies an action to be fire on a mouse click on the button. It is mostly used with a JavaScript to activate a script, or it directly describes a JavaScript.

ACCheckbox

: - value : Specifies the value to be supplied to the checkbox. It will be packed in the query string as name=value when the checkbox is ticked.
  • label : Specifies a label of the checkbox. Its placement is always to the right of the checkbox.
  • checked : Specifies checking status as a boolean value. The value of the checked checkbox element is packed in the query string and sent.

ACElement

: - value : Specifies the source code of generating HTML. The value is native HTML code and is output as HTML as it is.

ACInput

: - value : Specifies the initial text string of the input box. If this value is omitted, placeholder is displayed as the initial string.
  • label : Specifies a label of the input box. Its placement is always to the left of the input box.
  • placeholder : Specifies short hint of the input box.

ACRadio

: - value : Specifies the collection of radio buttons as an array element.
  • label : Specifies a label of the collection of radio buttons, not for each button. The arrangement will be the top or left side according to the arrange.
  • arrange : Specifies the orientation of the radio buttons. Its value accepts one of the following:

    horizontal : Horizontal arrangement.
    vertical : Vertical arrangement.

  • checked : Specifies the index number (1-based) of the radio buttons collection to be checked.

ACSelect

: - label : Specifies a label of the drop-down list. Its placement is always to the left of the drop-down list.
  • option : Specifies the initial value collection of the drop-down list as an array element.

ACSubmit

: - value : Specifies a label of the submit button.
  • uri : Specifies the URI to send form data when the button is clicked.

ACText

: - value : Specifies a content and also can contain the native HTML code, but remember that your written code is enclosed by the div tag.
  • style : Specifies the qualification style to give to the content and can use the style attribute format as it is.

!!! caution "AutoConnect's JSON parsing process is not perfect" It is based on ArduinoJson, but the process is simplified to save memory. As a result, even if there is an unnecessary key, it will not be an error. It is ignored.

Loading JSON document

AutoConnect supports loading of JSON document from the following instances:

  • String
  • PROGMEM
  • Stream

To load custom Web pages JSON document into AutoConnect, use the load function of the AutoConnect class. Its JSON document can read must be completed as a description interpretable by the ArduinoJson library. It cannot import custom Web pages if there are syntax errors for the JSON. If you can not see the custom Web page prepared by JSON, you can check the syntax with ArduinoJson Assistant. It is useful for pre-checking.

bool AutoConnect::load(const String& aux)
bool AutoConnect::load(const __FlashStringHelper* aux)
bool AutoConnect::load(Stream& aux)

An example of using each function is as follows.

AutoConnect  portal;

// Loading from String
const String aux = String("{\"title\":\"Page 1 title\",\"uri\":\"/page1\",\"menu\":true,\"element\":[{\"name\":\"caption\",\"type\":\"ACText\",\"value\":\"hello, world\"}]}");
portal.load(aux);

// Loading from PROGMEM
const char aux[] PROGMEM = R"raw(
{
  "title" : "Page 1 title",
  "uri" : "/page1",
  "menu" : true,
  "element" : [
    {
      "name" : "caption",
      "type" : "ACText",
      "value" : "hello, world"
    }
  ]
}
)raw";
portal.load(aux);

// Loading from Stream assumes "aux.json" file should be store in SPIFFS.
File aux = SPIFFS.open("aux.json", "r");
portal.load(aux);
aux.close();

AutoConnect passes the given JSON document directly to the parseObject() function of the ArduinoJson library for parsing. Therefore, the constraint of the parseObject() function is applied as it is in the parsing of the JSON document for the AutoConnect. That is, if the JSON string is read-only, duplicating the input string occurs and consumes more memory.

Saving JSON document

The sketch can persist AutoConnectElements as a JSON document and also uses this function to save the values entered on the custom Web page. And you can reload the saved JSON document into AutoConnectElements as the field in a custom Web page using the load function.


  1. Loading and saving AutoConnect parameters adopt this method.