Hello!
I am currently working on the Drawing Robot Project and have encountered numerous problems from the very beginning. Many of the functions described in the tutorial guide for the first engineering kit have since been updated forcing me to change the code in some Tasks and functions that were predefined for me. This would, of course, leads to future headaches since some of the code pre-programmed for me relies on the code that was originally there.
Are there any updated tutorial documentation or do I just have go through the process of changing the code?
Example: in chapter 2 of the tutorial, we are told to write the following code...
a = arduino
carrier = addon(a, 'Arduino/MKRMotorCarrier')
this code does not work with the Motor Carrier. Instead I have to rewrite the code to...
a = arduino
carrier = mkrMotorCarrier(a)
which really is not that bad of a change but I have to do this across multiple lines of code. It is the same case for methods under the dc motor such as DutyCycle being changed to Speed and etc. The problem comes from methods that are no longer defined such as setSpeed found under task3 in the function "moveToCounts." This, of course, causes errors and is the next roadblock keeping me from continuing with the project.