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.
| Class | Password |
||
|---|---|---|---|
| Name | append() |
||
| Examples | #include <Password.h> Password password = Password( "1234" ); void setup(){ Serial.begin(9600); password.append('1'); //add 1 to the guessed password password.append('2'); //add 2 to the guessed password password << '3' << '4'; //add 3 and 4 to the guessed password //should print true, since 1234 == 1234 Serial.println( password.evaluate() ? "true":"false" ); password.reset(); //reset the guessed password to NULL //should print false, since 1234 != NULL Serial.println( password.evaluate() ? "true":"false" ); password.set("qwerty"); //set target password to qwerty //should print true, since qwerty == qwerty Serial.println( password.is("qwerty") ? "true":"false" ); //should print false, since qwerty != qwirty Serial.println( password == "qwirty" ? "true":"false" ); } void loop(){/*nothing to loop*/} |
||
| Description | Append a char to the current guess. | ||
| Syntax | append(character). |
||
| Parameters |
|
||
| Returns | Boolean: False if there is no more space available in the buffer. | ||
| Usage | Application |

