Skip to content

Instantly share code, notes, and snippets.

View askpatrickw's full-sized avatar
🏠
Working from main

Patrick askpatrickw

🏠
Working from main
View GitHub Profile
@dglaude
dglaude / CircuitPython2021.md
Last active January 24, 2021 22:24
Circuit Python 2021: The year of the CircuitPython Retro Gaming Personal Computer

CircuitPython 2021

Honestly, CircuitPython is pretty mature and has already a lot of features like Bluetooth and Wifi. Supporting new MCU could be interesting, but I am not sure what it could bring that is not already possible with nRF52 and AirLift.

So rather than discuss about many subject, I prefer to have a single “goal” and have all the suggestion to make this “goal” possible. The idea I will talk about is not new, a few attempts have already been done and I have already discussed this “in the weed”.

I have already invested a bit of time to demonstrate the possibilities, testing and promoting project like Quico.

Year 2021 should be the year of CircuitPython Retro Gaming Personal Computer.

# -*- coding: utf-8 -*-
""" Deletes all tweets below a certain retweet threshold.
"""
import tweepy
from datetime import datetime
# Constants
CONSUMER_KEY = ''
@ryang14
ryang14 / code.py
Created May 12, 2020 22:39
Code to use CircuitPython over WiFi. Very rough around the edges, but seems to work pretty well
import storage
import adafruit_requests as requests
import networkInit # Board specific network connection
try:
from secrets import secrets
connectionString = secrets["ota_connection_string"]
except (ImportError, KeyError):
print("Connection string is kept in secrets.py, please add it there!")