<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Gregg,<div class=""><br class=""></div><div class="">We really need to know exactly what he is doing, and with what protocols.</div><div class=""><br class=""></div><div class="">From the way you seem to describe it, you:</div><div class=""><br class=""></div><div class=""><ol class="MailOutline"><li class="">Have a custom app, in react native</li><li class="">You have a custom server, in NodeJS</li><li class="">You presumably have some custom protocol/api between your app and server</li><li class="">Your NodeJS server is talking to the OVMS server using your own implementation of v2 protocol</li></ol><div><br class=""></div><div>Is that correct? If so, then #4 is the only issue. The V2 protocol is fairly well documented, here:</div><div><br class=""></div></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div><a href="https://docs.openvehicles.com/en/latest/protocol_v2/index.html" class="">https://docs.openvehicles.com/en/latest/protocol_v2/index.html</a></div></div></blockquote><div class=""><div><br class=""></div><div>It is proprietary and the initial negotiation is complicated, but if you have established the crypto connection and received the data, then you have done the hard part. Issuing commands should be easy.</div><div><br class=""></div><div>In v2 protocol, locking/unlocking is performed via the ā€œCā€ command.</div><div><br class=""></div><div>Probably easiest to look at the sample code in the iOS or Android Apps to see how that is done. For iOS, see:</div><div><br class=""></div></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div><a href="https://github.com/openvehicles/Open-Vehicle-iOS/blob/master/OpenVehicleApp/ovms/ovmsAppDelegate.m" class="">https://github.com/openvehicles/Open-Vehicle-iOS/blob/master/OpenVehicleApp/ovms/ovmsAppDelegate.m</a></div></div><div><br class=""></div><div>(The commandIssue method, and how it is called)</div></blockquote><div class=""><div><br class=""></div><div>Regards, Mark.</div><div><br class=""><blockquote type="cite" class=""><div class="">On 3 Aug 2022, at 11:03 PM, gregg hansen <<a href="mailto:gregg@rabbitev.com" class="">gregg@rabbitev.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Pablo has not been able to access the list.  He is getting authentication errors, so while he works through that I thought I would answer for him...<div class=""><br class=""></div><div class=""><blockquote style="margin:0 0 0 40px;border:none;padding:0px" class=""><div class="">"The MP commands are the raw data I am trying to send to the car to open and close the car."</div><div class=""><br class=""></div></blockquote><div class="">The devices are using the V2 server, so I think fixed MP commands make the most sense.  Pablo is trying to figure out how to make that work, and so far has not been successful.<br class=""><div class=""><br class=""></div><div class=""><br class=""></div></div></div></div><br class=""><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Jul 31, 2022 at 2:26 AM Michael Balzer <<a href="mailto:dexter@expeedo.de" class="">dexter@expeedo.de</a>> wrote:<br class=""></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
  
    
  
  <div class="">
    Pablo,<br class="">
    <br class="">
    a bit more information on how you connect to the car would be
    helpful here.<br class="">
    <br class="">
    Arbitrary remote shell command execution is supported by the
    module's HTTP API (/api/execute), the module's SSH server, the "V2
    protocol" server via MP command 7 and any "V3" (MQTT) server via the
    /client/command topic scheme. Plus there's a secondary
    (non-standard) HTTP command API available on my server
    <a href="http://ovms.dexters-web.de/" target="_blank" class="">ovms.dexters-web.de</a> (public API of my custom web shell).<br class="">
    <br class="">
    Lock & unlock are also available as fixed MP commands (20,22) on
    a V2 server, along with a set of other standard App calls. These do
    not run via the shell but translate to direct internal execution.<br class="">
    <br class="">
    Command execution has not yet been implemented for the "V2" server's
    HTTP API. But you can of course implement that if you use that API.<br class="">
    <br class="">
    Docs:<br class="">
    <ul class="">
      <li class=""><a href="https://docs.openvehicles.com/en/latest/components/ovms_webserver/docs/index.html#authorization" target="_blank" class="">https://docs.openvehicles.com/en/latest/components/ovms_webserver/docs/index.html#authorization</a></li>
      <li class=""><a href="https://docs.openvehicles.com/en/latest/userguide/console.html#ssh-console" target="_blank" class="">https://docs.openvehicles.com/en/latest/userguide/console.html#ssh-console</a><br class="">
      </li>
      <li class=""><a href="https://docs.openvehicles.com/en/latest/protocol_v2/commands.html#execute-sms-command" target="_blank" class="">https://docs.openvehicles.com/en/latest/protocol_v2/commands.html#execute-sms-command</a></li>
      <ul class="">
        <li class=""><a href="https://docs.openvehicles.com/en/latest/protocol_v2/commands.html#lock-car" target="_blank" class="">https://docs.openvehicles.com/en/latest/protocol_v2/commands.html#lock-car</a></li>
        <li class=""><a href="https://docs.openvehicles.com/en/latest/protocol_v2/commands.html#unlock-car" target="_blank" class="">https://docs.openvehicles.com/en/latest/protocol_v2/commands.html#unlock-car</a></li>
      </ul>
      <li class=""><a href="http://lists.openvehicles.com/pipermail/ovmsdev/2018-July/012641.html" target="_blank" class="">http://lists.openvehicles.com/pipermail/ovmsdev/2018-July/012641.html</a><br class="">
      </li>
      <li class=""><a href="http://lists.openvehicles.com/pipermail/ovmsdev/2018-July/012696.html" target="_blank" class="">http://lists.openvehicles.com/pipermail/ovmsdev/2018-July/012696.html</a></li>
      <li class=""><a href="https://docs.openvehicles.com/en/latest/protocol_httpapi/requests.html#not-yet-implemented" target="_blank" class="">https://docs.openvehicles.com/en/latest/protocol_httpapi/requests.html#not-yet-implemented</a><br class="">
      </li>
    </ul>
    Which one are you referring to?<br class="">
    <br class="">
    Regards,<br class="">
    Michael<br class="">
    <br class="">
    <br class="">
    <div class="">Am 29.07.22 um 19:28 schrieb Pablo
      Cabrera:<br class="">
    </div>
    <blockquote type="cite" class="">
      
      <div dir="ltr" class="">Hello OVMS team, we are currently working with an
        implementation with OVMS in a react native app with a NodeJS
        back-end.<br class="">
        Currently we can connect with the cars and rescue some data like
        the status of the battery or GPS location, but now we need to
        send commands to lock and unlock the cars from the same app,
        when we send a command I get a response that the command is
        received in the car, but the command is not executed in the
        bash.<br class="">
        <br class="">
        I don't know if you can send me more info about how to make the
        car receive bash commands from remote connections, or how can I
        send it from the NodeJs server into the bash of the car.<br class="">
        <br class="">
        Thanks for your time and help.<br class="">
      </div>
      <br class="">
      <fieldset class=""></fieldset>
      <pre class="">_______________________________________________
OvmsDev mailing list
<a href="mailto:OvmsDev@lists.openvehicles.com" target="_blank" class="">OvmsDev@lists.openvehicles.com</a>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" target="_blank" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>
</pre>
    </blockquote>
    <br class="">
    <pre cols="72" class="">-- 
Michael Balzer * Helkenberger Weg 9 * D-58256 Ennepetal
Fon 02333 / 833 5735 * Handy 0176 / 206 989 26</pre>
  </div>

_______________________________________________<br class="">
OvmsDev mailing list<br class="">
<a href="mailto:OvmsDev@lists.openvehicles.com" target="_blank" class="">OvmsDev@lists.openvehicles.com</a><br class="">
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" rel="noreferrer" target="_blank" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class="">
</blockquote></div><br clear="all" class=""><div class=""><br class=""></div>-- <br class=""><div dir="ltr" class="gmail_signature"><div dir="ltr" class=""><img width="96" height="57" src="https://ci3.googleusercontent.com/mail-sig/AIorK4xhCuCRALYJ2mpc-mSdek6d5LGYFtTNIZrrh1CpRMbWGhgeniT02-ajiXN7LX_VkGeMmFGqc4s" class=""><br class=""><div class="">RabbitEV</div><div class="">Driving Electric Cars</div><div class=""><a href="http://RabbitEV.com" class="">RabbitEV.com</a></div></div></div>
_______________________________________________<br class="">OvmsDev mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev<br class=""></div></blockquote></div><br class=""></div></body></html>