433 mhz Remote 4 buttons read with arduino

Hi,
i have got a 4 button remote control with 433 mhz. Im using RCswitch.h with a sample, i can read button 1 and 2. But with button 3 and 4 nothing came up. Can someone help here, i think the remote is sending somethink outside the normal range.

Usind Arduino MEGA2560 and TX/RX433

#include <RCSwitch.h>

RCSwitch mySwitch = RCSwitch();

void setup() 
{
  Serial.begin(9600);
  mySwitch.enableReceive(0);  // Empfänger ist an Interrupt-Pin "0" - Das ist am UNO der Pin2
}

void loop() {
  if (mySwitch.available()) // Wenn ein Code Empfangen wird...
  {
    int value = mySwitch.getReceivedValue(); // Empfangene Daten werden unter der Variable "value" gespeichert.
  
    if (value == 0) // Wenn die Empfangenen Daten "0" sind, wird "Unbekannter Code" angezeigt.
    {
      Serial.println("Unbekannter Code");
    } 
    
    else // Wenn der Empfangene Code brauchbar ist, wird er hier an den Serial Monitor gesendet.
    {
      Serial.print("Empfangen: ");
      Serial.println( mySwitch.getReceivedValue() );
    }

    mySwitch.resetAvailable(); // Hier wird der Empfänger "resettet"
  }
}

Did you program the remote to use buttons 3 and 4? Did you program the remote to do anything, or is it just as you received it? Do you have the programming instructions?