Lesson 97-1: Detecting Rotary Encoder Rotation and Pushing the Switch
In this lesson, we learn how to use a rotary encoder knob. Then, we learn how to use it to control the position of a servo motor (97-2). In this lesson (97-3), we also display the position of the servo motor on an LCD screen using Arduino. This code will work with all Arduino boards. This code is just demonstrating the rotary encoder and detecting the pushing of the switch built into the encoder.
431-Lesson 97: Controlling a Servo Motor using a Rotary Encoder and Display Angle on an LCD
语言: C++
/*
* Lesson 97-1: Rotary Encoder with switch
* This code detects rotation of the encoder knob
* and also detects when it is pushed
*
* Watch full details video: https://youtu.be/6xVLbNlmK-g
This video is part of the Arduino Step by Step Course, which starts here: https://youtu.be/-6qSrDUA5a8
If you found this tutorial helpful, please support me so I can continue creating
content like this. Make a donation using PayPal by credit card: https://bit.ly/donate-robojax
* This code is "AS IS" without warranty or liability. Free to be used as long as you keep this note intact. *
* This code has been downloaded from Robojax.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
* Updated by Ahmad Shamshiri on Jan 23, 2022
* Encoder Library - Basic Example
* http://www.pjrc.com/teensy/td_libs_Encoder.html
*
* This example code is in the public domain.
*/
const int SW_PIN = 4;
const int PIN_A =2;
const int PIN_B =3;
#include <Encoder.h>
// Change these two numbers to the pins connected to your encoder.
// Best Performance: both pins have interrupt capability
// Good Performance: only the first pin has interrupt capability
// Low Performance: neither pin has interrupt capability
Encoder myEnc(PIN_A, PIN_B);
// avoid using pins with LEDs attached
void setup() {
Serial.begin(9600);
pinMode(SW_PIN, INPUT);
Serial.println("Basic Encoder Test:");
}
long oldPosition = -999;
void loop() {
long newPosition = myEnc.read();
if (newPosition != oldPosition) {
oldPosition = newPosition;
Serial.println(newPosition);
}
if( digitalRead(SW_PIN) == LOW)
{
Serial.println("Switch Pressed");
}
delay(200);
//Watch video details: https://youtu.be/6xVLbNlmK-g
}
|||您可能需要的东西
-
全球速卖通从AliExpress购买一个LCD1602s.click.aliexpress.com
资源与参考
-
外部
-
外部
-
外部Purchase ZK-5DA from Amazon UKamzn.to
-
外部从AliExpress购买一个LCD1602s.click.aliexpress.com
文件📁
没有可用的文件。