HackerTrans
TopNewTrendsCommentsPastAskShowJobs

tannercollin

no profile record

Submissions

Baking ChatGPT peanut butter cookies

tannercollin.com
2 points·by tannercollin·3 anni fa·0 comments

Fake Dog for Home Security

t0.vc
318 points·by tannercollin·4 anni fa·360 comments

Fake Dog for Home Security

t0.vc
2 points·by tannercollin·4 anni fa·0 comments

comments

tannercollin
·2 anni fa·discuss
This is really impressive! Would you mind running it on:

https://github.com/Protospace/spaceport

This is a member portal for my local makerspace. Having a knowledge base will help other makerspace members contribute to the code.
tannercollin
·3 anni fa·discuss
Yes, it should. As long as you can figure out the correct memory addresses to look at, you can tell the ATmega to send you the data.
tannercollin
·3 anni fa·discuss
Amazing, we are currently doing something very similar at our makerspace on a 1987 Road Kings pinball machine.

We first replaced the original RAM chip with a IDT 7132 SA100P dual-port RAM that sits on a breadboard:

https://pic.t0.vc/WPUO.jpg

The other port is accessed by an ATmega 1284 to the left of it. Its code responds to simple serial commands and can read and write to the RAM.

An ESP32 talks to the ATmega over UART and frequently asks it to dump 16 bytes at 0x00A0 to tell the game state and player number, and 0x0100 to get the four player scores. When it detects a new game, it offers the player a chance to scan their RFID member card and keeps track of their score:

https://pic.t0.vc/UQYK.jpg

After the game is complete, any players who have scanned in get their scores uploaded to our member portal where we can sort them by personal best:

https://pic.t0.vc/MZGY.png

We found there were sometimes read collisions and the ATmega would block the pinball machine from writing to RAM which would cause crashes or odd behavior. The latest version uses two RAM chips, one acting as a shadow copy -- similar to yours.

Eventually we'll make a PCB for it and open source everything. Currently only half the code (the ESP32) is on Github: https://github.com/Protospace/pinballwizard