Skip to content

Instantly share code, notes, and snippets.

View m1cr0lab's full-sized avatar
😎
Tinkering with microcontrollers

Steph's µLab m1cr0lab

😎
Tinkering with microcontrollers
View GitHub Profile
#!/bin/bash
# ----------------------------------------------------------------------------
# ESP32 Firmware Uploader © 2020 Stéphane Calderoni
# ----------------------------------------------------------------------------
# This program is designed to flash the ESP32 from the following binary files:
# - firmware.bin your application
# - partitions.bin the partition table
# ----------------------------------------------------------------------------
@m1cr0lab
m1cr0lab / snake.py
Last active July 2, 2019 16:17
Learn to Code a Snake Game with CircuitPython on Gamebuino META
# ----------------------------------------------------------
# Learn to Code a Snake Game with Python
# Gamebuino Academy Workshop
# https://gamebuino.com/academy/workshop/learn-to-code-a-snake-game-with-python
# ----------------------------------------------------------
# This game is based on the CircuitPython environment, which
# is an implementation of the Python language specific to
# microcontrollers. CircuitPython runs on the SAMD21G18
# architecture of the Gamebuino META.
# ----------------------------------------------------------