EspHome 433mhz cant get the sender to work

I have tried 2 sets of recievers and senders. Both recievers work just nice. But i cant get the sender to work. I am out of ideas what to try…

When i press my screen remote the debug log from esp home shows me this:

[10:53:44][D][remote.rc_switch:243]: Received RCSwitch Raw: protocol=2 data='00101111100'
[10:53:44][D][remote.rc_switch:243]: Received RCSwitch Raw: protocol=2 data='00101111100'
[10:53:44][D][remote.rc_switch:243]: Received RCSwitch Raw: protocol=2 data='00101111100'
[10:53:44][D][remote.rc_switch:243]: Received RCSwitch Raw: protocol=2 data='00101111100'

When i press the buttons on the HA i get that the code is sent. but no log that it gets recieved… also my screen does not beeb.

[10:52:40][D][switch:021]: 'Projector Screen DOWN' Turning ON.
[10:52:40][D][remote_transmitter:066]: Sending remote code...
[10:52:44][D][switch:021]: 'Projector Screen DOWN' Turning ON.
[10:52:44][D][remote_transmitter:066]: Sending remote code...
[10:52:47][D][switch:021]: 'Projector Screen STOP' Turning ON.
[10:52:47][D][remote_transmitter:066]: Sending remote code...

Here is the config:


esphome:
  name: meoooow
  platform: ESP8266
  board: nodemcuv2

remote_receiver:
  pin:  
    number: D1 
  dump:
    - rc_switch
  tolerance: 40%
  filter: 250us
  idle: 4ms
  buffer_size: 3kb


remote_transmitter:
  pin: D2
  carrier_duty_percent: 100%

switch:
  - platform: template
    name: Projector Screen DOWN
    turn_on_action:
      - remote_transmitter.transmit_rc_switch_raw:
          code:  '00101111100' 
          protocol: 2 
          
  - platform: template
    name: Projector Screen UP
    turn_on_action:
      - remote_transmitter.transmit_rc_switch_raw:
          code:  '00101111101' 
          protocol: 2 
          
  - platform: template
    name: Projector Screen STOP
    turn_on_action:
      - remote_transmitter.transmit_rc_switch_raw:
          code:  '00101111101' 
          protocol: 2 
 

I am on end what to try else… the reciever just wont send…

This is the set im using:


Here is the board im using:
pls help :crying_cat_face:

@Sangoku hey I’m having the same problem. Did you find a solution to this?