Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make pin number for PS2 DATA match documentation #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,12 @@ https://github.com/kristopher/PS2-Mouse-Arduino

## Disclaimer

As with all DIY electronics projects, this project comes with absolutely no warranty and will not liable for any loss or damage caused to your Arduino or vintage PC you used this adapter on. Use at your own risk!
As with all DIY electronics projects, this project comes with absolutely no warranty and will not liable for any loss or damage caused to your Arduino or vintage PC you used this adapter on. Use at your own risk!

# Kroy Notes

I did upgrade the resistor to 1K instead of the listed

Also, my ugly build that's been serving perfectly as a daily driver for close to two years now

![ugly solder job](kroy-ugly-build.jpg)
Binary file added kroy-ugly-build.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ps2serial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* understand it. No MAX-232 required as 5v is enough to drive most serial interfaces.
*/
#define PS2_MOUSE_CLOCK 2 /* Must connect to Pin 5 (clock) of PS/2 mouse */
#define PS2_MOUSE_DATA 4 /* Must connect to Pin 1 (data) of PS/2 mouse */
#define PS2_MOUSE_DATA 5 /* Must connect to Pin 1 (data) of PS/2 mouse */

#define RTS_PROBE 7 /* Must connect to Pin 7 (RTS) of PC serial port */
/* (NOTE: must go through a 5v regulator and */
Expand Down