BLE extension help needed

Im doing an app with kodular using the BLE extension to trigger my sony camera shutter to take pictures. Connecting to the camera works, and listening to the notify works too so the Uuid’s are correct. When using Nrf connect to write Bytes i manage to trigger the shutter but trying the same thing with kodular and this extension doesnt do anything somehow, i will upload the xml file used with nRF connect as well as a screen shot of my blocks on kodular

<macro name="Capture" icon="PLAY">
   <assert-service description="Ensure 8000ff00-ff00-ffff-ffff-ffffffffffff service" uuid="8000ff00-ff00-ffff-ffff-ffffffffffff">
      <assert-characteristic description="Ensure 0000ff01-0000-1000-8000-00805f9b34fb characteristic" uuid="0000ff01-0000-1000-8000-00805f9b34fb">
         <property name="WRITE" requirement="MANDATORY"/>
      </assert-characteristic>
      <assert-characteristic description="Ensure 0000ff02-0000-1000-8000-00805f9b34fb characteristic" uuid="0000ff02-0000-1000-8000-00805f9b34fb">
         <property name="NOTIFY" requirement="MANDATORY"/>
      </assert-characteristic>
   </assert-service>
   <write description="Write 0x0107 to 0000ff01-0000-1000-8000-00805f9b34fb" characteristic-uuid="0000ff01-0000-1000-8000-00805f9b34fb" service-uuid="8000ff00-ff00-ffff-ffff-ffffffffffff" value="0107" type="WRITE_REQUEST"/>
   <sleep description="Now the macro will wait 1 seconds..." timeout="1000" />
   <write description="Write 0x0109 to 0000ff01-0000-1000-8000-00805f9b34fb" characteristic-uuid="0000ff01-0000-1000-8000-00805f9b34fb" service-uuid="8000ff00-ff00-ffff-ffff-ffffffffffff" value="0109" type="WRITE_REQUEST"/>
   <sleep description="Now the macro will wait 0.5 seconds..." timeout="500" />  
   <write description="Write 0x0108 to 0000ff01-0000-1000-8000-00805f9b34fb" characteristic-uuid="0000ff01-0000-1000-8000-00805f9b34fb" service-uuid="8000ff00-ff00-ffff-ffff-ffffffffffff" value="0108" type="WRITE_REQUEST"/>
   <sleep description="Now the macro will wait 0.5 seconds..." timeout="500" />
   <write description="Write 0x0106 to 0000ff01-0000-1000-8000-00805f9b34fb" characteristic-uuid="0000ff01-0000-1000-8000-00805f9b34fb" service-uuid="8000ff00-ff00-ffff-ffff-ffffffffffff" value="0106" type="WRITE_REQUEST"/>
</macro>

I found the problem, for anyone wondering the problem was that i need to do a write_request not a write_command. The default WriteBytes block is a Write_command, to do a write_request we need to use the block WriteBytesWithResponse. Hope that helps anyone