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.

Class

Password

Name

evaluate()

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 Is the current guessed password equal to the target password?
Syntax
evaluate()
Returns Boolean: True if the guessed password is valid.
Usage Application
Updated on July 07, 2011 11:11:20pm PDT

Creative Commons License