Skip to content
View samneggs's full-sized avatar
Block or Report

Block or report samneggs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Cave Adventure game on Pi Pico in Mi... Cave Adventure game on Pi Pico in MicroPython and Assembly
    1
    # cave
    2
    from machine import Pin,SPI,PWM,ADC
    3
    import framebuf, gc
    4
    import time, array
    5
    from time import sleep, ticks_us, ticks_diff
  2. Missile Command game in MicroPython ... Missile Command game in MicroPython on Pi Pico
    1
    # Missile Command game
    2
    
                  
    3
    from machine import Pin,SPI,PWM,ADC, Timer, reset, soft_reset
    4
    import framebuf, gc
    5
    import time, array, _thread
  3. Doom Fire in Assembly (mostly) Doom Fire in Assembly (mostly)
    1
    import gc9a01
    2
    from machine import Pin, SPI, PWM, WDT
    3
    import framebuf
    4
    from time import sleep_ms, sleep_us, ticks_diff, ticks_us, sleep
    5
    from micropython import const
  4. Racing game for PI Pico in MicroPyth... Racing game for PI Pico in MicroPython and Assembly
    1
    # Racetrack - based on interpolator code from boochow
    2
    # https://github.com/boochow/pico_test_projects/tree/main/interpolator2
    3
    # http://blog.boochow.com/
    4
    
                  
    5
    from machine import Pin, SPI, WDT
  5. Hill Climb Racer on Pi Pico in Micro... Hill Climb Racer on Pi Pico in MicroPython
    1
    # Hill Climb 
    2
    from lcd_1_8 import LCD_1inch8
    3
    import machine
    4
    from machine import Pin, PWM
    5
    from uctypes import addressof
  6. Skiing game on Pi Pico in inline ass... Skiing game on Pi Pico in inline assembly with gc9a01 display
    1
    import gc9a01
    2
    from machine import Pin, SPI, PWM, WDT
    3
    import framebuf
    4
    from usys import exit
    5
    import _thread