🚚 National wide free shipping on order over ₹1500!
  1. Home
  2. Boards & Display
  3. KY-027 Magic Cup Tilt Switch Module Compatible with Arduino and Nodemcu
Gallery Image
Gallery Image
Product Image

Click Image to Preview

KY-027 Magic Cup Tilt Switch Module Compatible with Arduino and Nodemcu

In Stock

Brand: Generic   |   SKU: 8328698

₹ 65.00

₹ 88.00

Save 26%
Tax Included and Shipping Rate Calculated at Checkout

Enter your pincode to check delivery options

Offer & Other Details

  • Payment Offer: 2% Instant Discount on UPI and bank Transfer Payments.
  • Partial COD: Pay 25% Advance now and Balance on Delivery (COD).
  • Sales Assistance: Contact us +91 8903831010 for personalized advice.

Description

Magic Light Cup Module is a board which has a led and a mercury tilt switch. Using PWM to drive the LEDs on the module you can achieve the effect of light being magically transferred from one module to the other when tilting them. In short, its 2 components combined, a mercury tilt switch and a led. On tilting the module mercury inside small tube connect the switching point and make switch ON while tilting it to other side move the mercury and it disconnects the circuit and switch get OFF. The module operates on 5V DC supply.

So the magic in the name of this module is because when you tilt the switch, the led will turn on and off. And Of course, it is also possible to connect it to the NodeMCU.


Pin Connection with Arduino:
  1. G: GND
  2. +: 5v DC
  3. S: Arduino pin 8
  4. L: Arduino pin 9

Pin Connection with Node MCU:
  1. Connect G to a GND port of your NodeMCU
  2. Connect + to a 3.3v port of your NodeMCU
  3. Connect S to a digital port on your NodeMCU (in my example port D3)
  4. Connect L to a digital port on your NodeMCU (in my example port D5)

Arduino Example Code:-

In this Arduino sketch, well use two Switching modules to create the magic light cup effect. The mercury switches in each module provide a digital signal that is used to regulate the brightness of the LEDs using PWM. Tilting the modules will decrease the brightness on one module while increasing it on the other one, creating the illusion of light magically passing from one module to the other.

int ledPinA = 9;int switchPinA = 8;int switchStateA = 0;int ledPinB = 6;int switchPinB = 7;int switchStateB = 0;int brightness   = 0;void setup() {  pinMode(ledPinA, OUTPUT);   pinMode(ledPinB, OUTPUT);    pinMode(switchPinA, INPUT);   pinMode(switchPinB, INPUT);}void loop() {  switchStateA = digitalRead(switchPinA);  if (switchStateA == HIGH && brightness != 255)  {    brightness ++;  }   switchStateB = digitalRead(switchPinB);  if (switchStateB == HIGH && brightness != 0)  {    brightness --;  }   analogWrite(ledPinA, brightness);  //  A slow fade out  analogWrite(ledPinB, 255 - brightness);  // B slow bright up  delay(20);}


Specifications:-

Operating Voltage Range

3.3V 5V

Length (mm)

22

Width (mm)

24

Height (mm)

25

Weight (gm)

2



Package Includes:

1 x Magic Cup Light Module

Related Products

Save 8% Arduino Nano R3 Atmega328P (Pin Unsoldered)
Generic In stock

₹ 278.00

₹ 301.00

Save 9% Arduino UNO (SMD)
Generic In stock

₹ 328.00

₹ 362.00

Save 3% Arduino Nano R3 Atmega328P (Pin Soldered)
Generic In stock

₹ 289.00

₹ 297.00

Save 29% Arduino UNO (DIP)
Generic In stock

₹ 524.00

₹ 740.00

Save 9% Arduino Pro Mini
Generic In stock

₹ 289.00

₹ 318.00

Save 28% Arduino UNO Prototyping Shield
Generic Out of Stock

₹ 91.00

₹ 126.00

WhatsApp