# getDeviceCurrentTH Return current temperature and humidity for specified device. ### Usage ``` const temphumd = await connection.getDeviceCurrentTH(''); console.log(temphumd); ``` * _Remember to instantiate class before use_ ### Response example ```js { status: 'ok', temperature: '20', humidity: '76' } ```