Stamp Plot LIte

Estoy intentando llevar a cabo un programa para mostrar en el Stamp Plot Lite el estado de 2 pulsadores. Lo que me ocurre es que sólo consigo mostrar uno de los pulsadores. Alguien me puede ayudar para mostrar el estado de los 2 pulsadores. Gracias de antemano.

#define pulsador1 2
#define pulsador2 4
void setup() 
{
  Serial.begin(9600);
  Serial.print("!RSET");
  Serial.print((char)13);
}
void loop() 
{ 
  byte estado1 = digitalRead(pulsador1);
  byte estado2 = digitalRead(pulsador2);
  if (estado2 == LOW) 
    {
      estado2 == 10;
    }
  else
    {
      estado2 == 11;
    }
  Serial.println(estado1);
  Serial.println(estado2);
  delay(100);
}

Hola,
En la ayuda del soft te explica el formato que tienes que enviar para que se procese como un valor digital:

Any string sent beginning with % will be processed as digital values. A separate digital plot will be started for each binary value in the string.
For example, "%1001" will plot 4 digital values. Up to 9 values may be sent. Once digital plots are started, caution should be used to always send the same number of bits since the plots are position order-dependent.

Saludos

Igor R.