

I guess the story is well-known: the wire coming out of a PDP-10's inner guts leading to a switch on a scruffy panel. There were three strange things about it:
- nobody knows why it was there, but it had a Magic and More Magic position.
- yet, toggle from More Magic to just Magic and the system would crash.

Does anyone here have some leads (as in, tips, not spare bits of wire)? The PiDP-10 PCB has plenty of empty space on it to add the circuit. Doesn't mean everyone has to populate it with parts.
# Trinket M0 capacitive touch sensor demo
import board
from digitalio import DigitalInOut, Direction
from adafruit_debouncer import Debouncer
from touchio import TouchIn
# Capacitive touch input on D1
touch_sensor = TouchIn( board.D1)
touch = Debouncer( lambda: touch_sensor.value)
# Built in red LED
led = DigitalInOut( board.D13)
led.direction = Direction.OUTPUT
# Adjust threshold assuming switch is initially closed ...
touch_sensor.threshold = touch_sensor.raw_value - 5
while True: ############## Main Loop #############
touch.update()
led.value = not touch.value # LED lights when we should crash
if touch.fell:
print( "*** Here is where the PDP10 crashes !!!")
As long as we're adding all the AI lab gadgets, we need more peripherals. An Imlac would be great for playing Mazewars
and don't forget that insanely expensive and flaky Xerox XGP.
--
You received this message because you are subscribed to the Google Groups "PiDP-10" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pidp-10+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pidp-10/3c0f43d5-1724-4dee-bcd6-cb089eb4edcc%40googlegroups.com.
How about a music output interface?
Music System for the PDP-I0 10-9Program Version or Creation Date: 1Keywords: MusicAuthor: P. R. Samson and R. Clements M.I.T. and Digital Equipment Corp., Maynard, MA.Language or Program Requirements: MACRO-l0, Time-Sharing Monitor (DEC-l0-MTC0)Hardware Requirements: PDP-l0/40, MK I0 or transistor radio
Music System for the PDP-I0 10-9
Author: P. R. Samson and R. Clements M.I.T. and Digital Equipment Corp., Maynard, MA.
Is this available anywhere?
It's funny you should mention this now. Just the other day I added theITS suite of music programs: MUSCOM, MUSRUN, and BIG. Musiccan be played from the PDP-6 simulator.
... and don't forget that insanely expensive and flaky Xerox XGP.
As long as we're adding all the AI lab gadgets, we need more peripherals. An Imlac would be great for playing Mazewars
As long as we're adding all the AI lab gadgets, we need more peripherals. An Imlac would be great for playing Mazewars
Given the wonderful playground that is ITS, I'm wondering if I should not add a socket for an optional esp32 on the PCB. It's the simplest way of adding a touch-sensitive one-wire Magic switch, and it fits the general playground idea. It could take on many roles, including graphics terminal emulation.
Heck, it has enough oomph to be the connected PDP-11...
--
You received this message because you are subscribed to the Google Groups "PiDP-10" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pidp-10+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pidp-10/CAJAwMc3bN9g5qWA9z94YJ9ULtN-kb5_A%3DCRUEjz5XgyRoG_nPw%40mail.gmail.com.
Maybe it’s just me, but I’d love a simple way to connect the PiDP-11 as a FEP (front end & I/O processor) for the PiDP-10 much as the AI lab did.
As long as we're adding all the AI lab gadgets