All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Embedded Workshop. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:04, 6 May 2025 JMerkle talk contribs created page MicroPython - Class 2 (Created page with "<big>MicroPython - Class 2</big> ==Pins – Controlling / Using Pins== ==Input== # define input with pull-up button = machine.Pin(18, machine.Pin.IN, machine.Pin.PULL_UP) ==Input - Interrupt== # define input with pull-up button = machine.Pin(18, machine.Pin.IN, machine.Pin.PULL_UP) # interrupt with falling edge of signal button.irq(trigger=machine.Pin.IRQ_FALLING, handler=button_change) The function, "button_change" will get called with each interrupt ==Output==...")