Difference between revisions of "Magnetic Switch"
Qian.zhang (talk | contribs) |
Qian.zhang (talk | contribs) (→Introduction) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
This is a magnetic switch module with Linker kit standard connection. | This is a magnetic switch module with Linker kit standard connection. | ||
− | [[File: | + | [[File:N18DH WITHOUT PACKAGED FRONT.jpg|640px]] |
+ | |||
+ | [[File:N18DH WITHOUT PACKAGED BACK.jpg|640px]] | ||
+ | |||
+ | [[File:N18DH PACKAGED FRONT.jpg|640px]] | ||
+ | |||
+ | [[File:N18DH PACKAGED BACK.jpg|640px]] | ||
+ | |||
+ | == Features == | ||
+ | |||
+ | Dimensions: 20.0×24.2×10.6mm | ||
+ | |||
+ | Net weight: 1.8g | ||
+ | |||
+ | == Dimension == | ||
+ | |||
+ | [[File:magnetic switch dimension.jpg]] | ||
==Schematics== | ==Schematics== | ||
Line 31: | Line 47: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | [[File:Magnetic link.jpg]] | ||
==How to buy== | ==How to buy== | ||
Here to buy Magnetic Switch on [http://store.linksprite.com/magnetic-switch-module-of-linker-kit-for-pcduino-arduino/ store] | Here to buy Magnetic Switch on [http://store.linksprite.com/magnetic-switch-module-of-linker-kit-for-pcduino-arduino/ store] |
Latest revision as of 07:27, 6 September 2015
Introduction
This is a magnetic switch module with Linker kit standard connection.
Features
Dimensions: 20.0×24.2×10.6mm
Net weight: 1.8g
Dimension
Schematics
Application Ideas
test <syntaxhighlight lang="c">
const int MagneticPin=9; const int ledPin=13; void setup() {
pinMode(MagneticPin, INPUT); pinMode(ledPin,OUTPUT);
}
void loop() {
int sensorValue = digitalRead(MagneticPin); if(sensorValue==1) { digitalWrite(ledPin,HIGH); } else { digitalWrite(ledPin,LOW); } }
</syntaxhighlight>
How to buy
Here to buy Magnetic Switch on store