Home
Features
_Multi DropDown
__DropDown 1
__DropDown 2
__DropDown 3
_ShortCodes
_SiteMap
_Error Page
Mega Menu
Documentation
_Web Documentation
_Video Documentation
Privacy Policy
Daftar Isi
Beranda
Micropython Button NodeMCU
Micropython Button NodeMCU
Juli 22, 2022
Micropython Button NodeMCU
Untuk menggunakan tombol flash bawaan dari chip bisa menggunakan D4 (hardware) atau pin nomor 0 (untuk programming).
Untuk simulasi tombol dapat menggunakan kabel biasa. Gunakan pin nomor 13 (D7).
from machine import Pin led = Pin(15, Pin.OUT) button = Pin(13, Pin.IN, Pin.PULL_UP) while True: if not button.value(): led.value(not led.value()) while not button.value(): pass from machine import Pin import time led = Pin(2, Pin.OUT) button = Pin(13, Pin.IN, Pin.PULL_UP) while True: led.value( button.value()) print(button.value()) time.sleep(.3) from machine import Pin import time led = Pin(15, Pin.OUT) button = Pin(13, Pin.IN, Pin.PULL_UP) while True: led.value(not button.value()) print(button.value()) time.sleep(.3)
Social Plugin
ARTIKEL
3/recent/post-list
Facebook
Subscribe Us