Código de Pesquisa

RoboJax Crash Course on Arduino: Learn Arduino in 30 Minutes: Touch Sensor

RoboJax Crash Course on Arduino: Learn Arduino in 30 Minutes: Touch Sensor

Learn Arduino from scratch. Step by step, from a proven instructor with years of experience. The course will start by getting and installing the Arduino software; then, Arduino boards will be introduced, and practical projects will be shown with wiring diagrams and how to wire them. All the code is provided for download.

303-Basic code to control the direction of rotation of a motor with two relays
Idioma: C++
/*
 * Robojax Crash Course on Arduino: Learn Arduino in 30 Minutes
 *
 * This is a touch sensor demonstration
 *
 * Watch video instructions: https://youtu.be/Mbb2xa1WcRM
 *
 * Written March 09, 2020 at 17:23 in Ajax, Ontario, Canada
 *
 * 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/>.


*/

int touchPin = 2;


void setup() {

  // initialize serial communications at 9600 bps:
  Serial.begin(9600);
  Serial.println("Robojax: touch");

  pinMode(touchPin, INPUT);
  //Robojax Crash Course on Arduino: Learn Arduino in 30 Minutes
  
}

void loop() {
   //Robojax Crash Course on Arduino: Learn Arduino in 30 Minutes
   if(digitalRead(touchPin) ==HIGH)
   {
    Serial.println("Touched");
    digitalWrite(9, HIGH)
   }
   delay(100);
   //Robojax Crash Course on Arduino: Learn Arduino in 30 Minutes
}

Arquivos📁

Nenhum arquivo disponível.