https://github.com/dawsonjon/101things
A collection of cool projects to make!
https://github.com/dawsonjon/101things
audio clock cnc effects guitar ham msf pedal pi pico pwm radio raspberry time
Last synced: about 2 months ago
JSON representation
A collection of cool projects to make!
- Host: GitHub
- URL: https://github.com/dawsonjon/101things
- Owner: dawsonjon
- License: mit
- Created: 2023-10-01T18:06:23.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-05T14:00:41.000Z (5 months ago)
- Last Synced: 2025-03-30T22:09:44.790Z (2 months ago)
- Topics: audio, clock, cnc, effects, guitar, ham, msf, pedal, pi, pico, pwm, radio, raspberry, time
- Language: G-code
- Homepage:
- Size: 142 MB
- Stars: 162
- Watchers: 12
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- License: COPYING.txt
Awesome Lists containing this project
README
.. image:: https://readthedocs.org/projects/chips-20/badge/?version=latest
:target: https://readthedocs.org/projects/chips-20/badge/?version=latest101 Things
==========Welcome to *101 Things*, a collection of projects that celebrate creativity and
hands-on ingenuity. If you share a passion for making things, you've come to
the right place. Each project uses simple designs, and basic tools, to push the
creative boundaries of a home tinkerer. Join me on this exploration of
crafting, coding, and constructing, as we unlock the magic of making, one
project at a time.Documentation
-------------`ReadTheDocs `_.
Projects so far
---------------Pi Pico Rx - A crystal radio for the digital age?
""""""""""""""""""""""""""""""""""""""""""""""""".. image:: docs/images/thumbnail5.png
:target: https://github.com/dawsonjon/PicoRX/assets/717535/4846c78d-21c3-42e8-bcdf-278cc2bdadcbDIY Multi-Effect Guitar Unit
"""""""""""""""""""""""""""".. image:: docs/images/headphone_amp.jpg
:align: centerRaspberry Pi Pico Ham Radio Transmitter
""""""""""""""""""""""""""""""""""""""".. image:: docs/images/HamTransmitterThumbnail.png
:target: https://youtu.be/PbhmQfPkNL0Raspberry Pi Power and SWR Meter
""""""""""""""""""""""""""""""""""""""".. image:: docs/images/power_meter_thumbnail.png
:target: https://youtu.be/_b22atCT8KURaspberry Pi Pico FM Radio
""""""""""""""""""""""""""".. image:: docs/images/fm_radio_thumbnail.png
:target: https://youtu.be/bj8MgL6k2tU8-inch Dobsonian Telescope
"""""""""""""""""""""""""".. image:: docs/images/telescope_thumbnail.png
:target: https://youtu.be/KxbAh8ndkbYBreadboard Software Defined Radio
""""""""""""""""""""""""""""""""".. image:: docs/images/breadboard_radio_thumbnail.png
:target: https://youtu.be/lS1ZRMIYLjAGetting the Code
----------------.. code::
sudo apt install git
git clone https://github.com/dawsonjon/101Things.gitInstall Pi Pico SDK
-------------------Follow the `Getting started with the Raspberry Pi Pico `_ quick start guide to install the C/C++ SDK.
.. code::
sudo apt install wget #if wget not installed
wget https://raw.githubusercontent.com/raspberrypi/pico-setup/master/pico_setup.sh
chmod +x pico_setup.sh
./pico_setup.sh
Build Projects
--------------Some projects may target either the pico or pico_w variant, although those that use the wireless functionality can only be built on the pi-pico.
To build for pico_w:
"""""""""""""""""""".. code::
mkdir build
cd build
cmake -DPICO_BOARD=pico_w -DPICO_SDK_PATH=~/pico/pico-sdk ..
makeTo build for pico:
"""""""""""""""""".. code::
mkdir build
cd build
cmake -DPICO_BOARD=pico -DPICO_SDK_PATH=~/pico/pico-sdk ..
make