please dont rip this site

SX Microcontroler based Matrix Keyboard


Ken Webster says:

I just happened to have an example [of a keyboard to SX interface]. It is for a 4x4 keypad connected [...] on PORTB. It doesn't do the fast scan ... just a plain old one-row-at-a-time scan. I had PORTB (output latch) set to 0. Weak pullups were enabled.

Pinout is kinda funky (to make PCB layout easier):


6---(1)-(2)-(3)-(A)
     |   |   |   |
7---(4)-(5)-(6)-(B)
     |   |   |   |
5---(7)-(8)-(9)-(C)
     |   |   |   |
2---(*)-(0)-(#)-(D)
     |   |   |   |
     3   4   0   1



;------------------------------------------------------------
;Called by interrupt handler to scan the keypad
;Returns with W=ASCII if a key is pressed, W=0 otherwise
;Interrupt handler performs debounce
SCAN1	mov	W, #$40	;Enable ROW0 output
	mov	DDRB, W
	nop
	nop
	sb	RB.3
	retw	#'1'
	sb	RB.4
	retw	#'2'
	sb	RB.0
	retw	#'3'
	sb	RB.1
	retw	#'A'
	mov	W, #$80	;ROW1
	mov	DDRB, W
	nop
	nop
	sb	RB.3
	retw	#'4'
	sb	RB.4
	retw	#'5'
	sb	RB.0
	retw	#'6'
	sb	RB.1
	retw	#'B'
	mov	W, #$20	;ROW2
	mov	DDRB, W
	nop
	nop
	sb	RB.3
	retw	#'7'
	sb	RB.4
	retw	#'8'
	sb	RB.0
	retw	#'9'
	sb	RB.1
	retw	#'C'
	mov	W, #$04	;ROW3
	mov	DDRB, W
	nop
	nop
	sb	RB.3
	retw	#'*'
	sb	RB.4
	retw	#'0'
	sb	RB.0
	retw	#'#'
	sb	RB.1
	retw	#'D'
	retw	#0

See also:


file: /Techref/scenix/lib/io/dev/keys/keymatrix_sx.htm, 1KB, , updated: 2003/5/16 13:51, local time: 2012/5/25 00:40,
TOP NEW HELP FIND: 
38.107.179.230:LOG IN

 ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE! / 

<A HREF="http://www.piclist.com/tecHREF/scenix/lib/io/dev/keys/keymatrix_sx.htm"> SX Microcontroler based Keyboards</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

 
Stepper motors CAN be smooth!
And stepper controllers can be strong and cheap. Roman Black's Linistep stepper controller kits:
o 18th microstep
o Linear smoothing
  o Open source
o Full kit $25!
 

Robotics nuts!

Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.
The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .