每次通过JavaScript / NodeJS使用Raspberry Pi的GPIO引脚时,都必须使用x.setup('something'),而x是导入的库或数据包。我知道没有它,您的应用程序将无法运行,但是setup()会做什么,您给它提供的参数是什么?

最佳答案

Setup documentation (github)

设置(模式)
。> = 0.1.1
方便的接线功能
模式可以是以下值之一:

wpi: sets up pin numbering with wiringPiSetup >= 0.1.1
gpio: sets up pin numbering with wiringPiSetupGpio >= 0.1.1
sys: sets up pin numbering with wiringPiSetupSys >= 0.1.1
phys: sets up pin numbering with wiringPiSetupPhys >= 1.0.0


有关引脚编号系统here的更多信息

注意:> = 2.0.0不再接受未指定模式的呼叫设置。 (默认为
由@Roland Starke提供。

关于javascript - setup()在JS中使用PI的GPIO引脚做什么,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53726433/

10-13 04:10