So I just mean is there any aided tool/website, which can translate the codes that control MCU/Hardware, for example
Code: Select all
# code in micropython
pin = Pin(D0, Pin.OUT)
pin.value(HIGH)
Code: Select all
// code in arduino
pinMode(D0, OUTPUT);
digitalWrite(D0, HIGH);