Factory Outlets TU-032 thermostatic cartridge wax sensor for sanitary ware to British Importers
Short Description:
Product Detail
Product Tags
Factory Outlets TU-032 thermostatic cartridge wax sensor for sanitary ware to British Importers Detail:
1. Operation Principle
The Thermostatic Wax that has been sealed in shell body induces expansion by a given temperature, and inner rubber seal part drives its handspike to move under expansion pressure to realize a transition from thermal energy into mechanical energy. The Thermostatic Wax brings an upward movement to its handspike, and automatic control of various function are realized by use of upward movement of handspike. The return of handspike is accomplished by negative load in a given returned temperature.
2. Characteristic
(1)Small body size, occupied limited space, and its size and structure may be designed in according to the location where needs to work.
(2)Temperature control is reliable and nicety
(3)No shaking and tranquilization in working condition.
(4)The element doesn’t need special maintenance.
(5)Working life is long.
3.Main Technical Parameters
(1)Handspike’s height may be confirmed by drawing and technical parameters
(2)Handspike movement is relatives to the temperature range of the element, and the effective distance range is from 1.5mm to 20 mm.
(3)Temperature control range of thermal wax actuator is between –20 ~ 230℃.
(4)Lag phenomenon is generally 1 ~ 2℃. Friction of each component part and lag of the component part temperature cause a lag phenomenon. Because there is a difference between up and down curve of traveling distance.
(5)Loading force of thermal wax actuator is difference, it depends on its’ shell size.
Product detail pictures:

It truly is our responsibility to fulfill your requirements and successfully provide you. Your fulfillment is our best reward. We're seeking forward in your check out for joint development for Factory Outlets TU-032 thermostatic cartridge wax sensor for sanitary ware to British Importers, The product will supply to all over the world, such as: Oman , Kenya , Madagascar , We attained ISO9001 which provides solid foundation for our further development. Persisting in "High quality, Prompt Delivery, Competitive Price", we have established long-term cooperation with clients from both overseas and domestically and get new and old clients' high comments. It is our great honor to meet your demands. We are sincerely expecting your attention.
Thermal Electric Actuator : https://www.aliexpress.com/item/Final-Clear-Out-Thermal-Electric-Actuator-for-Manifold-in-Under-flooring-Heating-System-230V-NC-for/32711065878.html?spm=2114.30010308.3.2.a8EcNe&ws_ab_test=searchweb0_0,searchweb201602_2_10065_10068_10000009_10084_10000025_10083_10080_10000029_10082_10081_10000028_10110_10111_10060_10112_10113_10062_10114_10056_10055_10037_10054_10059_10032_10099_10078_10079_10000022_10077_10000012_10103_10073_10102_10000015_10096_10000018_10000019_10052_10053_10107_10050_10106_10051-10050,searchweb201603_1,afswitch_5_afChannel,single_sort_3_default&btsid=e917473a-92ea-4b74-a389-1ddf6114dcf4
Relay for Arduino / Raspbery Pi : https://www.aliexpress.com/item/5V-One-1-Channel-Relay-Module-Board-Shield-For-PIC-AVR-DSP-ARM-for-arduino-Relay/32718527508.html?spm=2114.30010308.3.57.PhvIW2&ws_ab_test=searchweb0_0,searchweb201602_2_10065_10068_10000009_10084_10000025_10083_10080_10000029_10082_10081_10000028_10110_10111_10060_10112_10113_10062_10114_10056_10055_10037_10054_10059_10032_10099_10078_10079_10000022_10077_10000012_10103_10073_10102_10000015_10096_10000018_10000019_10052_10053_10107_10050_10106_10051-10050,searchweb201603_1,afswitch_5_afChannel,single_sort_3_default&btsid=e4725c30-a074-42ad-93aa-fa6b26a60bcb
CODE:
PYTHON:
import RPi.GPIO as GPIO
from time import sleep
import MySQLdb
GPIO.setwarnings(False)
conn = MySQLdb.connect(host=”localhost”, user=”test”, passwd=”test”, db=”test”)
cursor = conn.cursor()
# The script as below using BCM GPIO 00..nn numbers
GPIO.setmode(GPIO.BCM)
# Set relay pins as output
GPIO.setup(5, GPIO.OUT)
while (True):
sql = “SELECT COUNT(1) FROM temperature WHERE parno = ’3′”
cursor.execute(sql)
conn.commit()
result = cursor.fetchone()[0]
if result == 1:
# parnoto izstiva
GPIO.output(5, GPIO.HIGH)
#print ‘parnoto e izklucheno’
# Sleep for 1 seconds
sleep(1)
if result != 1:
# parnoto zagrqva
GPIO.output(5, GPIO.LOW)
#print ‘parnoto e vklucheno’
# Sleep for 1 seconds
sleep(1)
HTML / PHP :
php
error_reporting(E_ALL ^ E_DEPRECATED ^ E_WARNING);
$dbhost = ’192.168.0.1:3306′;
$dbuser = ‘test’;
$dbpass = ‘test’;
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
die(‘Няма връзка с базата данни: ‘ . mysql_error());
mysql_select_db(‘test’);
//parnoto izstiva
if(isset($_POST['izkluchi']))
$sql = ‘update temperature set parno=3 where ID=1;’;
$retval = mysql_query( $sql, $conn );
mysql_close($conn);
//parnoto zagrqva
if(isset($_POST['vkluchi']))
$sql2 = ‘update temperature set parno=4 where ID=1;’;
$retval2 = mysql_query( $sql2, $conn );
mysql_close($conn);
?
In this tutorial I’m demonstrating how to use MQ-2/MQ-5 gas sensors with Arduino. These little devices may be used in gas leakage detectors.
The MQ-2 is suitable for detecting LPG, i-butane, propane, methane, hydrogen and even smoke.
The MQ-5 detects LPG, natural gas and town gas.
Many other gas sensors can be used in exactly the same way, e.g. MQ-3, MQ-6 or MQ-135. Just read the datasheet, use the appropriate load resistor and experiment with the “sensorValue” in my Arduino code.
Project page – you can download Arduino code and see schematic used in this video here:
https://ElectronFun.com/project_2.php
Datasheets:
MQ-2: https://www.seeedstudio.com/depot/datasheet/MQ-2.pdf
MQ-5: https://www.seeedstudio.com/depot/datasheet/MQ-5.pdf
See how to calibrate an MQ-2 gas sensor:
See all my Arduino tutorials here:
https://www.youtube.com/playlist?list…
Subscribe to get notified about my new videos:
https://www.youtube.com/subscription_c…
———————————————————————————————-
YouTube channel: https://www.youtube.com/user/electron…
Google+: https://plus.google.com/+Electronfuncom
Facebook: https://www.facebook.com/ElectronFunPage
Twitter: https://twitter.com/ElectronFun
Website: https://ElectronFun.com
———————————————————————————————-
Video, edit, voice by Chris Lorkowski
Music composed and performed by Bensound – Happiness
https://www.bensound.com
Sound effects recorded by Mark DiAngelo – Blop
https://soundbible.com