name = $name; socket_set_timeout($this->sock, 3); } public function readSensor(): void { $this->send('read'); $data = jsonDecode($this->recv()); $temp = round((float)$data['temp'], 3); $hum = round((float)$data['humidity'], 3); $this->temp = $temp; $this->humidity = $hum; } }