add comment block for setFlags.

master
Rohit Grover 2014-11-28 08:31:05 +00:00
parent 4f8178b02f
commit d45e2b3166
1 changed files with 16 additions and 0 deletions

View File

@ -86,6 +86,22 @@ public:
ble.onDataWritten(this, &URIBeacon2Service::onDataWritten);
}
/**
* Update flags of the URIBeacon dynamically.
*
* @param[in] flagsIn
*
* ### UriBeacon Flags
* Bit | Description
* :---- | :----------
* 0 | Invisible Hint
* 1..7 | Reserved for future use. Must be zero.
*
* The `Invisible Hint` flag is a command for the user-agent that tells
* it not to access or display the UriBeacon. This is a guideline only,
* and is not a blocking method. User agents may, with user approval,
* display invisible beacons.
*/
void setFlags(uint8_t flagsIn) {
flags = flagsIn;
setup();