Libraries
\ Password
Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
| Name |
Password |
| Examples |
#include <Password.h>
Password password = Password( "1234" );
void setup(){
Serial.begin(9600);
password.append('1');
password.append('2');
password << '3' << '4';
Serial.println( password.evaluate() ? "true":"false" );
password.reset();
Serial.println( password.evaluate() ? "true":"false" );
password.set("qwerty");
Serial.println( password.is("qwerty") ? "true":"false" );
Serial.println( password == "qwirty" ? "true":"false" );
}
void loop(){}
|
| Description |
Initialize this Password. |
| Syntax |
Password(pass)
|
| Methods |
|
| Parameters |
| pass |
char*: The initial password. |
|
|
|
| Returns |
None |
| Usage |
Application |
Updated on July 07, 2011 11:11:19pm PDT