Newbie Here, no programming experience

I am new here, and I have no experience with coding. I tried to get someone to help me with my EUFY cameras and he was not able to do it. I have tried following this: GitHub - fuatakgun/eufy_security: Home Assistant integration to manage Eufy Security devices as cameras, home base stations, doorbells, motion and contact sensors.

I have copied and pasted the code, and done all the steps it tells me to, and they look the same, I have changed the name of his cameras to the ones I have but it still doesn’t work. Can someone help.

Please don’t post pictures of text. Post the text correctly formatted for the forum.

Your entity is not correct. It should be an entity_id. Like the example:

cards:
  - type: conditional
    conditions:
      - entity: camera.entrance  ### <----- an entity id of the form, domain.object_id

Yours:

cards:
  - type: conditional
    conditions:
      - entity: side camera  ### <----- not an entity id, looks more like the camera name. 

You have done this in many places.

Check in Developer Tools → States, but you probably want something like camera.side_camera.

Hi Tom, unless I post a picture of what I have done wrong, how will people know what I have done wrong without seeing it. Thanks for your help.

What tom_I means is copy the config text and paste it with the option showed below.
This way other forum user can make changes for you and post it back.

If you compare your code with the original one you will find that all your entitiy_id's are wrong formatted.

square: false
columns: 1
type: grid
cards:
  - type: conditional
    conditions:
      - entity: camera.side_camera
        state: idle
    card:
      show_state: true
      show_name: true
      type: picture-entity
      entity: camera.side_camera
      camera_image: camera.side_camera
      tap_action:
        action: call-service
        service: camera.turn_on
        data: {}
        target:
          entity_id: camera.side_camera
  - type: conditional
    conditions:
      - entity: side.camera
        state: streaming
    card:
      type: vertical-stack
      cards:
        - show_name: true
          show_icon: false
          type: button
          tap_action:
            action: call-service
            service: camera.turn_off
            data: {}
            target:
              entity_id: camera.side_camera
          entity: camera.side_camera
          name: Stop
        - type: custom:webrtc-camera
          entity: camera.side_camera

I am still getting mse: source 0 error: wrong response on DESCRIBE

This does not seem to be a correct entity_id.