Table of Contents | ||||
---|---|---|---|---|
|
Anchor | ||||
---|---|---|---|---|
|
A Gumband communication instance (only one can exist per device). Functions for this class are listed below:
...
GumbandConnection MyGumband;
Anchor | ||||
---|---|---|---|---|
|
Initiates the Gumband connection.
...
MyGumband.begin();
MyGumband.begin(1);
Anchor | ||||
---|---|---|---|---|
|
Sets the Hardware ID of the Gumband Hardware. This is a unique identifier generated by the Gumband UI. Each separate registered Gumband Hardware device receives its own ID. This ID is required to link Hardware to a specific Exhibit in the Gumband UI.
...
void id(const char* id);
Example Usage:
MyGumband.id(16);
MyGumband.id(“16”);
Anchor | ||||
---|---|---|---|---|
|
Set the Gumband master control server username. This must match the username created for this device within the Gumband UI.
...
MyGumband.username(“MarlonBando”);
Anchor | ||||
---|---|---|---|---|
|
Set the Gumband master control server password. This must match the password created for this device within the Gumband UI.
...
MyGumband.password(“P455W0RD!”);
Anchor | ||||
---|---|---|---|---|
|
Returns ‘1’ if the Hardware has a valid network connection.
...
if(MyGumband.connected() == 1) { //Connected to Network }
Anchor | ||||
---|---|---|---|---|
|
Returns ‘1’ if the Hardware has a valid master server connection.
...
if(MyGumband.connectedMaster() == 1) { //Connected to Master }
Anchor | ||||
---|---|---|---|---|
|
Returns ‘1’ if the Hardware has a valid Exhibit server connection.
...
if(MyGumband.connectedExhibit() == 1) { //Connected to Exhibit }
Anchor | ||||
---|---|---|---|---|
|
Publish a text message to the ‘event’ log.
...
MyGumband.event(“An event has occurred!”);
Anchor | ||||
---|---|---|---|---|
|
Publish a text message to the ‘error’ log.
...
MyGumband.error(“An error has occurred!”);
Anchor | ||||
---|---|---|---|---|
|
Publish a text message to the ‘debug’ log.
...
MyGumband.debug(“Something routine has occurred!”);
Anchor | ||||
---|---|---|---|---|
|
Print data to the Hardware USB serial port.
...
MyGumband.print(“Hello World!”);
MyGumband.print(25);
Anchor | ||||
---|---|---|---|---|
|
An instance of a Gumband property or endpoint. An individual instance must exist for every Gumband property in the Exhibit.
...
GumbandProperty MyProperty;
Anchor | ||||
---|---|---|---|---|
|
This function creates a named property within a named peripheral container and registers it with the Gumband server so we can publish or subscribe to it. A Gumband instance must first exist before this function will succeed.
...
MyProperty.begin(“PeripheralName”, “PropertyName”, gmbnd_button);
Anchor | ||||
---|---|---|---|---|
|
Publish data to the property endpoint.
...