Pre-purchase question

If this has been covered, my apologies, but I’ve searched and can’t find anything.

Presumably, I need a computer to make good use of the carloop. What computer OS will I need? Can I use Mac OS X?

Thanks

Carloop itself plugs into one of these microprocessors (you need to get Carloop with one of these unless you already have one):

  • Particle Photon (with WiFi),
  • Particle Electron (with Cellular) or
  • Redbear Duo (with WiFi & Bluetooth Low Energy).
    (they all have USB as well)

Usually these devices can communicate over the internet with all sorts of other devices such as a Laptop, smartphone, tablet, etc.

However, you have to write your own firmware for the microprocessor (unless you stick to the simple examples provided by Carloop). The beauty of Carloop is that it will do almost anything on a car’s CANbus; you just have to write the firmware to do it. When it comes to writing firmware, a proper workstation is best with full keyboard and decent screen.

The development tools to write firmware are available for most operating systems. The Particle development tools are available for Windows, Mac OS or Lunix (usually Ubuntu). I think (but have not confirmed) that the Redbear development tools work on all the same platforms (Redbear is based on Particle).

For full details, check out particle.io and redbear.cc

You should be fine!

Thanks for your clear explanation.

I have another question you may be able to answer. Most vehicles now use a J2534 pass-through device and marque specific software to access the vehicle control modules. Am I correct in thinking that the carloop device does not do that, i.e. it doesn’t provide the J2534 pass-through?

Thanks :slight_smile:

@prolepsis,

Good question about J2534. The answer will be Yes and No; it will depend on the car and the manufacturer.

If the J2534 pass-through is done on the standard CANbus used for OBD-II, then it should be possible. The challenge will be to implement the [quote=“prolepsis, post:3, topic:392”]
marque specific software
[/quote]
so that it will run on the microprocessor you are using with Carloop. It all depends on finding or reverse-engineering that software. I would check forums dedicated to the car you are interested in to see if someone there has figured out the protocol. If it can be done, then Carloop should be able to do it.

If the J2534 is done over some other CANbus, then you might have to figure out how to access that bus. For example, someone with a Jeep was accessing another CANbus behind the radio; it was a bit tricky to do. Again, you can check forums dedicated to your car.

If the J2534 is done over some bus that is NOT a CANbus, then Carloop will not do it.

Hope that helps!

Great. Thank you so much for your help.