Good quality 100% Low Temperature Wax to South Africa Manufacturer
Short Description:
Product Detail
Product Tags
Good quality 100% Low Temperature Wax to South Africa Manufacturer Detail:
Automatic Temperature Regulating Agent Series is a kind of thermal expansion materials, which depends on principles that the substance expands when it is heated and constricts when it is cooled and a liquid is incompressible. It can automatically regulate temperature. When the ambient temperature goes up to the special value, Automatic Temperature Regulating Agent goes up to the special temperature with the ambient temperature, its unit volume increases. When the ambient temperature falls down to special value, Automatic Temperature Regulating Agent also falls down to the special temperature with the ambient temperature, its unit volume reduces. The agent is loaded in the purpose-made thermostatic element. The variation of ambient temperature takes a pressure and the thermostatic element takes a change, and this change brings the movement of either the appurtenance of the thermodynamic component or itself, thereby carrying out the automatic opening & closing function. All sorts of temperature controllers and the electrical switches are developed depending on the physical feature of Automatic Temperature Regulating Agent. It has been widely used in the fields of refrigeration, auto-control system, automobile industry, petrochemical industry, sanitary ware, heating and ventilating, electric electron, building, space & aviation etc.
|
Model Number |
Appearance (Normal Temperature) |
Quality Standard |
||||||
|
Range of Temperature Control |
Effective Distance Travel |
Water-Solubility Acid and Alkali |
Mechanical Impurity |
|||||
|
A30-1 |
Powder, Cream |
30/40 |
7 |
Non. |
Non. |
|||
|
A30-2 |
Powder, Cream |
30/40 |
10 |
Non. |
Non. |
|||
|
A30-3 |
Powder, Cream |
3045 |
10 |
Non. |
Non. |
|||
|
A30-4 |
Powder, Cream |
30/60 |
8 |
Non. |
Non. |
|||
|
A30-5 |
Powder, Cream |
30/65 |
4 |
Non. |
Non. |
|||
|
A30-6 |
Powder, Cream |
30/85 |
10 |
Non. |
Non. |
|||
|
A32 |
Powder, Cream |
32/60 |
4 |
Non. |
Non. |
|||
|
A33 |
Powder, Cream |
33/45 |
6 |
Non. |
Non. |
|||
|
A35 |
Powder, Cream |
35/45 |
5 |
Non. |
Non. |
|||
|
A35-1 |
Powder, Cream |
35/45 |
10 |
Non. |
Non. |
|||
|
A35-2 |
Powder, Cream |
35/50 |
8 |
Non. |
Non. |
|||
|
A36 |
Powder, Slice , Column |
36/62 |
5.5 |
Non. |
Non. |
|||
|
A37 |
Powder, Slice , Column |
37/47 |
9 |
Non. |
Non. |
|||
|
A38 |
Powder, Slice , Column |
38/50 |
7 |
Non. |
Non. |
|||
|
A40 |
Powder, Slice , Column |
40/50 |
7 |
Non. |
Non. |
|||
|
A40-1 |
Powder, Slice , Column |
40/50 |
10 |
Non. |
Non. |
|||
|
A40-2 |
Powder, Slice , Column |
40/64 |
4 |
Non. |
Non. |
|||
|
A40-3 |
Powder, Slice , Column |
40/80 |
8 |
Non. |
Non. |
|||
|
A42 |
Powder, Slice , Column |
42/68 |
5 |
Non. |
Non. |
|||
|
A43 |
Powder, Slice , Column |
43/48 |
6 |
Non. |
Non. |
|||
|
A43-1 |
Powder, Slice , Column |
43/55 |
7 |
Non. |
Non. |
|||
Product detail pictures:

We're proud from the higher client fulfillment and wide acceptance due to our persistent pursuit of high quality both on product and service for Good quality 100% Low Temperature Wax to South Africa Manufacturer, The product will supply to all over the world, such as: Canada , Turkey , Luxembourg , "Good quality, Good service " is always our tenet and credo. We take every effort to control the quality, package, labels etc and our QC will check every detail during producing and before shipment. We are willing to establish long business relationship with those who seek the high quality products and good service. We have set up a wide sales network across European countries, North of America, South of America, Middle East, Africa, East Asia countries.Please contact us now, you will find our professional experience and high quality grades will contribute to your business.
Thermostat doesn’t appear to be opening up.
Code
#include 16f877a.h
#device adc=10 // Set ADC resolution to 10Bit
#fuses XT,NOLVP,NOWDT,NOPROTECT
#use delay(clock=4000000)
#use rs232(baud=9600,xmit=PIN_C6,rcv=PIN_C7,ERRORS)
#include “flex_lcd.c”
#define LOAD PIN_B7
#define THRES 30.0 // load switching threshold in Celsius
int16 digital_reading; // ADC resolution is 10Bit, an 8Bit integer is not enough to hold the reading
float temp;
void main()
/* ADC Initialization */
setup_adc(ADC_CLOCK_INTERNAL); // initialize ADC with a sampling rate of Crystal/4 MHz
setup_adc_ports(RA0_ANALOG); // set PIN_A0 as analog input channel
set_adc_channel(0); // point ADC to channel 0 for ADC reading
delay_ms(1); // ADC module is slow, needs some time to adjust.
/* Peripherals Configurations */
lcd_init(); // Turn LCD ON, along with other initialization commands
output_low(LOAD); // the load is initially OFF
lcd_gotoxy(1,1); // point LCD cursor to col1 row1
lcd_putc(“Temperature is:”); // print on LCD
while(1) // infinite loop
digital_reading = read_adc(); // capture current temperature reading
delay_us(100); // 0.1ms delay for ADC stabilization
temp = digital_reading * 0.4883; // convert reading to Celsius
lcd_gotoxy(1,2); // point LCD cursor to col1 row2
printf(lcd_putc,”%2.1f C”,temp); // print value on LCD
if(temp=THRES) output_high(LOAD); // Control Load
else output_low(LOAD);
delay_ms(1000); // 1 second delay between readings






