The ACIA is wired up to the DB25 connector at the back of the visicom. ACIA DB25 gnd -> 7,1 rts -> 6 tx -> 3 rx <- 2 (...)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in *.asy; do echo \"${f%.*}\",\"`sed -n 's/^SYMATTR Description //p' $f`\" >> out.csv; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* MAX7219 seven segment display driver test | |
* Connect | |
* D13 --> CLK | |
* D11 --> DIN | |
* D9 --> LOAD/CS | |
* | |
*/ | |
#include <SPI.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'''Game main module. | |
Last Day Game Entry, by Clint Herron | |
Modified for ledtris, by Koen van Vliet | |
Get original here: https://pyweek.org/e/LastMinute/ | |
''' | |
import data | |
import pygame |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
typedef signed int ssize_t; | |
struct sensor_t { | |
size_t size; | |
size_t type; | |
void *val; |