<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ko">
	<id>https://arduwiki.com/html/index.php?action=history&amp;feed=atom&amp;title=FSR-400_Pressure_Sensor_EN</id>
	<title>FSR-400 Pressure Sensor EN - 편집 역사</title>
	<link rel="self" type="application/atom+xml" href="https://arduwiki.com/html/index.php?action=history&amp;feed=atom&amp;title=FSR-400_Pressure_Sensor_EN"/>
	<link rel="alternate" type="text/html" href="https://arduwiki.com/html/index.php?title=FSR-400_Pressure_Sensor_EN&amp;action=history"/>
	<updated>2026-04-29T01:51:49Z</updated>
	<subtitle>이 문서의 편집 역사</subtitle>
	<generator>MediaWiki 1.40.1</generator>
	<entry>
		<id>https://arduwiki.com/html/index.php?title=FSR-400_Pressure_Sensor_EN&amp;diff=2574&amp;oldid=prev</id>
		<title>ArduWiki: 새 문서: {{#seo:|title=Arduino Wiki: FSR-400 Pressure Sensor Guide|title_mode=append|keywords=Arduino, Information Science, Maker Learning, Performance Evaluation, FSR-400 Pressure Sensor, Arduino Projects, Capstone Projects, Arduino Example Code|description=This guide introduces how to control the FSR-400 pressure sensor with Arduino (basic information, circuit, example code). It is useful for information science and maker classes.}}  class=coders100...</title>
		<link rel="alternate" type="text/html" href="https://arduwiki.com/html/index.php?title=FSR-400_Pressure_Sensor_EN&amp;diff=2574&amp;oldid=prev"/>
		<updated>2025-03-27T12:38:28Z</updated>

		<summary type="html">&lt;p&gt;새 문서: {{#seo:|title=Arduino Wiki: FSR-400 Pressure Sensor Guide|title_mode=append|keywords=Arduino, Information Science, Maker Learning, Performance Evaluation, FSR-400 Pressure Sensor, Arduino Projects, Capstone Projects, Arduino Example Code|description=This guide introduces how to control the FSR-400 pressure sensor with Arduino (basic information, circuit, example code). It is useful for information science and maker classes.}}  &lt;a href=&quot;/wiki/%ED%8C%8C%EC%9D%BC:FSR400%EB%A9%94%EC%9D%B8.jpg&quot; title=&quot;파일:FSR400메인.jpg&quot;&gt;center|class=coders100&lt;/a&gt;...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;새 문서&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{#seo:|title=Arduino Wiki: FSR-400 Pressure Sensor Guide|title_mode=append|keywords=Arduino, Information Science, Maker Learning, Performance Evaluation, FSR-400 Pressure Sensor, Arduino Projects, Capstone Projects, Arduino Example Code|description=This guide introduces how to control the FSR-400 pressure sensor with Arduino (basic information, circuit, example code). It is useful for information science and maker classes.}}&lt;br /&gt;
&lt;br /&gt;
[[파일:FSR400메인.jpg|center|class=coders100]]&lt;br /&gt;
&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;Overview&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
FSR (Force Sensing Resistor) is a sensor that detects pressure, and its resistance changes when force or pressure is applied.&lt;br /&gt;
&lt;br /&gt;
This guide introduces a simple way to measure pressure using Arduino.&lt;br /&gt;
&lt;br /&gt;
=== Working Principle ===&lt;br /&gt;
The sensor is made of multiple layers stacked together. When pressure is applied, the contact area between the layers increases, and the resistance decreases.&lt;br /&gt;
&lt;br /&gt;
By connecting the FSR in series with a resistor, the change in resistance is measured through voltage division, and the pressure is read via an Arduino analog pin.&lt;br /&gt;
&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;Specifications&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Detection Range&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|0.1 ~ 100N (may vary depending on the model)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Size&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|7.6 x 38 mm&lt;br /&gt;
|-&lt;br /&gt;
|&amp;#039;&amp;#039;&amp;#039;Diameter&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
|5.08 mm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;Example Usage&amp;#039;&amp;#039;&amp;#039; ==  &lt;br /&gt;
This example demonstrates how to observe the change in voltage when the FSR-400 pressure sensor is pressed, using the serial monitor.&lt;br /&gt;
&lt;br /&gt;
A pull-down resistor circuit is set up to prevent noise and for voltage division.&lt;br /&gt;
&lt;br /&gt;
If the resistor value is too large, the sensitivity may decrease. If it&amp;#039;s too small, the sensitivity becomes too high and can strain the circuit, so it&amp;#039;s best to use the appropriate value. In this example, a 10kΩ resistor is used.&lt;br /&gt;
&lt;br /&gt;
=== Circuit Configuration ===  &lt;br /&gt;
The FSR-400 sensor has no polarity, so either pin can be used.&lt;br /&gt;
&lt;br /&gt;
==== [[파일:FSR400회로1.jpg|center|class=coders100]] ====&lt;br /&gt;
&lt;br /&gt;
=== Example Code ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
const int fsr = A0; // FSR sensor connected to analog pin&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600); // Start serial communication&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
  int val = analogRead(fsr); // Read analog value from FSR&lt;br /&gt;
  Serial.print(&amp;quot;FSR Reading: &amp;quot;); // Output message&lt;br /&gt;
  Serial.println(val); // Print the value&lt;br /&gt;
&lt;br /&gt;
  delay(500); // Wait for 0.5 seconds&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Execution Result ====&lt;br /&gt;
When the sensor is not pressed, the value is 0, and as pressure is applied to the sensor, the voltage value increases.&lt;br /&gt;
&lt;br /&gt;
[[파일:FSR400실행결과.png|class=coders70]]&lt;/div&gt;</summary>
		<author><name>ArduWiki</name></author>
	</entry>
</feed>