2019-08-20 19:37:45 +00:00
|
|
|
SELECT
|
|
|
|
sensor_id,
|
|
|
|
sensor_name,
|
|
|
|
sensor_location,
|
|
|
|
wire_id,
|
|
|
|
i2c_bus,
|
|
|
|
i2c_address,
|
|
|
|
gpio_number,
|
|
|
|
sensor_model,
|
|
|
|
sensor_enabled,
|
2020-06-01 20:36:57 +00:00
|
|
|
tick_duration,
|
2019-08-20 19:37:45 +00:00
|
|
|
device_id,
|
2020-06-01 20:36:57 +00:00
|
|
|
creation_date,
|
|
|
|
update_date
|
2019-08-20 19:37:45 +00:00
|
|
|
FROM
|
|
|
|
sensors
|
|
|
|
WHERE
|
2020-10-07 21:38:27 +00:00
|
|
|
sensor_id = $1
|
|
|
|
ORDER BY
|
|
|
|
sensor_name ASC;
|