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.
我正在为 SAMD21 编写我的第一个程序,我将创建 GPIO 类。
我想知道为所有引脚创建一个类是否更好,例如arduino:
pinMode(led, OUTPUT)
或为每个引脚创建类,例如:
led.pinMode(OUTPUT)
在专业项目中是如何完成的?