This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:iot-open:hardware2:sensors_electric [2024/05/23 22:44] – pczekalski | en:iot-open:hardware2:sensors_electric [2024/05/27 14:58] (current) – ktokarz | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Electrical Characteristic Sensors ====== | ||
| + | {{: | ||
| + | Electrical characteristic sensors measure the voltage and amperage of the electric current. When the voltage and current sensors are used concurrently, | ||
| + | |||
| + | == Potentiometer == | ||
| + | A potentiometer is a type of resistor whose resistance can be adjusted using a mechanical lever. The device consists of three terminals. The resistor between the first and the third terminal has a fixed value, but the second terminal is connected to the lever. Whenever the lever is turned, a slider of the resistor is moved; it changes the resistance between the second terminal and side terminals. Variable resistance causes the change of the voltage, which can be measured to determine the position of the lever. Thus, the potentiometer output is an analogue value.\\ | ||
| + | Potentiometers are commonly used as a control level, for example, a volume level for the sound and joystick position. They can also be used to determine the angle in feedback loops with motors, such as servo motors. The potentiometer symbol is present in figure {{ref> | ||
| + | |||
| + | <figure potentiometer1> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | <figure potentiometer2> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | <figure potentiometer3> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | An example code: | ||
| + | <code c> | ||
| + | |||
| + | // | ||
| + | int potentioPin = A0; | ||
| + | //The analogue reading from the potentiometer output | ||
| + | int potentioReading; | ||
| + | |||
| + | void setup(void) { | ||
| + | //Begin serial communication | ||
| + | Serial.begin(9600); | ||
| + | // | ||
| + | pinMode(potentioPin, | ||
| + | } | ||
| + | |||
| + | void loop(void) { | ||
| + | //Read the analogue value of the potentiometer sensor | ||
| + | potentioReading = analogRead(potentioPin); | ||
| + | Serial.print(" | ||
| + | Serial.println(potentioReading); | ||
| + | delay(10); | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | == Voltage Sensor == | ||
| + | A voltage sensor is a device or circuit for voltage measurement. A simple DC (direct current) voltage sensor consists of a voltage divider circuit with an optional amplifier for a tiny voltage measure. For measuring the AC (alternating current), the input is connected to the rectifier diode or bridge to rectify AC to DC and a capacitor to flatten the voltage. The resulting voltage can be measured with an analogue digital converter of the microcontroller. For safety, while measuring the mains voltage, an optoelectrical isolator should be added at the output, or a transformer should lower the voltage at the input.\\ | ||
| + | A voltage sensor can detect a power failure and measure if the voltage is in the range required. IoT applications include monitoring appliances, power lines, and power supplies.\\ | ||
| + | Sample voltage sensor module is present in figure {{ref> | ||
| + | |||
| + | <figure sensor_voltage1> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | <figure sensor_voltage2> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | The example code: | ||
| + | |||
| + | <code c> | ||
| + | //Define an analogue A1 pin for voltage sensor | ||
| + | int voltagePin = A1; | ||
| + | //The result of the analogue reading from the voltage sensor | ||
| + | int voltageReading; | ||
| + | |||
| + | float vout = 0.0; | ||
| + | float vin = 0.0; | ||
| + | float R1 = 30000.0; // 30 kΩ resistor | ||
| + | float R2 = 7500.0; // 7.5 kΩ resistor | ||
| + | |||
| + | void setup() | ||
| + | { | ||
| + | //Begin serial communication | ||
| + | Serial.begin(9600); | ||
| + | // | ||
| + | pinMode(voltagePin, | ||
| + | } | ||
| + | |||
| + | void loop() | ||
| + | { | ||
| + | //Read the value of the voltage sensor | ||
| + | voltageReading = analogRead(voltagePin); | ||
| + | vout = (voltageReading * 5.0) / 1024.0; | ||
| + | vin = vout / (R2/ | ||
| + | | ||
| + | Serial.print(" | ||
| + | //Print out the value of the voltage to the serial monitor | ||
| + | Serial.println(vin); | ||
| + | delay(10); //Short delay | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | == Current Sensor == | ||
| + | |||
| + | A current sensor is a device or a circuit for current measurement. A simple DC sensor consists of a high-power resistor with low resistance. The current value is obtained by measuring the voltage on the resistor and applying a formula derived from Ohm's law. Other non-invasive measurement methods involve hall effect sensors for DC and AC and inductive coils (current transformer) for AC.\\ | ||
| + | Current sensors determine the power consumption and detect whether the device is turned on or shorted.\\ | ||
| + | Sample current sensor modules are present in figures {{ref> | ||
| + | |||
| + | <figure sensor_current1> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | <figure sensor_current2> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | <figure sensor_current3> | ||
| + | {{ : | ||
| + | < | ||
| + | </ | ||
| + | |||
| + | The example code: | ||
| + | <code c> | ||
| + | //Define an analogue A0 pin for current sensor | ||
| + | const int currentPin = A0; | ||
| + | //Scale factor of the sensor use 100 for 20 A Module and 66 for 30 A Module | ||
| + | int mVperAmp = 185; | ||
| + | int currentReading; | ||
| + | int ACSoffset = 2500; | ||
| + | double voltage; | ||
| + | double current; | ||
| + | |||
| + | void setup(){ | ||
| + | | ||
| + | } | ||
| + | |||
| + | void loop(){ | ||
| + | |||
| + | | ||
| + | | ||
| + | | ||
| + | |||
| + | | ||
| + | | ||
| + | | ||
| + | //The ' | ||
| + | | ||
| + | | ||
| + | </ | ||