now working if sending the following message from terminal/shell: "can can1 tx standard 761 02 21 01" and I get the requested message 😊
I add some line to the code:
case 0x762: // AH
    {
      CAN_frame_t frame;
      if (d[0] == 16)
      {
        // Request CAC...
        frame.origin = m_can1;
        frame.FIR.U = 0;
        frame.FIR.B.DLC = 8;
        frame.FIR.B.FF = CAN_frame_std;
        frame.MsgID = 0x761;
        frame.data.u8[0] = 0x30;
        frame.data.u8[1] = 0x08;
        frame.data.u8[2] = 0x0A;
        m_can1->Write(&frame);
      }

      if(d[0] == 36)
        {

          //battery max capacity
          StandardMetrics.ms_v_bat_cac->SetValue(((d[3]*256 + d[4]) / 10.0));

          // battery remain capacity
          xmi_v_bat_cac_rem->SetValue(((d[5]*256 + d[6]) / 10.0));

          //max charging kW
          xmi_v_bat_max_input->SetValue(d[7]/4);
        }

      if(d[0] == 37)
        {
          //max outpu kW
          xmi_v_bat_max_output->SetValue(d[1]/4);
        }

    break;
    }

Tamás Kovács <kommykt@gmail.com> ezt írta (időpont: 2019. júl. 25., Cs, 20:57):
hi, Now i get a Lexia for Peugeot iOn and I get some useful data on can network, such as SOH and another metrics.

if Lexia connected and I create a OVMS can log. I see the following data:
167913.5261R117612211FFFFFFFFFF
167913.5361R11762102E611908F179
167913.5461R117613080AFFFFFFFFFF
167913.5761R11762220A4C315E15D
167913.5961R117622312C0FA0FB0
167913.6061R11762240F0F15A0E8A5
167913.6361R117622664000000
167914.0261R11762240F0F15A0E8A5
167914.0461R1176225FE00178757B
167914.0561R117622664000000
167914.4361R117613080AFFFFFFFFFF
167914.4461R11762210178330DB34E
167914.4761R117622312C0F90FB0
167914.4961R11762240F0F15A0E8A5
167914.8761R117612211FFFFFFFFFF
167914.8761R11762102E611908F179
167914.8961R117613080AFFFFFFFFFF
167914.9061R1176221017900DB34E
167914.9261R11762220A4C315E15D
167914.9661R1176225FE00179757B
167914.9861R117622664000000
167915.3161R117612211FFFFFFFFFF
I searching on google and find the following things the Mitsubishi Outlander PHEV (http://www.myoutlanderphev.com/forum/viewtopic.php?f=10&t=1796) use the same PID-s. 

And many more useable metrics if I can resolve this communication with ECU-s



--
Üdvözlettel:
Kovács Tamás