iot sensor finished

1)with validation on front and backend
2)fixed seed route generating value 0 for data
This commit is contained in:
newtbot
2024-01-14 02:43:27 +08:00
parent a7e1a0028e
commit c00a57d5f6
12 changed files with 417 additions and 148 deletions

View File

@ -0,0 +1,23 @@
const { locationModel } = require("../Database/locationModel");
const { sensorModel } = require("../Database/sensorModel");
async function getLocation() {
const location = locationModel.findAll({
raw: true,
order: [["id", "ASC"]],
attributes: ["id"],
});
return location;
}
async function getSensor() {
const sensor = sensorModel.findAll({
raw: true,
order: [["id", "ASC"]],
attributes: ["id"],
});
return sensor;
}
module.exports = { getLocation, getSensor };