Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
rnd:sketchpad [2023-07-15 22:04] – asdf | rnd:sketchpad [2024-10-01 05:10] (current) – asdf | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Sketchpad ====== | ====== Sketchpad ====== | ||
- | A home for project ideas that aren't yet fully formed (and which may never be). Those that do survive this gestation phase should receive their own pages, and rejects should probably be retained somewhere. | + | A home for project ideas that aren't yet fully formed (and which may never be). Those that do survive this gestation phase should receive their own pages, and rejects should probably be retained somewhere. |
+ | |||
+ | ===== Teensy softcard for Apple II ===== | ||
+ | Build an Apple II softcard based around the Teensy microcontroller. I'm not yet sure what we'll do with it yet, but we should try to keep as many special pins (the main I2C/SPI buses, maybe a UART bus) free for later use. Maybe one corner of the initial card could be a protoboard, or we could have some of the free pins broken out for jumpers to a breadboard. Sample projects for inspiration: | ||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * schematics and details in the MS SoftCard manual | ||
+ | |||
+ | We don't yet have a specific use case in mind. Some ideas: | ||
+ | |||
+ | * I2C/ | ||
+ | * some kind of audio card/MIDI thing? | ||
+ | * ProDOS disk emulation (via SD card) | ||
+ | * Z80 softcard | ||
+ | * ethernet? | ||
+ | * USB bus sniffer | ||
+ | |||
+ | It may make sense to start with a very simple breakout card and a basic bus sniffer firmware. | ||
+ | |||
+ | ===== Dual Euclidean trigger/ | ||
+ | Generate two independent channels (A and B) of Euclidean gate sequences and a third channel (A * B) which performs a selectable logic function on A and B. Attach LEDs to the output of each channel for visual indication. CV control over the parameters would be welcome but is not necessary for the first version. | ||
+ | |||
+ | Note that this will need to able to follow an external clock! | ||
+ | |||
+ | ===== Bluebox MIDI sync ===== | ||
+ | The [[: | ||
+ | |||
+ | We have already unsuccessfully trialed the [[: | ||
+ | |||
+ | The attached Python script will work in a pinch, but a more robust solution is desirable. Something Daisy-based? | ||
+ | |||
+ | <file python midifilter.py> | ||
+ | # | ||
+ | |||
+ | ''' | ||
+ | |||
+ | import jack | ||
+ | |||
+ | client = jack.Client(' | ||
+ | inport = client.midi_inports.register(' | ||
+ | outport = client.midi_outports.register(' | ||
+ | |||
+ | stop = bytes.fromhex(' | ||
+ | |||
+ | @client.set_process_callback | ||
+ | def process(frames): | ||
+ | outport.clear_buffer() | ||
+ | for offset, data in inport.incoming_midi_events(): | ||
+ | if data == stop: | ||
+ | continue | ||
+ | outport.write_midi_event(offset, | ||
+ | |||
+ | |||
+ | with client: | ||
+ | print('#' | ||
+ | print(' | ||
+ | print('#' | ||
+ | input() | ||
+ | </ | ||
+ | |||
+ | The [[https:// | ||
+ | |||
+ | ===== MIDI " | ||
+ | Selectively mute and mix different components of a MIDI stream. | ||
+ | |||
+ | **This already exists!** It's called the [[: | ||
+ | ===== 8800 Lisp interpreter ===== | ||
+ | Why not? I like the Altair, and I like Lisp. Some starting points: | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||
+ | ===== Convert PC PSU to Eurorack ===== | ||
+ | One of the first projects in // | ||
+ | |||
+ | ===== MIDI control surface ===== | ||
+ | Like the 16n fader bank but with even more controls. Could also be fun to make a software version. | ||
+ | |||
+ | ===== Wireless USB link ===== | ||
+ | Assemble a pair of devices --- host (which connects to the peripheral) and peripheral (which connects to the controlling computer). These pass USB packets back and forth over a wireless link. Data rate will obviously be fairly slow, but it could be an interesting experiment. | ||
+ | |||
+ | ===== Eurorack test harness ===== | ||
+ | As I start designing and constructing Eurorack modules, it will be helpful to know how much current they draw. Construct a (skiff-friendly? | ||
+ | |||
+ | What if we took some cues from the [[https:// | ||
+ | |||
+ | Could this be done with a Daisy (either a standalone Seed or a Patch module)? | ||
+ | |||
+ | < | ||
+ | digraph G { | ||
+ | psu [shape=box, | ||
+ | ucu [shape=box, | ||
+ | vco [shape=ellipse]; | ||
+ | isense [shape=box, | ||
+ | hdr [shape=box, | ||
+ | dut [shape=box, | ||
+ | hpamp [shape=ellipse, | ||
+ | |||
+ | psu -> {isense, | ||
+ | isense -> hdr -> dut; | ||
+ | isense -> ucu; | ||
+ | adc -> ucu -> dac; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== Audio mixer ===== | ||
+ | I've always wanted to build my own mixer from scratch. In theory, it should be a series of channels connected by one or more summing amplifiers (depending on the number of outputs available for routing). A single channel would look something like the diagram below: | ||
+ | |||
+ | < | ||
+ | digraph mixerchannel { | ||
+ | input; | ||
+ | gain; | ||
+ | metering; | ||
+ | eq; | ||
+ | presends; | ||
+ | fader; | ||
+ | postsends; | ||
+ | pan; | ||
+ | dummy [label="", | ||
+ | outrouting; | ||
+ | |||
+ | input -> {gain, metering}; | ||
+ | gain -> eq -> {presends, | ||
+ | fader -> {postsends, pan}; | ||
+ | pan -> dummy; | ||
+ | dummy -> outrouting [label=" | ||
+ | dummy -> outrouting [label=" | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ===== R/C lawnmower ===== | ||
+ | This would be worthy of the name " | ||
+ | |||
+ | It would be awesome to enable fully autonomous operation, though that's probably very infeasible (and definitely unsafe) at this time. A more realistic option is GPS-based operation. It may be possible to couple this with a route learn feature; think auto routing in Satisfactory --- as the player drives the desired route, the vehicle periodically samples its position and interpolates a path between them. Another option is to define coordinate regions that must be avoided and have the vehicle path its way around them. | ||
+ | |||
+ | Safety must be an essential consideration at all times. We need to identify a set of conditions under which the vehicle must absolutely stop and constantly monitor those conditions (how? Short-range radar? Ultrasound? | ||
+ | |||
+ | It is very tempting to find a way to integrate Lisp into this system. | ||
===== Eurorack counter ===== | ===== Eurorack counter ===== | ||
Line 42: | Line 182: | ||
===== Microcontroller-based LLDP sniffer ===== | ===== Microcontroller-based LLDP sniffer ===== | ||
+ | //See [[.: | ||
+ | |||
This would be a great combination with [[.: | This would be a great combination with [[.: | ||
Line 47: | Line 189: | ||
===== GreatFET as keyboard ===== | ===== GreatFET as keyboard ===== | ||
+ | //See [[.: | ||
+ | |||
Use the [[: | Use the [[: | ||
Line 95: | Line 239: | ||
===== Matrix bot use cases ===== | ===== Matrix bot use cases ===== | ||
+ | //See [[.: | ||
+ | |||
I've been playing with Matrix here on sinensis. I figure it could be fun to build a bot to perform various tasks. This is a better vehicle for some other ideas I've had than a general key-value store would be. [[https:// | I've been playing with Matrix here on sinensis. I figure it could be fun to build a bot to perform various tasks. This is a better vehicle for some other ideas I've had than a general key-value store would be. [[https:// | ||
Line 125: | Line 271: | ||
===== CAN/OBD sniffer ===== | ===== CAN/OBD sniffer ===== | ||
+ | See [[.: | ||
+ | |||
Read values from a CAN bus. [[https:// | Read values from a CAN bus. [[https:// | ||
Line 157: | Line 305: | ||
} | } | ||
</ | </ | ||
+ | |||
+ | Also take a look at the [[https:// | ||
===== Email pingback ===== | ===== Email pingback ===== | ||
Sometimes it's handy to know when someone opens an email. | Sometimes it's handy to know when someone opens an email. |