Merge branch 'master' of git.reim.ar:ReiMerc/temperature-alarm

This commit is contained in:
Jeas0001 2025-03-18 12:46:08 +01:00
commit e3adb74b81
10 changed files with 147 additions and 0 deletions

0
frontend/home/home.css Normal file
View File

11
frontend/home/home.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temperature-Alarm-Web</title>
</head>
<body>
<h3>hello</h3>
</body>
</html>

0
frontend/home/home.js Normal file
View File

View File

@ -0,0 +1,27 @@
const address = "http://10.135.51.116/temperature-alarm-webapi/devices"
function getDevicesOnUserId(id) {
fetch(`${address}/get-on-user-id`, {
method: "GET",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ id: id })
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}
function update(ids) {
fetch(`${address}/get-on-user-id`, {
method: "PATCH",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ ids: ids })
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}

View File

@ -0,0 +1,14 @@
const address = "http://10.135.51.116/temperature-alarm-webapi/temperature-logs"
function getOnDeviceIds(ids) {
fetch(`${address}/get-on-device-ids`, {
method: "GET",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({ ids: ids })
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}

View File

@ -0,0 +1,40 @@
const address = "http://10.135.51.116/temperature-alarm-webapi/users"
function login(username, password) {
fetch(`${address}/login`, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({username: username, password: password})
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}
function create(email, username, password){
fetch(`${address}/create`, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({email: email, username: username, password: password})
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}
function update(email, username, password){
fetch(`${address}/update`, {
method: "PATCH",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({email: email, username: username, password: password})
})
.then(response => response.json())
.then(data => console.log("Success:", data))
.catch(error => console.error("Error:", error));
}

3
iot/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
a.out
config.h

3
iot/Makefile Normal file
View File

@ -0,0 +1,3 @@
all: main.c
$(CC) -lmosquitto main.c

5
iot/config.example.h Normal file
View File

@ -0,0 +1,5 @@
#define MQTT_IP "127.0.0.1"
#define MQTT_PORT 1883
#define MQTT_USER "user"
#define MQTT_PASSWORD "password"

44
iot/main.c Normal file
View File

@ -0,0 +1,44 @@
#include <mosquitto.h>
#include <stdlib.h>
#include <stdio.h>
#include "config.h"
void on_connect(struct mosquitto *client, void *obj, int rc)
{
if (rc != 0) {
fprintf(stderr, "%s\n", mosquitto_connack_string(rc));
return;
}
puts("Connected to " MQTT_IP);
}
void on_message(struct mosquitto *mosq, void *obj, const struct mosquitto_message *message)
{
printf("Received message on topic %s\n", message->topic);
}
int main(void)
{
int version[3];
mosquitto_lib_init();
mosquitto_lib_version(&version[0], &version[1], &version[2]);
printf("Using mosquitto library version %i.%i.%i\n", version[0], version[1], version[2]);
struct mosquitto *mosq = mosquitto_new(NULL, true, NULL);
mosquitto_connect_callback_set(mosq, on_connect);
mosquitto_message_callback_set(mosq, on_message);
mosquitto_username_pw_set(mosq, MQTT_USER, MQTT_PASSWORD);
mosquitto_connect(mosq, MQTT_IP, MQTT_PORT, 60);
mosquitto_loop_forever(mosq, -1, 1);
mosquitto_destroy(mosq);
mosquitto_lib_cleanup();
return EXIT_SUCCESS;
}