nodemcu的gpio相關操作

2021-07-13 08:26:35 字數 660 閱讀 6098

nodemcu的gpio設定為輸入狀態,好像預設是被上拉的,使用的時候注意功耗,當接地時候gpio能輸出40ma的電流

gpio.read操作不管是被設定成輸入還是輸出,這個操作都是讀取當前引腳的電平,跟輸入輸出無關

> gpio.mode(1, gpio.input, gpio.pullup)

> = gpio.read(1) -- button not pressed

1> = gpio.read(1) -- button is pressed

0> = gpio.read(1) -- button not pressed

1>

> gpio.mode(2,gpio.output)

> gpio.write(2,gpio.high) -- led off

> gpio.write(2,gpio.low) -- led on

> gpio.mode(1, gpio.int, gpio.pullup)

> gpio.trig(1, "both", function(level)

>> gpio.write(2, level)

>> end)

具體參考

NodeMCU 學習筆記(二)GPIO操作

lua語法 函式 function 函式名 引數 幹活,幹活 return 引數,引數 end條件 if 條件 then 幹活,幹活 else 幹活,幹活 1 點亮乙個led燈,電路如上圖。pin 0 0就是d0 gpio.mode pin,gpio.output gpio.write pin,gp...

GPIO相關知識

1.維基百科gpio 2.gpio部落格資料 一 知識點 gpio是general purpose input output的縮寫,是乙個在積體電路上的通用pin,它在執行時作為輸入pin或輸出pin受控於使用者。gpio沒有預定義的目標 輸入或輸出 預設為未使用。gpio的能力有 gpio pin...

jquery radio,select相關操作

1.獲取選中值,三種方法都可以 input radio checked val input type radio checked val input name rd checked val 2.設定第乙個radio為選中值 input radio first attr checked checked...