Help Atlas scientific Wi-Fi Hydroponics Kit calibrating conductivity probe

Hi,
I found a code in the web explaining how to implement the calibration of the ph probe. It worked… Then I tried to do the same with the ec probe. But all I tried untill now did not work. I have the k 0.1 probe. I don’t get how to get the comands for the working ph calibration, because in the datasheet it looks a bit diferent. I would be very happy if there is someone who can help me.

# PH Sonde kalibrieren

- platform: template
  name: "G1 pH clear calibration"
  on_press:
    then:
      - lambda: |-
          id(phg1_ezo).clear_calibration();

- platform: template
  name: "G1 pH Calibration 7.00"
  on_press:
    then:
      - lambda: |-
          id(phg1_ezo).set_calibration_point_mid(7.00);

- platform: template
  name: "G1 pH Calibration 4.00"
  on_press:
    then:
      - lambda: |-
          id(phg1_ezo).set_calibration_point_low(4.00);

- platform: template
  name: "G1 pH Calibration 10.00"
  on_press:
    then:
      - lambda: |-
          id(phg1_ezo).set_calibration_point_high(10.00);

- platform: template
  name: "G1 pH verify calibration"
  on_press:
    then:
      - lambda: |-
          id(phg1_ezo).send_custom("Cal,?");



# EC Sonde kalibieren

- platform: template 
  name: "G1 EC Clear Calibration"
  on_press:
    then:
      - lambda: |-
          id(ecg1_ezo).clear_calibration();

- platform: template
  name: "G1 EC Set Probe Type K 0.1"
  on_press:
    then:
      - lambda: |-
          id(ecg1_ezo).send_custom("ec:k,0.1");


- platform: template
  name: "G1 EC Calibration Dry"
  on_press:
    then:
      - lambda: |-  
          id(ecg1_ezo).send_custom("Cal,dry"); 

- platform: template
  name: "G1 EC Low Point Calibration"
  on_press:
    then:
      - lambda: |-
          id(ecg1_ezo).send_custom("Cal,low,84");

- platform: template
  name: "G1 EC High Point Calibration"
  on_press:
    then:
      - lambda: |-
          id(ecg1_ezo).send_custom("Cal,high,1413");