New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 14:04, 6 May 2025MicroPython - Class 2 (hist | edit) ‎[1,792 bytes]JMerkle (talk | contribs) (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==...")
  • 13:36, 28 March 2025Getting Started with MicroPython (hist | edit) ‎[10,525 bytes]JMerkle (talk | contribs) (Created page with "Currently, the MicroPython downloads page shows 186 boards currently supported with a binary download available.<br> This means it shouldn't be hard to find a compatible board to work with.<br> For this "Getting Started" class, I will focus on the Raspberry Pi Pico board.<br> Just like many of the libraries available to download for peripheral support,<br> some "tweeking" may be required to get things working for you. ==Raspberry Pi Pico==")