Hello everyone. I have a working Arduino code, I want to add it directly to mBlock 3 as an extension. To run the content of the code directly. How can I do it?
As shown in the photo, I want to pull the firmware and run the code directly.
This is my full main code `#include “common.h” // Common Library
void setup2();
void loop2();
void setup()
{
setup2();
}
void loop()
{
loop2();
}
I have 5 libraries with this. I know how to add library.`
Turkish edit : Elimde çalışan bir kod var, bazı Arduino sürümlerinde çalışmıyor bu nedenle ben bu kodu Scratch blok haline getirip sunmak istiyorum. Bunun içinde main kodumu bu hale getirdim ancak extension olarak bir türlü ekleyemedim.