Lego Mindstorms ev3

May 14, 2019 at 3:37pm
Is the c++ language compatible with Lego Mindstorms ev3 and if it is, what do I need to do to to get it to work?
May 14, 2019 at 3:46pm
c++ is a compiled language. Even if this (?game? what is is it?) were programmed in c++, you could not see the source code, only the executable machine code, so you cannot just edit the program if this is what you are thinking.

Most games that support user modifications do not do it via c++, they do it via Lua scripting language or something like it. If the program provides hooks to allow you to inject your own code/mods, there should be some online info about how to do this.

If you are trying to hack it, c++ is good at that. But this is possibly illegal depending on what you are doing and its not trivial, it will take a couple of years to get good enough to modify a program that way.
Last edited on May 14, 2019 at 3:48pm
May 14, 2019 at 5:47pm
it is a lego robot that runs on a condenced version of lab view if you look it up you will get lots of pictures. No I am not trying to hack but thanks for the idea.
May 14, 2019 at 6:00pm
In general, C++ is compatible with (i.e., a C++ compiler already exists for) a majority of processors and microcontrollers.

5 minutes of internet searching finds a project which seems promising and nondestructive:
https://www.ev3dev.org/
Last edited on May 14, 2019 at 6:00pm
May 14, 2019 at 6:04pm
this is my first word based language so i dont know much
May 14, 2019 at 6:32pm
ah, a robot builder kit...
adding to the above, many of these tools are C compatible and a few more have a custom C or c++ "LIKE" language. For example the very common aurduino controllers speak 'not quite c++'
May 15, 2019 at 11:54am
ok thanks
Topic archived. No new replies allowed.