Skip to content

Instantly share code, notes, and snippets.

View KeithTheEE's full-sized avatar

Keith Murray KeithTheEE

  • Kansas City, Kansas
View GitHub Profile

Overall Notes:

Tested on Circuit Playground Bluefruit running Adafruit CircuitPython 7.2.5 on 2022-04-06; Adafruit Circuit Playground Bluefruit with nRF52840 Library Bundle used was adafruit-circuitpython-bundle-7.x-mpy-20220422

Any instance of from adafruit_circuitplayground.express import cpx must be changed to from adafruit_circuitplayground.bluefruit import cpb

Subsequently any call of cpx must be changed to

Circuit Python 2022

Looking back

I started really diving into circuit python this past year and have been slowly trying to learn what works best for me. Most of my Going Forward is shaped by topics I think I can contribute to, or areas where I came across issues that I'm confident others will also experience (or I'm about to be exceptionally lucky and future me is about to learn the 'fix' to those issues that others are using.)

I've been heavily focused on adding sensors around my home in hopes of building up 'smart' behaviors in the home: blue-light alarms for waking up which turn on during lighter parts of sleep, air quality sensors to help remind me to replace the furnace filter, and some sensors at the ready to answer questions when I wonder, "what would happen if". So it's from that perspective that I look forward towards 2022.

Going forward

@KeithTheEE
KeithTheEE / pubmed_search.py
Created November 25, 2015 01:09 — forked from langner/pubmed_search.py
A class that searches Pubmed for a list of PMIDs via the BioPython Entrez module and returns the results in a simpler dictionary format.
"""Tools for searching Pubmed for a list of PMIDs.
The goal here is to search for many PMIDs at once, since searching
sequentially can take a long time. Using the the BioPython Entrez module
is super convenient to this end.
The results results are returned in a simple dictionary format.
"""