Difference between revisions of "Reading the Temperature"

From ArcoWiki
Jump to: navigation, search
m (2 revisions imported)
 
Line 14: Line 14:
 
<code><span style="color: green; text-decoration: none;">$$Z Axis sensor</span><br/></code>
 
<code><span style="color: green; text-decoration: none;">$$Z Axis sensor</span><br/></code>
 
::<code>assez=ASSIGN/QTEMP('z')</code>
 
::<code>assez=ASSIGN/QTEMP('z')</code>
 +
 +
[[it:Leggere la temperatura]]
 +
[[zh-cn:读取温度]]
 +
[[pt:Lendo a temperatura]]
 +
[[de:Die Temperatur lesen]]
 +
[[es:Leyendo la temperatura]]
 +
[[en:Reading the Temperature]]
  
 
[[Category:Dmis_Tutorial]]
 
[[Category:Dmis_Tutorial]]

Latest revision as of 07:37, 15 June 2018

This is used to read the temperature value for each axis/part sensor.
Typically can be used to send to the report the value of the temperature used for the compensation.

$$Begin Example

DECL/DOUBLE,pezzo1,pezzo2,assex,assey,assez

$$Part Sensor 1

pezzo1=ASSIGN/QTEMP('P1')

$$Part Sensor 2

pezzo2=ASSIGN/QTEMP('P2')

$$X Axis sensor

assex=ASSIGN/QTEMP('x')

$$y Axis sensor

assey=ASSIGN/QTEMP('y')

$$Z Axis sensor

assez=ASSIGN/QTEMP('z')