Wish List 0

Square Inductive Proximity Metal Switch Sn04 N Dc Three Wire Npn Normally Open No Sensor Sensor

Rs. 85.00 Rs. 97.00

  • Product Code: SEN-METAL
  • SKU -
  • Availability: In Stock
  • Price in reward points: 2
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
1. XH-W1401 is a 12 volt Intelligent digital Thermostat module. XH-W1401 is a dual temperature controlled thermostat. This module can manipulate each heater and cooler and you may set it consistent with your utility.
2. A NTC temperature sensor is provided for tracking temperature from a number of -nine℃ to ninety nine℃. A relay is provided for AC or DC load manage the relay can control up-to 10 ampere. The module enter voltage (supply voltage) is 12 volts DC.  
3. Features of XH-W1401 Temperature Sensor Module 
4. A easy Temperature Sensor Module with 30A Relay.
5. Model : XH-W1401
6. Thermostat Range : -9℃ to ninety nine℃
7. Thermostat Accuracy : 1℃
8. Power Supply : DC9-12V
9. Output : Electric relay output ,ability 220V 10A/12V 10A                                                                                                                                                10.For cooling or heating temperature manage

SPECIFICATIONS:

   Model                                        :SN04-N NPN-NO

   Type                                           :Inductive

   Detection distance                  :5 mm

   Output Type                             :NO(Normally Open)

   Operating Voltage (VDC)         :10 ~ 30

  Current Consumption (mA)    :5

  Cable Length (Meter)               :1.5

  Material                                     :ABS Plastic

  Operating Indicator                 :Red LED


OVERVIEW:

       Operating Voltage(V)                 :10 ~30

       Current Consumption Max       :5 mA

       Detection distance(mm)            :5 mm.

      Type of detection                         :Inductive.

      Cable Length                                 :145 cm.

      Response Frequency                   :500Hz Max.

      Protection class                            :IP 67.

PACKAGE INCLUDES:

1 PCS x Square Inductive Proximity Metal Switch Sn04 N Dc Three Wire Npn Normally Open No Sensor Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.codrey.com/arduino-projects/arduino-tachometer/

/*

 * Arduino Tachometer (for beginners)

 * uC Hardware: Arduino Uno R3 & DFR0009 LCD Shield 

 * Sensor: SN04-N Inductive Proximity Sensor

 * Prepared & Tested by T.K.Hareendran

 * Publisher: Codrey Electronics

 */

 

 #include <LiquidCrystal.h>


LiquidCrystal lcd(8, 9, 4, 5, 6, 7); // Pins assigned for DFR0009


volatile uint32_t rev; // Revolution Count

unsigned long measureTime = 0;


void setup() {

  pinMode(2, INPUT); // Interrupt 0

 // pinMode(2, INPUT_PULLUP); // Internal Pull Up*



  lcd.begin(16, 2);

  lcd.print("***TACHOMETER***");

  delay(500);


  attachInterrupt(0, addRevolution, FALLING);

}


void addRevolution() {

  rev++;

}


void loop() {

  delay(1000);


  noInterrupts();

  uint32_t rpm = rev * 60000 / (millis() - measureTime);

  rev = 0;

  measureTime = millis();

  interrupts();


  lcd.setCursor(0, 1);

  lcd.print(rpm);

  lcd.print(" RPM        ");

}

15 days

Write a review

Please login or register to review