For this one I have found a way through manually adding switches in my configuration.yaml file.
Blink is reacting with some delay, but it works.
Sharing for the ones who were looking for something similar (or have better to suggest):
# Camera Switch
switch:
- platform: template
switches:
switch_blink_cuisine:
friendly_name: "Caméra Cuisine"
value_template: "{{ is_state('binary_sensor.blink_cuisine_camera_armed', 'on') }}"
turn_on:
service: camera.enable_motion_detection
target:
entity_id: camera.blink_cuisine
turn_off:
service: camera.disable_motion_detection
target:
entity_id: camera.blink_cuisine
switch_blink_hall:
friendly_name: "Caméra Hall"
value_template: "{{ is_state('binary_sensor.blink_hall_d_entree_camera_armed', 'on') }}"
turn_on:
service: camera.enable_motion_detection
data:
entity_id: camera.blink_hall_d_entree
turn_off:
service: camera.disable_motion_detection
data:
entity_id: camera.blink_hall_d_entree