Latest Products
-
IRF520 MOS FET Driver Module ( Copy ) ( Copy )
4.64€ -
180pcs M3 Nylon Spacers Screws Nuts Hexagon Studs Box Kit
8.33€ -
MINI360 3A MINI DC-DC STEP DOWN CONVERTER VOLT REGULATOR 5V-23V TO 3. 6V 9V 12V
2.62€ -
5V Power Bank circuit board
4.17€ -
Micro Usb to Dip
2.96€ -
ICS43432 I2S Digital Microphone
10.12€ -
LED breakout module
4.17€ -
Delay Trigger
2.98€ -
Adafruit I2S MEMS Microphone Breakout - SPH0645LM4H
10.12€ -
VL53L0X V2 laser range distance sensor module
4.71€ -
GY-4466 Professional MAX4466 High Precision Electret Microphone Amplifier with Adjustable Gain for Arduino
7.14€ -
DC to DC HW613 step down
2.38€ -
Nand gate
1.19€ -
38KHz Infrared IR Receiver Sensor Module Geekcreit for Arduino ( Copy )
1.79€ -
Potentiometer 10k Ohms
0.36€ -
OP-AMP
1.19€ -
38KHz Infrared IR Transmitter Sensor Module Geekcreit for Arduino
2.38€ -
2N3904 transistor
1.19€ -
Raindrops Detection Sensor Module Compatible with Arduino
8.33€ -
PCB LoRa antenna
5.36€ -
Photoresistor Photo Light Sensitive Resistor Light Dependent Resistor
1.19€ -
helical coil antenna
5.36€ -
ARCELI DC to DC step down
2.98€ -
22402A-18 protoboard one side 5X7 cm
3.45€ -
22402A-18 protoboard two sided 5x7 cm
3.45€ -
22402A-18 protoboard two sided 4x6 cm
3.45€ -
22402A-17 protoboard two sided 2x8 cm
3.45€ -
22402A-17 protoboard two sided 3x7 cm
3.45€ -
WHITE LED's 5mm
0.36€ -
NeoPixel Stick - 8 x 5050 RGB LED with Integrated Drivers
5.95€ -
WHITE LED's 3mm
0.30€ -
mini push button switch 4 pin ( Copy )
0.60€ -
rocket switch 2 pin
0.60€ -
New Led Ring 16x 5050 RGB LED Board with Integrated Drivers Module Geekcreit for Arduino - products that work with official Arduino boards
7.14€ -
Lot Limit switch 3 pin
0.60€ -
Slide switch 3 pin
0.60€
Tilt switch module and a digital interface, built-in 13 LED build a simple circuit to produce tilt warning lamp 13 comes with digital interfaces of the LED, the tilt switch sensor interface to access digital 3,when the tilt open Off sensor senses a key signal, LED lights, otherwise off.
Routines source code:
int Led = 13 ;// define LED Interface
int buttonpin = 3; // define the tilt switch sensor interfaces
int val ;// define numeric variables val
void setup()
{
pinMode(Led, OUTPUT) ;// define LED as output interface
pinMode(buttonpin, INPUT) ;// define the output interface tilt switch sensor
}
void loop ()
{
val = digitalRead(buttonpin) ;// digital interface will be assigned a value of 3 to read val
if(val == HIGH) // When the tilt sensor detects a signal when the switch, LED flashes
{
digitalWrite(Led, HIGH);
}
else
{
digitalWrite(Led, LOW);
}
}
- Availability: 1