Difference between revisions of "Mosfet Module"

From LinkSprite Playgound
Jump to: navigation, search
(Introduction)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
==Introduction==
 +
This is a Mosfet module with Linker kit standard connection.Linker Mosfet(SSR) Module is a non-contact electronic switch module that has relay features. The featured LED indicates that the relay is on. It can be widely used in various areas such as computer peripheral interfaces, temperature/speed/light adjustment, servo control, petrochemical, medical instrumentations, financial devices, coal, meters, traffic signals, etc.
  
[[File:Linker SSR.jpg]]
+
[[File:N16DH WITHOUT PACKAGED FRONT.jpg|640px]]
 +
 
 +
[[File:N16DH WITHOUT PACKAGED BACK.jpg|640px]]
 +
 
 +
== Features ==
 +
 
 +
Dimensions: 44.2×44.2×21.0mm
 +
 
 +
Net weight: 10g
 +
 
 +
== Dimension ==
 +
 
 +
[[File:SSR dimension.jpg]]
  
 
== Schematics ==
 
== Schematics ==
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker+SSR.pdf Schematics]
 
*[https://s3.amazonaws.com/linksprite/LinkerKit/Linker+SSR.pdf Schematics]
 +
 +
==Application Ideas==
 +
 +
<syntaxhighlight lang="c">
 +
/*
 +
  Linker ssr
 +
  the ssr will turn on for 5s and then turn off for 5s, and so on.
 +
 +
  This example code is in the public domain.
 +
*/
 +
 +
int ssrControlPin = 13;
 +
void setup() {               
 +
  // initialize the digital pin as an output.
 +
  // Pin 13 has an LED connected on most Arduino boards:
 +
  pinMode(ssrControlPin, OUTPUT);   
 +
}
 +
 +
void loop() {
 +
  digitalWrite(ssrControlPin, HIGH);  // set the LED on
 +
  delay(5000);              // wait for a second
 +
  digitalWrite(ssrControlPin, LOW);    // set the LED off
 +
  delay(5000);              // wait for a second
 +
}
 +
</syntaxhighlight>
 +
 +
[[File:SSR link1.jpg]]
 +
 +
[[File:SSR link2.jpg]]
  
 
==Resources ==
 
==Resources ==
 
*[http://sharp-world.com/products/device/lineup/data/pdf/datasheet/s108t02_e.pdf S108T02]
 
*[http://sharp-world.com/products/device/lineup/data/pdf/datasheet/s108t02_e.pdf S108T02]
 +
 +
==How to buy==
 +
Here to buy Mosfet Module on [http://store.linksprite.com/mosfet-module-of-linker-kit-for-pcduino-arduino/ store]

Latest revision as of 03:41, 22 July 2016

Introduction

This is a Mosfet module with Linker kit standard connection.Linker Mosfet(SSR) Module is a non-contact electronic switch module that has relay features. The featured LED indicates that the relay is on. It can be widely used in various areas such as computer peripheral interfaces, temperature/speed/light adjustment, servo control, petrochemical, medical instrumentations, financial devices, coal, meters, traffic signals, etc.

N16DH WITHOUT PACKAGED FRONT.jpg

N16DH WITHOUT PACKAGED BACK.jpg

Features

Dimensions: 44.2×44.2×21.0mm

Net weight: 10g

Dimension

SSR dimension.jpg

Schematics

Application Ideas

<syntaxhighlight lang="c"> /*

 Linker ssr
 the ssr will turn on for 5s and then turn off for 5s, and so on.

 This example code is in the public domain.
*/

int ssrControlPin = 13; void setup() {

 // initialize the digital pin as an output.
 // Pin 13 has an LED connected on most Arduino boards:
 pinMode(ssrControlPin, OUTPUT);     

}

void loop() {

 digitalWrite(ssrControlPin, HIGH);   // set the LED on
 delay(5000);              // wait for a second
 digitalWrite(ssrControlPin, LOW);    // set the LED off
 delay(5000);              // wait for a second

} </syntaxhighlight>

SSR link1.jpg

SSR link2.jpg

Resources

How to buy

Here to buy Mosfet Module on store