2016-07-18 02:03:03 +00:00
Tutorial 6 - Active high
2016-09-28 19:56:10 +00:00
========================
2016-07-18 02:03:03 +00:00
2016-07-18 02:26:00 +00:00
Pull-up resistors
-----------------
2016-07-18 02:03:03 +00:00
There are many sources that explain "pull-up resistors", so I won't repeat it here.
Here is a [good tutorial on Pull-up Resistors ](https://learn.sparkfun.com/tutorials/pull-up-resistors/what-is-a-pull-up-resistor ).
2016-07-18 02:26:00 +00:00
Active low
----------
2016-09-28 19:56:10 +00:00
Most the keyboards up to this point in the tutorial series have used active low with internal pull-up resistors.
2016-07-18 02:03:03 +00:00
"Active low" means that if a switch is pressed (active state), the read pin is low.
When the switch is released (inactive state), the pull-up resistor pulls the read pin high.
Arduino boards have internal pull-up resistors, which saves on parts and labor compared to manually adding external pull resistors.
2016-09-28 19:56:10 +00:00
To make a key matrix active low:
* Orient diodes with cathode (banded end) towards the strobe pins (row)
2016-11-16 01:41:05 +00:00
* Instantiate the scanner in the sketch with activeState LOW, like this:
2016-07-18 02:03:03 +00:00
```
2016-09-28 19:56:10 +00:00
Scanner_uC scanner(LOW, readPins, readPinCount);
2016-07-18 02:03:03 +00:00
```
2016-07-18 02:26:00 +00:00
Active high
-----------
2016-07-18 02:03:03 +00:00
"Active high" means that if a switch is pressed (active), the read pin is high.
When the switch is released (inactive), the pull-down resistor pulls the read pin low.
Arduino boards do not have internal pull-down resistors.
If you want to use active low, you will have to add external pull-down resistors to the read pins.
2016-09-28 19:56:10 +00:00
To make a key matrix active high:
* Add an external 10k Ohm pull-down resistor to each read pin
2016-07-18 02:03:03 +00:00
* Orient diodes with cathode (banded end) towards the read pins
2016-11-16 01:41:05 +00:00
* Instantiate the scanner in the sketch with activeState HIGH, like this:
2016-07-18 02:03:03 +00:00
```
2016-09-28 19:56:10 +00:00
Scanner_uC scanner(HIGH, readPins, readPinCount);
2016-07-18 02:03:03 +00:00
```
2016-07-18 02:26:00 +00:00
Making a breadboard keyboard active-high
----------------------------------------
2016-09-28 19:56:10 +00:00
Make the following changes to the basic breadboard keyboard described in [tutorial_1_breadboard_keyboard.md ](tutorial_1_breadboard_keyboard.md ):
* Add an external 10k Ohm pull-down resistor (red bus) to each read pin
* Orient diodes with cathode (banded end) towards the read pins
2016-07-18 02:03:03 +00:00
2016-09-28 19:56:10 +00:00
![pull-down resistors ](keybrd_6_active_high/back.JPG "pull-down resistors" )
2016-07-18 02:03:03 +00:00
2016-09-28 19:56:10 +00:00
keybrd sketch with active-high
------------------------------
The [keybrd_6_active_high.ino ](keybrd_6_active_high/keybrd_6_active_high.ino ) sketch will run on the above breadboard keyboard.
2016-07-18 02:26:00 +00:00
< br >
2016-07-21 20:20:07 +00:00
< a rel = "license" href = "https://creativecommons.org/licenses/by/4.0/" > < img alt = "Creative Commons License" style = "border-width:0" src = "https://licensebuttons.net/l/by/4.0/88x31.png" / > < / a > < br / > < span xmlns:dct = "http://purl.org/dc/terms/" property = "dct:title" > keybrd tutorial< / span > by < a xmlns:cc = "https://creativecommons.org/ns" href = "https://github.com/wolfv6/keybrd" property = "cc:attributionName" rel = "cc:attributionURL" > Wolfram Volpi< / a > is licensed under a < a rel = "license" href = "https://creativecommons.org/licenses/by/4.0/" > Creative Commons Attribution 4.0 International License< / a > .< br / > Permissions beyond the scope of this license may be available at < a xmlns:cc = "https://creativecommons.org/ns" href = "https://github.com/wolfv6/keybrd/issues/new" rel = "cc:morePermissions" > https://github.com/wolfv6/keybrd/issues/new< / a > .