Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use NO TOUCH BUTTON: Examples, Pinouts, and Specs

Image of NO TOUCH BUTTON
Cirkit Designer LogoDesign with NO TOUCH BUTTON in Cirkit Designer

Introduction

The NO TOUCH BUTTON (Manufacturer: BOXTEL, Part ID: NO TOUCH) is a type of switch that can be activated without physical contact. It typically uses infrared or capacitive sensing technology to detect the presence of a hand or object. This component is ideal for applications where hygiene is a concern, such as in medical facilities, public restrooms, and other environments where minimizing physical contact is crucial.

Explore Projects Built with NO TOUCH BUTTON

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Touch Sensor Activated Buzzer with USB Power
Image of Touch Door Bell: A project utilizing NO TOUCH BUTTON in a practical application
This circuit consists of a touch sensor, a buzzer, and a USB plug for power. When the touch sensor is activated, it triggers the buzzer to sound, powered by the 5V supply from the USB plug.
Cirkit Designer LogoOpen Project in Cirkit Designer
Bluetooth-Controlled Multi-Function Arduino Nano Gadget
Image of Copy of Smarttt: A project utilizing NO TOUCH BUTTON in a practical application
This is a portable, microcontroller-driven interactive device featuring Bluetooth connectivity, visual (RGB LED), auditory (loudspeaker), and haptic (vibration motor) feedback, user input (pushbutton), and a rechargeable power system (TP4056 with Li-ion battery).
Cirkit Designer LogoOpen Project in Cirkit Designer
Touch-Interactive Distance Measurement System with Visual and Audio Feedback
Image of DIBH project: A project utilizing NO TOUCH BUTTON in a practical application
This is a microcontroller-based interactive circuit featuring touch and ultrasonic sensors for input, and LEDs, a buzzer, and an OLED display for output. It is powered by a 9V battery with a voltage regulator for stable operation, and includes a toggle switch for power control. The actual behavior of the circuit is determined by the embedded code, which is currently a placeholder for further development.
Cirkit Designer LogoOpen Project in Cirkit Designer
MakerEdu Creator with Bluetooth, IR Sensors, LCD Display, and Push Button Interaction
Image of MKL Distance Measurement: A project utilizing NO TOUCH BUTTON in a practical application
This circuit features a MakerEdu Creator microcontroller board interfaced with two MKE-S11 IR Infrared Obstacle Avoidance Sensors, a MKE-M02 Push Button Tact Switch, a MKE-M15 Bluetooth module, and a MKE-M08 LCD2004 I2C display module. The push button is connected to a digital input for user interaction, while the IR sensors are likely used for detecting obstacles. The Bluetooth module enables wireless communication, and the LCD display provides a user interface for displaying information or statuses.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with NO TOUCH BUTTON

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of Touch Door Bell: A project utilizing NO TOUCH BUTTON in a practical application
Touch Sensor Activated Buzzer with USB Power
This circuit consists of a touch sensor, a buzzer, and a USB plug for power. When the touch sensor is activated, it triggers the buzzer to sound, powered by the 5V supply from the USB plug.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Copy of Smarttt: A project utilizing NO TOUCH BUTTON in a practical application
Bluetooth-Controlled Multi-Function Arduino Nano Gadget
This is a portable, microcontroller-driven interactive device featuring Bluetooth connectivity, visual (RGB LED), auditory (loudspeaker), and haptic (vibration motor) feedback, user input (pushbutton), and a rechargeable power system (TP4056 with Li-ion battery).
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of DIBH project: A project utilizing NO TOUCH BUTTON in a practical application
Touch-Interactive Distance Measurement System with Visual and Audio Feedback
This is a microcontroller-based interactive circuit featuring touch and ultrasonic sensors for input, and LEDs, a buzzer, and an OLED display for output. It is powered by a 9V battery with a voltage regulator for stable operation, and includes a toggle switch for power control. The actual behavior of the circuit is determined by the embedded code, which is currently a placeholder for further development.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of MKL Distance Measurement: A project utilizing NO TOUCH BUTTON in a practical application
MakerEdu Creator with Bluetooth, IR Sensors, LCD Display, and Push Button Interaction
This circuit features a MakerEdu Creator microcontroller board interfaced with two MKE-S11 IR Infrared Obstacle Avoidance Sensors, a MKE-M02 Push Button Tact Switch, a MKE-M15 Bluetooth module, and a MKE-M08 LCD2004 I2C display module. The push button is connected to a digital input for user interaction, while the IR sensors are likely used for detecting obstacles. The Bluetooth module enables wireless communication, and the LCD display provides a user interface for displaying information or statuses.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

Key Technical Details

Parameter Value
Operating Voltage 5V DC
Operating Current ≤ 30mA
Sensing Distance 3-15 cm (adjustable)
Output Type Digital (High/Low)
Response Time ≤ 0.5 seconds
Operating Temperature -20°C to 70°C
Dimensions 28mm x 28mm x 10mm

Pin Configuration and Descriptions

Pin Number Pin Name Description
1 VCC Power supply (5V DC)
2 GND Ground
3 OUT Digital output signal (High/Low)
4 ADJ Sensing distance adjustment (optional)

Usage Instructions

How to Use the Component in a Circuit

  1. Power Supply: Connect the VCC pin to a 5V DC power supply and the GND pin to the ground.
  2. Output Signal: Connect the OUT pin to a digital input pin on your microcontroller (e.g., Arduino UNO).
  3. Sensing Distance Adjustment: If your application requires adjusting the sensing distance, use the ADJ pin. This can be done by connecting a potentiometer or using a fixed resistor.

Example Circuit Diagram

+5V (Arduino) ----> VCC (NO TOUCH BUTTON)
GND (Arduino) ----> GND (NO TOUCH BUTTON)
Digital Pin (Arduino) ----> OUT (NO TOUCH BUTTON)

Important Considerations and Best Practices

  • Power Supply: Ensure a stable 5V DC power supply to avoid erratic behavior.
  • Interference: Avoid placing the NO TOUCH BUTTON near strong electromagnetic fields or reflective surfaces, as this may affect its performance.
  • Mounting: Install the button in a location where it is easily accessible but protected from direct exposure to water or other contaminants.

Arduino UNO Example Code

/*
  NO TOUCH BUTTON Example Code
  This code demonstrates how to use the NO TOUCH BUTTON with an Arduino UNO.
  The button's output is read and used to control an LED.
*/

const int buttonPin = 2; // Pin connected to the OUT pin of NO TOUCH BUTTON
const int ledPin = 13;   // Pin connected to the onboard LED

void setup() {
  pinMode(buttonPin, INPUT); // Set button pin as input
  pinMode(ledPin, OUTPUT);   // Set LED pin as output
  Serial.begin(9600);        // Initialize serial communication
}

void loop() {
  int buttonState = digitalRead(buttonPin); // Read the button state

  if (buttonState == HIGH) {
    digitalWrite(ledPin, HIGH); // Turn on the LED
    Serial.println("Button Activated");
  } else {
    digitalWrite(ledPin, LOW);  // Turn off the LED
  }

  delay(100); // Small delay to debounce the button
}

Troubleshooting and FAQs

Common Issues Users Might Face

  1. Button Not Responding:

    • Solution: Check the power supply connections and ensure the VCC and GND pins are correctly connected.
    • Tip: Verify that the sensing distance is within the specified range (3-15 cm).
  2. False Triggers:

    • Solution: Ensure there are no reflective surfaces or strong electromagnetic fields near the button.
    • Tip: Adjust the sensing distance using the ADJ pin if necessary.
  3. Intermittent Operation:

    • Solution: Check for loose connections or unstable power supply.
    • Tip: Use a decoupling capacitor (e.g., 0.1µF) across the VCC and GND pins to filter out noise.

FAQs

  • Q: Can the NO TOUCH BUTTON be used outdoors?

    • A: While the button can operate in a wide temperature range, it is not waterproof. It should be protected from direct exposure to water.
  • Q: How do I adjust the sensing distance?

    • A: The sensing distance can be adjusted using the ADJ pin. Connect a potentiometer or a fixed resistor to fine-tune the distance.
  • Q: What is the maximum sensing distance?

    • A: The maximum sensing distance is 15 cm, but it can be adjusted to as low as 3 cm.

By following this documentation, users can effectively integrate and troubleshoot the NO TOUCH BUTTON in their projects, ensuring reliable and hygienic operation.