setup()在JS中使用PI的GPIO引脚做什么

时间:2018-12-11 14:37:52

标签: javascript node.js raspberry-pi gpio

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

1 个答案:

答案 0 :(得分:1)

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不再接受未指定模式的呼叫设置。 (默认为<2.0.0中的wpi)

@Roland Starke提供。