I'm trying to turn a motor using An Arduino ATMega2560 with code written in Go. There's an example here that uses TinyGo v0.14.1: https://create.arduino.cc/projecthub/alankrantas/tinygo-on-arduino-uno-an-introduction-6130f6
The example in essence looks like this:
func main() {
machine.InitPWM()
led := machine.PWM{machine.D9}
led.Configure()
value := 0
led.Set(uint16(value))
}
When I try to call machine.InitPWM()
I get an error InitPWM not declared by package machine
TinyGo's current version (and the one I'm running) is v0.19. It seems as though the machine package has been modified to use PWM differently, however, I cannot find anywhere how to use it correctly.
There is indeed no
InitPWM
function inmachine
package for ATMega2560 - https://tinygo.org/docs/reference/microcontrollers/machine/arduino-mega2560/