Parameters

Password Input (Pro)

Pro Feature

This is an exclusive feature of NetWizard Pro. Check it out here.

Password Input

Similar to Input, a Password Input parameter type is used when you want to collect sensitive information from the user. For example: passwords and other settings relevant to your application. This type of input field will mask the value entered by the user.

Constructor

The constructor of Password Input parameter type takes 3 useful parameters:

  • name - The name of the parameter
  • value - The default value of the parameter (optional - can be set as empty string)
  • placeholder - The placeholder which is displayed when the input is empty (optional - can be set as empty string)
NetWizardParameter nw_input(&NW, NW_PASSWORD_INPUT, "Name", "Value", "Placeholder");

API Reference

Initialization

NetWizard NW(&server);

NetWizardParameter nw_input(&NW, NW_PASSWORD_INPUT, "MQTT Password", "", "Enter Password"); // <-- add this line

void setup() {
  ...
}

void loop() {
  ...
}

Getters

// Store the value of the input in `val` using `getValue`
String val;
nw_input.getValue(val);
String val = nw_input.getValueStr(); // <-- get value inline

Setters

// Set the value of the input using `setValue`
nw_input.setValue("Value123");
Previous
Input