Today in "weird stuff I forgot I owned"

The PhonePIC is a PIC programmer from the early 2000s, that allows you to program a microcontroller by sending it DTMF tones.

The board has a mic attached to it, that you hold up to you phones handset and then press keys to write programs!

I'm not sure if this makes PIC programming easier, or harder.

Manual: https://downloads.paulseward.com/PhonePIC/PhonePIC.pdf

Edit for tags: #pic #microcontroller #phone #dtmf #arduino

I /think/ the string of digits on the front cover does something like:

Set pin2 high
Set pin1 low
nop(?)
Beep once
END

I'm assuming 00=nop, I can't actually find that code in the manual

@lpbkdotnet nop = no operation. It´s widely used as a single cycle processor delay.
Btw. this reminds me on the ATtiny Audio Bootloader by lyok and ChrisMicro for the 8Bit-Mixtape by @dusjagr. Here the Arduino IDE starts to beep for you.
https://github.com/8BitMixtape/8Bit-Mixtape-NEO
GitHub - 8BitMixtape/8Bit-Mixtape-NEO: New Attiny85 based edition with Bootloader to program it via sound. Add this to your additional hardware manager: http://8bitmixtape.github.io/package_8bitmixtape_index.json or directly program by playing the .wav files from this website:

New Attiny85 based edition with Bootloader to program it via sound. Add this to your additional hardware manager: http://8bitmixtape.github.io/package_8bitmixtape_index.json or directly program by ...

GitHub