Compare commits

...

5 Commits

Author SHA1 Message Date
681856104d Merge pull request 'changed colours, description based on s88' (#2) from dev-Rene into main
Reviewed-on: #2
2025-10-16 13:22:56 +00:00
znetsixe
e0526250c2 changed colours, description based on s88 2025-10-14 13:52:18 +02:00
c0e4539b50 Merge pull request 'dev-Rene' (#1) from dev-Rene into main
Reviewed-on: #1
2025-10-06 14:15:42 +00:00
znetsixe
426d45890f ok 2025-10-05 07:56:35 +02:00
znetsixe
8c59a921d5 syncing 2025-10-05 07:55:23 +02:00
2 changed files with 10 additions and 27 deletions

View File

@@ -1,15 +1,12 @@
<!-- <!--
brabantse delta kleuren: | S88-niveau | Primair (blokkleur) | Tekstkleur |
#eaf4f1 | ---------------------- | ------------------- | ---------- |
#86bbdd | **Area** | `#0f52a5` | wit |
#bad33b | **Process Cell** | `#0c99d9` | wit |
#0c99d9 | **Unit** | `#50a8d9` | zwart |
#a9daee | **Equipment (Module)** | `#86bbdd` | zwart |
#0f52a5 | **Control Module** | `#a9daee` | zwart |
#50a8d9
#cade63
#4f8582
#c4cce0
--> -->
<script src="/machineGroupControl/menu.js"></script> <!-- Load the menu script for dynamic dropdowns --> <script src="/machineGroupControl/menu.js"></script> <!-- Load the menu script for dynamic dropdowns -->
<script src="/machineGroupControl/configData.js"></script> <!-- Load the config script for node information --> <script src="/machineGroupControl/configData.js"></script> <!-- Load the config script for node information -->
@@ -17,7 +14,7 @@
<script> <script>
RED.nodes.registerType('machineGroupControl',{ RED.nodes.registerType('machineGroupControl',{
category: "EVOLV", category: "EVOLV",
color: "#eaf4f1", color: "#50a8d9",
defaults: { defaults: {
// Define default properties // Define default properties
name: { value: "" }, name: { value: "" },
@@ -39,7 +36,7 @@
outputs:3, outputs:3,
inputLabels: ["Input"], inputLabels: ["Input"],
outputLabels: ["process", "dbase", "parent"], outputLabels: ["process", "dbase", "parent"],
icon: "font-awesome/fa-tachometer", icon: "font-awesome/fa-cogs",
label: function () { label: function () {
return this.positionIcon + " " + "machineGroup"; return this.positionIcon + " " + "machineGroup";

View File

@@ -1,17 +1,3 @@
/**
* @summary A class to interact and manipulate machines with a non-euclidian curve
* @description A class to interact and manipulate machines with a non-euclidian curve
* @module machineGroup
* @exports machineGroup
* @version 0.1.0
* @since 0.1.0
*
* Author:
* - Rene De Ren
* Email:
* - r.de.ren@brabantsedelta.nl
*/
//load local dependencies //load local dependencies
const EventEmitter = require("events"); const EventEmitter = require("events");
const {logger,configUtils,configManager, MeasurementContainer, interpolation , childRegistrationUtils} = require('generalFunctions'); const {logger,configUtils,configManager, MeasurementContainer, interpolation , childRegistrationUtils} = require('generalFunctions');