Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 IOIO 板通过 Android 控制伺服电机?它背后的android代码是什么,需要什么样的输入?
这是使用 IOIO 时的常见问题,答案很容易在 Google 上找到。此外,请在发布时遵守 SO 指南,显示您尝试过的内容以及遇到的问题。
伺服控制是PWM,这是IOIO库中内置的一个函数:
PwmOutput pwm = ioio.openPwmOutput(pinNum, freq); pwm.setDutyCycle(dc); pwm.setPulseWidth(pw);
看到这个页面