Wish List 0

Strain Gauge Module

Rs. 49.00 Rs. 59.00

  • Product Code: SEN-STRAIN
  • SKU - SE-2953
  • Availability: 2-3 Days
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
>>> The strain gauge is a foil metal strain gauge, widely used in pressure sensors and weighing sensors.
>>> It shares features of high accuracy, good stability,fully-closed structure, and automatic compensation of temperature and creep. >>Specifically, its backing material is made of modified phenolic while its gate wire is made of cuni. BF350 is mainly fit for 0.02 level manufacturing crafts pressure sensor which means its output deviation should be controlled within 0.02 so its precision is really high. You could use it to measure the strain of components directly.

SPECIFICATIONS:

  Size                                                                    :7.4mm(length) x 4.4mm(width)

  The key technical indexes                              :BF series

  Strain limit                                                         :2.0%

  fatigue life                                                          :≥1M

  Resistance                                                          :350 ohms

  Contrast: 800                                                     :1 (Min) (transmission)

  Sensitivity coefficient                                        :2.00-2.20

  Using temperature range                                 :-30--+80

  Tolerance of average resistance                      :≤±0.1%

  Sensitive coefficient dispersion                        :≤±1%

  Temperature self compensation coefficient  :9,11,16,23,27

OVERVIEW:

  Resistance                                             :349.8 ±0.1Ω

  Sensitivity coefficient(gauge factor)  :2.0 – 2.20

  Accuracy class                                       :0.02

  Strain limit                                             :2.0% (2000 microstrain)

  Monolithic size                                     :7.1mm x 4.5MM

PACKAGE INCLUDES:

1 PCS x Strain Gauge Module




// SOURCE CODE TAKEN FROM BEOW LINK

//https://innovatorsguru.com/strain-gauge-sensor/

//BF350-3AA Arduino Code

#define SensorPin A0

int aSignal = 0;

int aSignalPercent = 0;

void setup()

{

Serial.begin(9600);

}

void loop() {

aSignal = analogRead(SensorPin);

aSignalPercent = map(aSignal, 0, 700, 0, 100);

Serial.print(“aSignal: “);

Serial.print(aSignal);

Serial.print(” | “);

Serial.print(aSignalPercent);

Serial.println(“%”);

delay(500);

}

15 days

Write a review

Please login or register to review