@atelieruldetehnologii/node-red-custome-solutions 0.62.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/NOTICE +56 -0
  2. package/PROPRIETARY-LICENSE.txt +157 -0
  3. package/README.md +105 -0
  4. package/TERMS-AND-CONDITIONS.md +311 -0
  5. package/advantech-read/advantech-read.html +775 -0
  6. package/advantech-read/advantech-read.js +449 -0
  7. package/advantech-write/advantech-write.html +413 -0
  8. package/advantech-write/advantech-write.js +338 -0
  9. package/bess-control/bess-control.html +569 -0
  10. package/bess-control/bess-control.js +541 -0
  11. package/bess-control/lib/allocation.js +149 -0
  12. package/bess-control/lib/batteries.js +86 -0
  13. package/bess-control/lib/helpers.js +157 -0
  14. package/bess-control/lib/messages.js +131 -0
  15. package/bess-control/lib/runtime.js +156 -0
  16. package/carlo-gavazzi/carlo-gavazzi.html +4327 -0
  17. package/carlo-gavazzi/carlo-gavazzi.js +3081 -0
  18. package/control-export/control-export.html +3644 -0
  19. package/control-export/control-export.js +2192 -0
  20. package/control-reactive/control-reactive.html +3136 -0
  21. package/control-reactive/control-reactive.js +2124 -0
  22. package/fronius-emulator/README.md +258 -0
  23. package/fronius-emulator/fronius-emulator.html +170 -0
  24. package/fronius-emulator/fronius-emulator.js +520 -0
  25. package/fronius-emulator/lib/binary-codec.js +65 -0
  26. package/fronius-emulator/lib/fronius-register-map.js +185 -0
  27. package/fronius-emulator/lib/modbus-parser.js +61 -0
  28. package/fronius-emulator/lib/modbus-tcp-server.js +224 -0
  29. package/fronius-emulator/lib/validation.js +206 -0
  30. package/fronius-emulator/lib/virtual-meter.js +132 -0
  31. package/fronius-read/fronius-read.html +3944 -0
  32. package/fronius-read/fronius-read.js +1466 -0
  33. package/fronius-read/lib/inverter-profiles.js +711 -0
  34. package/fronius-read/lib/sunspec-core.js +303 -0
  35. package/fronius-read/lib/sunspec-model-parsers.js +845 -0
  36. package/fronius-write/fronius-write.html +1789 -0
  37. package/fronius-write/fronius-write.js +2531 -0
  38. package/influxdb/influxdb.html +1077 -0
  39. package/influxdb/influxdb.js +1487 -0
  40. package/janitza/janitza.html +2562 -0
  41. package/janitza/janitza.js +1500 -0
  42. package/janitza/lib/janitza-profiles.js +371 -0
  43. package/lib/a3-test-server.js +199 -0
  44. package/lib/adam-6000-profiles.js +173 -0
  45. package/lib/licensing/constants.js +103 -0
  46. package/lib/licensing/device-id.js +251 -0
  47. package/lib/licensing/errors.js +21 -0
  48. package/lib/licensing/license-client.js +377 -0
  49. package/lib/licensing/license-state.js +50 -0
  50. package/lib/licensing/node-guard.js +150 -0
  51. package/lib/licensing/package-integrity.js +167 -0
  52. package/lib/licensing/package-integrity.json +513 -0
  53. package/lib/licensing/public-key.pem +3 -0
  54. package/lib/licensing/public-key.pem.example +2 -0
  55. package/lib/licensing/public-keys.js +18 -0
  56. package/lib/licensing/storage.js +63 -0
  57. package/lib/licensing/token-verifier.js +84 -0
  58. package/lib/numbers.js +26 -0
  59. package/license/atelier-license.html +88 -0
  60. package/license/atelier-license.js +170 -0
  61. package/modbus-tcp-discover/modbus-tcp-discover.html +190 -0
  62. package/modbus-tcp-discover/modbus-tcp-discover.js +706 -0
  63. package/multi-battery/multi-battery.html +649 -0
  64. package/multi-battery/multi-battery.js +668 -0
  65. package/multi-grid/multi-grid.html +745 -0
  66. package/multi-grid/multi-grid.js +1392 -0
  67. package/multi-inverter/lib/engine-core.js +237 -0
  68. package/multi-inverter/multi-inverter.html +2674 -0
  69. package/multi-inverter/multi-inverter.js +1393 -0
  70. package/package.json +109 -0
  71. package/phoenix-contact/lib/eem-ma370-advanced.js +175 -0
  72. package/phoenix-contact/lib/eem-ma370.js +138 -0
  73. package/phoenix-contact/lib/integrations.js +149 -0
  74. package/phoenix-contact/lib/phoenix-contact-profile.js +35030 -0
  75. package/phoenix-contact/phoenix-contact.html +840 -0
  76. package/phoenix-contact/phoenix-contact.js +679 -0
  77. package/pv-generator/pv-generator.html +284 -0
  78. package/pv-generator/pv-generator.js +387 -0
  79. package/pylontech-read/pylontech-read.html +763 -0
  80. package/pylontech-read/pylontech-read.js +518 -0
  81. package/pylontech-write/pylontech-write.html +405 -0
  82. package/pylontech-write/pylontech-write.js +546 -0
  83. package/scada-aggregator/lib/aggregate.js +72 -0
  84. package/scada-aggregator/lib/groups.js +39 -0
  85. package/scada-aggregator/scada-aggregator.html +108 -0
  86. package/scada-aggregator/scada-aggregator.js +117 -0
  87. package/scada-server/lib/aggregator-map.js +58 -0
  88. package/scada-server/lib/encoding.js +235 -0
  89. package/scada-server/lib/modbus-server.js +492 -0
  90. package/scada-server/lib/object-path.js +18 -0
  91. package/scada-server/lib/register-map.js +288 -0
  92. package/scada-server/scada-server.html +1419 -0
  93. package/scada-server/scada-server.js +704 -0
  94. package/scripts/check-syntax.js +66 -0
  95. package/scripts/package-integrity.js +46 -0
  96. package/scripts/package-release.js +116 -0
  97. package/scripts/run-tests.js +2178 -0
  98. package/scripts/tgz-integrity.js +74 -0
  99. package/sma-read/lib/sunspec-core.js +83 -0
  100. package/sma-read/lib/sunspec-model-parsers.js +853 -0
  101. package/sma-read/sma-read.html +659 -0
  102. package/sma-read/sma-read.js +458 -0
  103. package/sma-write/sma-write.html +105 -0
  104. package/sma-write/sma-write.js +270 -0
  105. package/victron-read/lib/mqtt-state.js +176 -0
  106. package/victron-read/victron-read.html +1074 -0
  107. package/victron-read/victron-read.js +1222 -0
package/NOTICE ADDED
@@ -0,0 +1,56 @@
1
+ NOTIFICARE JURIDICĂ — VERSIUNEA ÎN LIMBA ROMÂNĂ
2
+
3
+ Copyright (c) 2026 Atelierul de Tehnologii. Toate drepturile rezervate.
4
+ https://www.atelieruldetehnologii.ro/
5
+
6
+ Fiecare nod Node-RED inclus în acest pachet, inclusiv codul runtime, codul
7
+ editorului, documentația, configurația, algoritmii și materialele aferente, a
8
+ fost dezvoltat de Atelierul de Tehnologii și constituie software proprietar al
9
+ Atelierul de Tehnologii, cu excepția componentelor terțe identificate separat.
10
+
11
+ Nu se acordă permisiunea de a copia, reproduce, modifica, redistribui,
12
+ republica, efectua inginerie inversă, sublicenția ori exploata comercial
13
+ Software-ul, cu excepția copiilor tehnice limitate necesare unei instalări
14
+ autorizate în mod expres potrivit licenței proprietare însoțitoare.
15
+
16
+ Utilizarea este supusă documentelor PROPRIETARY-LICENSE.txt și
17
+ TERMS-AND-CONDITIONS.md. Software-ul poate conține erori sau defecte încă
18
+ nedescoperite, este furnizat fără garanția satisfacerii cerințelor
19
+ utilizatorului, iar utilizarea sa se face pe riscul și răspunderea exclusivă a
20
+ utilizatorului, în limitele permise de lege.
21
+
22
+ Node-RED este marcă a OpenJS Foundation. Fronius, SMA, Victron, Pylontech,
23
+ Carlo Gavazzi, Phoenix Contact, Janitza, Advantech, InfluxDB și toate celelalte
24
+ denumiri și mărci ale terților aparțin titularilor respectivi. Menționarea lor
25
+ are exclusiv scop de interoperabilitate și identificare și nu implică
26
+ afiliere, sponsorizare sau aprobare.
27
+
28
+ ==========================================================================
29
+
30
+ LEGAL NOTICE — ENGLISH VERSION
31
+
32
+ Copyright (c) 2026 Atelierul de Tehnologii. All rights reserved.
33
+ https://www.atelieruldetehnologii.ro/
34
+
35
+ Every Node-RED node contained in this package, including its runtime code,
36
+ editor code, documentation, configuration, algorithms and related materials,
37
+ was developed by Atelierul de Tehnologii and is proprietary software of
38
+ Atelierul de Tehnologii, except for separately identified third-party
39
+ components.
40
+
41
+ No permission is granted to copy, reproduce, modify, redistribute, republish,
42
+ reverse engineer, sublicense or commercially exploit the Software except for
43
+ the limited technical copies required for an installation expressly authorised
44
+ under the accompanying proprietary licence.
45
+
46
+ Use is subject to PROPRIETARY-LICENSE.txt and TERMS-AND-CONDITIONS.md.
47
+ The Software may contain errors or defects that have not yet been discovered,
48
+ is supplied without any warranty that it will satisfy the user's requirements,
49
+ and is used entirely at the user's own risk and responsibility, to the maximum
50
+ extent permitted by law.
51
+
52
+ Node-RED is a trademark of the OpenJS Foundation. Fronius, SMA, Victron,
53
+ Pylontech, Carlo Gavazzi, Phoenix Contact, Janitza, Advantech, InfluxDB and all
54
+ other third-party names and marks are the property of their respective owners.
55
+ Their mention is for interoperability and identification only and does not
56
+ imply affiliation, sponsorship or endorsement.
@@ -0,0 +1,157 @@
1
+ LICENȚĂ PROPRIETARĂ PENTRU SOFTWARE — ATELIERUL DE TEHNOLOGII
2
+ VERSIUNEA ÎN LIMBA ROMÂNĂ
3
+
4
+ Copyright (c) 2026 Atelierul de Tehnologii. Toate drepturile rezervate.
5
+ Website: https://www.atelieruldetehnologii.ro/
6
+
7
+ IMPORTANT — CITIȚI ÎNAINTE DE DESCĂRCAREA, INSTALAREA, ACTIVAREA SAU
8
+ UTILIZAREA SOFTWARE-ULUI.
9
+
10
+ Acest pachet, fiecare nod Node-RED inclus în acesta, codul său sursă, codul
11
+ runtime, codul editorului, documentația, interfețele cu utilizatorul,
12
+ structurile de configurare, algoritmii, fișierele și materialele aferente
13
+ (denumite împreună „Software-ul”) sunt opere proprietare dezvoltate de și
14
+ aparținând Atelierul de Tehnologii („Furnizorul”). Software-ul este licențiat,
15
+ nu vândut.
16
+
17
+ Descărcarea, instalarea, activarea, copierea strict necesară tehnic pentru o
18
+ instalare autorizată sau utilizarea Software-ului constituie acceptarea
19
+ prezentei Licențe și a documentului TERMS-AND-CONDITIONS.md. Dacă nu acceptați
20
+ aceste condiții, nu descărcați, nu instalați, nu activați și nu utilizați
21
+ Software-ul și eliminați toate copiile aflate sub controlul dumneavoastră.
22
+
23
+ Sub condiția achitării tuturor taxelor aplicabile, a deținerii unei chei de
24
+ licență valabile și a respectării continue a acestor condiții, Furnizorul
25
+ acordă licențiatului un drept limitat, revocabil, neexclusiv, netransmisibil și
26
+ nesublicențiabil de a instala și utiliza Software-ul numai pe numărul de
27
+ sisteme autorizat și pentru scopurile interne acoperite de licența comercială.
28
+
29
+ Cu excepția copiilor tranzitorii create automat de npm, Node-RED sau sistemul
30
+ de operare în timpul unei instalări autorizate și a unei singure copii de
31
+ siguranță strict necesare, nicio persoană nu poate copia, reproduce,
32
+ republica, distribui, divulga, vinde, închiria, împrumuta, sublicenția, pune la
33
+ dispoziție, modifica, adapta, traduce, crea opere derivate, efectua inginerie
34
+ inversă, decompila, dezasambla, eluda măsurile tehnice de protecție ori de
35
+ licențiere, elimina notificările sau exploata în alt mod vreo parte a
36
+ Software-ului fără acordul scris prealabil al Furnizorului.
37
+
38
+ SOFTWARE-UL ESTE FURNIZAT „CA ATARE”, „ÎN FORMA DISPONIBILĂ” ȘI CU TOATE
39
+ EVENTUALELE DEFECTE. ÎN MĂSURA MAXIMĂ PERMISĂ DE LEGEA APLICABILĂ, FURNIZORUL
40
+ EXCLUDE TOATE GARANȚIILE EXPRESE, IMPLICITE ȘI LEGALE, INCLUSIV PRIVIND
41
+ EXACTITATEA, CARACTERUL COMPLET, VANDABILITATEA, CALITATEA SATISFĂCĂTOARE,
42
+ ADECVAREA PENTRU UN ANUMIT SCOP, NEÎNCĂLCAREA DREPTURILOR TERȚILOR,
43
+ DISPONIBILITATEA, SECURITATEA, COMPATIBILITATEA, LIPSA ERORILOR ȘI FUNCȚIONAREA
44
+ CONTINUĂ. SOFTWARE-UL POATE CONȚINE DEFECTE CUNOSCUTE SAU NECUNOSCUTE.
45
+ FURNIZORUL NU GARANTEAZĂ CĂ SOFTWARE-UL VA SATISFACE VREO CERINȚĂ A
46
+ UTILIZATORULUI, VA PRODUCE UN ANUMIT REZULTAT ORI VA FUNCȚIONA CU ORICE
47
+ DISPOZITIV, REȚEA, PROCES SAU SISTEM TERȚ.
48
+
49
+ UTILIZAREA SE FACE ÎN ÎNTREGIME PE RISCUL UTILIZATORULUI. UTILIZATORUL ESTE
50
+ UNICUL RESPONSABIL PENTRU VALIDARE, TESTARE, CONFIGURARE, SECURITATE
51
+ CIBERNETICĂ, COPII DE SIGURANȚĂ, MONITORIZARE, REDUNDANȚĂ, MĂSURI FAIL-SAFE,
52
+ CONFORMITATE JURIDICĂ ȘI TEHNICĂ ȘI PENTRU ORICE COMANDĂ, SETPOINT, FLOW,
53
+ IEȘIRE, DECIZIE, ÎNTRERUPERE, PIERDERE SAU CONSECINȚĂ REZULTATĂ DIN UTILIZAREA
54
+ ORI IMPOSIBILITATEA UTILIZĂRII SOFTWARE-ULUI.
55
+
56
+ ÎN MĂSURA MAXIMĂ PERMISĂ DE LEGEA APLICABILĂ, FURNIZORUL NU RĂSPUNDE PENTRU
57
+ NICIO PIERDERE SAU DAUNĂ DIRECTĂ, INDIRECTĂ, INCIDENTALĂ, SPECIALĂ, EXEMPLARĂ,
58
+ PUNITIVĂ ORI CONSECUTIVĂ, INCLUSIV DAUNE MATERIALE, AVARII ALE ECHIPAMENTELOR,
59
+ VĂTĂMĂRI CORPORALE, PIERDERI DE ENERGIE, PRODUCȚIE, VENIT, PROFIT, ACTIVITATE,
60
+ DATE, REPUTAȚIE SAU OPORTUNITĂȚI, ÎNTRERUPEREA ACTIVITĂȚII, COSTUL PRODUSELOR
61
+ ORI SERVICIILOR ÎNLOCUITOARE SAU PRETENȚII ALE TERȚILOR, INDIFERENT DACĂ
62
+ RĂSPUNDEREA ESTE INVOCATĂ ÎN TEMEI CONTRACTUAL, DELICTUAL (INCLUSIV
63
+ NEGLIJENȚĂ), OBIECTIV, LEGAL ORI ÎN ALT TEMEI, CHIAR DACĂ POSIBILITATEA UNEI
64
+ ASEMENEA PIERDERI SAU DAUNE ERA CUNOSCUTĂ ORI PREVIZIBILĂ.
65
+
66
+ Nicio prevedere din prezenta Licență nu exclude și nu limitează răspunderea
67
+ care nu poate fi exclusă ori limitată în mod legal. Atunci când răspunderea nu
68
+ poate fi exclusă integral, răspunderea totală cumulată a Furnizorului este
69
+ limitată, în măsura maximă permisă de lege, la taxele de licență achitate
70
+ efectiv de licențiatul afectat pentru Software în cele douăsprezece luni
71
+ anterioare evenimentului care a generat pretenția.
72
+
73
+ Prevederile contractuale detaliate și determinante se găsesc în
74
+ TERMS-AND-CONDITIONS.md. În caz de neconcordanță, acele condiții prevalează.
75
+ Prezenta Licență și condițiile respective sunt guvernate de legea română, fără
76
+ a aduce atingere drepturilor imperative la care părțile nu pot renunța.
77
+
78
+ Node-RED este marcă a OpenJS Foundation. Denumirile și mărcile produselor
79
+ terților aparțin titularilor respectivi. Menționarea lor are exclusiv scop de
80
+ interoperabilitate și nu implică afiliere, sponsorizare sau aprobare.
81
+
82
+ ==========================================================================
83
+
84
+ ATELIERUL DE TEHNOLOGII PROPRIETARY SOFTWARE LICENSE
85
+ ENGLISH VERSION
86
+
87
+ Copyright (c) 2026 Atelierul de Tehnologii. All rights reserved.
88
+ Website: https://www.atelieruldetehnologii.ro/
89
+
90
+ IMPORTANT — READ BEFORE DOWNLOADING, INSTALLING, ACTIVATING OR USING THE
91
+ SOFTWARE.
92
+
93
+ This package, every Node-RED node contained in it, its source code, runtime
94
+ code, editor code, documentation, user interfaces, configuration structures,
95
+ algorithms, files and related materials (collectively, the "Software") are
96
+ proprietary works developed by and belonging to Atelierul de Tehnologii (the
97
+ "Provider"). The Software is licensed, not sold.
98
+
99
+ Downloading, installing, activating, copying as technically required for an
100
+ authorised installation, or using the Software constitutes acceptance of this
101
+ License and of TERMS-AND-CONDITIONS.md. If you do not accept them, do not
102
+ download, install, activate or use the Software and remove every copy under
103
+ your control.
104
+
105
+ Subject to payment of all applicable fees, possession of a valid licence key
106
+ and continued compliance with these terms, the Provider grants the licensee a
107
+ limited, revocable, non-exclusive, non-transferable and non-sublicensable right
108
+ to install and use the Software solely on the number of authorised systems and
109
+ for the internal purposes covered by the commercial licence.
110
+
111
+ Except for transient copies automatically made by npm, Node-RED or the
112
+ operating system during an authorised installation and one strictly necessary
113
+ backup copy, no person may copy, reproduce, republish, distribute, disclose,
114
+ sell, rent, lend, sublicense, make available, modify, adapt, translate, create
115
+ derivative works from, reverse engineer, decompile, disassemble, circumvent
116
+ technical protection or licensing controls, remove notices from, or otherwise
117
+ exploit any part of the Software without the Provider's prior written consent.
118
+
119
+ THE SOFTWARE IS PROVIDED "AS IS", "AS AVAILABLE" AND WITH ALL FAULTS. TO THE
120
+ MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PROVIDER DISCLAIMS ALL EXPRESS,
121
+ IMPLIED AND STATUTORY WARRANTIES, INCLUDING ACCURACY, COMPLETENESS,
122
+ MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE,
123
+ NON-INFRINGEMENT, AVAILABILITY, SECURITY, COMPATIBILITY, ERROR-FREE OPERATION
124
+ AND CONTINUOUS OPERATION. THE SOFTWARE MAY CONTAIN KNOWN OR UNKNOWN DEFECTS.
125
+ THE PROVIDER DOES NOT WARRANT THAT THE SOFTWARE WILL MEET ANY USER REQUIREMENT,
126
+ PRODUCE ANY PARTICULAR RESULT OR OPERATE WITH ANY DEVICE, NETWORK, PROCESS OR
127
+ THIRD-PARTY SYSTEM.
128
+
129
+ USE IS ENTIRELY AT THE USER'S OWN RISK. THE USER ALONE IS RESPONSIBLE FOR
130
+ VALIDATION, TESTING, CONFIGURATION, CYBERSECURITY, BACKUPS, MONITORING,
131
+ REDUNDANCY, FAIL-SAFE MEASURES, LEGAL AND TECHNICAL COMPLIANCE, AND FOR EVERY
132
+ COMMAND, SETPOINT, FLOW, OUTPUT, DECISION, INTERRUPTION, LOSS OR CONSEQUENCE
133
+ ARISING FROM USE OR INABILITY TO USE THE SOFTWARE.
134
+
135
+ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE PROVIDER SHALL NOT BE
136
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR
137
+ CONSEQUENTIAL LOSS OR DAMAGE, INCLUDING PROPERTY DAMAGE, EQUIPMENT DAMAGE,
138
+ PERSONAL INJURY, LOSS OF ENERGY, PRODUCTION, REVENUE, PROFIT, BUSINESS, DATA,
139
+ GOODWILL OR OPPORTUNITY, BUSINESS INTERRUPTION, COST OF SUBSTITUTE GOODS OR
140
+ SERVICES, OR CLAIMS BY THIRD PARTIES, WHETHER ARISING IN CONTRACT, TORT
141
+ (INCLUDING NEGLIGENCE), STRICT LIABILITY, STATUTE OR OTHERWISE, EVEN IF THE
142
+ POSSIBILITY OF SUCH LOSS OR DAMAGE WAS KNOWN OR FORESEEABLE.
143
+
144
+ Nothing in this License excludes or limits liability that cannot lawfully be
145
+ excluded or limited. Where liability cannot be fully excluded, the Provider's
146
+ aggregate liability shall be limited, to the maximum extent permitted by law,
147
+ to the licence fees actually paid by the affected licensee for the Software
148
+ during the twelve months preceding the event giving rise to the claim.
149
+
150
+ The detailed and controlling contractual provisions are contained in
151
+ TERMS-AND-CONDITIONS.md. In the event of inconsistency, those terms prevail.
152
+ This License and those terms are governed by Romanian law, without prejudice
153
+ to mandatory rights that applicable law does not permit the parties to waive.
154
+
155
+ Node-RED is a trademark of the OpenJS Foundation. Third-party product names
156
+ and trademarks belong to their respective owners. Their mention is solely for
157
+ interoperability and does not imply affiliation, sponsorship or endorsement.
package/README.md ADDED
@@ -0,0 +1,105 @@
1
+ # Atelierul de Tehnologii - NodeRed Custome Solutions
2
+
3
+ Proprietary Node-RED palette developed by **Atelierul de Tehnologii** for energy, Modbus, MQTT, BESS, SCADA and industrial integrations.
4
+
5
+ - Package: `@atelieruldetehnologii/node-red-custome-solutions`
6
+ - Website: [www.atelieruldetehnologii.ro](https://www.atelieruldetehnologii.ro/)
7
+ - License requests: [tehnic@atelieruldetehnologii.ro](mailto:tehnic@atelieruldetehnologii.ro)
8
+
9
+ ## Requirements
10
+
11
+ - Node-RED `>=3.1.0`
12
+ - Node.js `>=18`
13
+ - A valid commercial license issued by Atelierul de Tehnologii
14
+ - HTTPS access to the licensing service for activation and license checks
15
+
16
+ ## Installation
17
+
18
+ Install from **Node-RED → Manage palette → Install** using the complete package name, or run:
19
+
20
+ ```bash
21
+ cd ~/.node-red
22
+ npm install @atelieruldetehnologii/node-red-custome-solutions
23
+ ```
24
+
25
+ Restart Node-RED after installation.
26
+
27
+ ## License activation
28
+
29
+ 1. Add a commercial node to a flow.
30
+ 2. Create or select an **Atelierul de Tehnologii License** configuration.
31
+ 3. Enter the license key supplied by Atelierul de Tehnologii.
32
+ 4. Deploy the flow. Activation is automatic after Deploy.
33
+
34
+ The license configuration is shared by the commercial nodes that use it. To request a license, visit [www.atelieruldetehnologii.ro](https://www.atelieruldetehnologii.ro/) or email [tehnic@atelieruldetehnologii.ro](mailto:tehnic@atelieruldetehnologii.ro).
35
+
36
+ ## Included nodes
37
+
38
+ - Fronius and SMA read/write
39
+ - Modbus TCP discovery and Fronius Smart Meter emulator
40
+ - Export, reactive-power, inverter, grid, battery and BESS control
41
+ - Pylontech read/write
42
+ - Carlo Gavazzi, Phoenix Contact, Janitza and Advantech integrations
43
+ - Victron MQTT integration
44
+ - SCADA server and aggregator
45
+ - PV generator and InfluxDB integration
46
+
47
+ ## Safety and legal notice
48
+
49
+ This software is proprietary and licensed, not sold. It is provided **as is** and may contain undiscovered errors. Test every configuration in an isolated environment before connecting it to real equipment. Do not use these nodes as the sole safety or protection mechanism in an energy or industrial installation. The user is responsible for configuration, validation, safeguards and the effects of commands issued through the nodes.
50
+
51
+ Installation or use is subject to [PROPRIETARY-LICENSE.txt](PROPRIETARY-LICENSE.txt) and [TERMS-AND-CONDITIONS.md](TERMS-AND-CONDITIONS.md). Limitations and exclusions apply only to the maximum extent permitted by applicable law.
52
+
53
+ ---
54
+
55
+ ## Versiunea în limba română
56
+
57
+ Paletă Node-RED proprietară dezvoltată de **Atelierul de Tehnologii** pentru integrare energetică, Modbus, MQTT, BESS, SCADA și aplicații industriale.
58
+
59
+ - Pachet: `@atelieruldetehnologii/node-red-custome-solutions`
60
+ - Website: [www.atelieruldetehnologii.ro](https://www.atelieruldetehnologii.ro/)
61
+ - Solicitări licență: [tehnic@atelieruldetehnologii.ro](mailto:tehnic@atelieruldetehnologii.ro)
62
+
63
+ ## Cerințe
64
+
65
+ - Node-RED `>=3.1.0`
66
+ - Node.js `>=18`
67
+ - O licență comercială valabilă emisă de Atelierul de Tehnologii
68
+ - Acces HTTPS la serviciul de licențiere pentru activare și verificările licenței
69
+
70
+ ## Instalare
71
+
72
+ Instalați din **Node-RED → Manage palette → Install** folosind numele complet al pachetului sau rulați:
73
+
74
+ ```bash
75
+ cd ~/.node-red
76
+ npm install @atelieruldetehnologii/node-red-custome-solutions
77
+ ```
78
+
79
+ Reporniți Node-RED după instalare.
80
+
81
+ ## Activarea licenței
82
+
83
+ 1. Adăugați un nod comercial într-un flow.
84
+ 2. Creați sau selectați o configurare **Atelierul de Tehnologii License**.
85
+ 3. Introduceți cheia furnizată de Atelierul de Tehnologii.
86
+ 4. Apăsați Deploy. Activarea se realizează automat după Deploy.
87
+
88
+ Configurarea licenței este comună nodurilor comerciale care o utilizează. Pentru obținerea unei licențe, consultați [www.atelieruldetehnologii.ro](https://www.atelieruldetehnologii.ro/) sau trimiteți o solicitare la [tehnic@atelieruldetehnologii.ro](mailto:tehnic@atelieruldetehnologii.ro).
89
+
90
+ ## Noduri incluse
91
+
92
+ - Citire/scriere Fronius și SMA
93
+ - Descoperire Modbus TCP și emulator Fronius Smart Meter
94
+ - Control export, putere reactivă, invertoare, rețea, baterii și BESS
95
+ - Citire/scriere Pylontech
96
+ - Integrări Carlo Gavazzi, Phoenix Contact, Janitza și Advantech
97
+ - Integrare MQTT Victron
98
+ - Server și agregator SCADA
99
+ - Generator PV și integrare InfluxDB
100
+
101
+ ## Siguranță și informații juridice
102
+
103
+ Software-ul este proprietar și este licențiat, nu vândut. Este furnizat **ca atare** și poate conține erori încă nedescoperite. Testați orice configurare într-un mediu izolat înainte de conectarea la echipamente reale. Nu utilizați aceste noduri ca unică măsură de siguranță sau protecție într-o instalație energetică ori industrială. Utilizatorul este responsabil pentru configurare, validare, măsurile de protecție și efectele comenzilor transmise prin noduri.
104
+
105
+ Instalarea sau utilizarea este supusă documentelor [PROPRIETARY-LICENSE.txt](PROPRIETARY-LICENSE.txt) și [TERMS-AND-CONDITIONS.md](TERMS-AND-CONDITIONS.md). Limitările și excluderile se aplică numai în măsura maximă permisă de legea aplicabilă.
@@ -0,0 +1,311 @@
1
+ # Termeni și condiții de licențiere și utilizare
2
+
3
+ **VERSIUNEA ÎN LIMBA ROMÂNĂ**
4
+
5
+ **Versiune: 14 august 2026**
6
+ **Furnizor și titular al drepturilor:** Atelierul de Tehnologii
7
+ **Website oficial:** [www.atelieruldetehnologii.ro](https://www.atelieruldetehnologii.ro/)
8
+
9
+ ## 1. Acceptarea termenilor
10
+
11
+ Prezentul document constituie condițiile contractuale aplicabile descărcării, instalării, activării, accesării și utilizării pachetului software și a tuturor nodurilor Node-RED incluse în acesta. Prin efectuarea oricăreia dintre aceste operațiuni, utilizatorul confirmă că a citit, a înțeles și acceptă integral acești termeni. Dacă nu îi acceptă, utilizatorul nu are dreptul să instaleze ori să utilizeze software-ul și trebuie să elimine toate copiile aflate sub controlul său.
12
+
13
+ Persoana care acceptă termenii în numele unei societăți, instituții sau altei entități declară că are puterea legală de a angaja respectiva entitate.
14
+
15
+ ## 2. Identitatea dezvoltatorului și proprietatea intelectuală
16
+
17
+ Toate nodurile enumerate în Anexa A, precum și codul runtime, codul editorului, interfețele, structurile de configurare, algoritmii, documentația și materialele aferente au fost dezvoltate de **Atelierul de Tehnologii** și reprezintă opere software proprietare ale Atelierul de Tehnologii, cu excepția componentelor terțe identificate separat.
18
+
19
+ Toate drepturile de autor, drepturile asupra programelor pentru calculator, secretelor comerciale, know-how-ului, bazelor de date, mărcilor, denumirilor și oricăror alte drepturi de proprietate intelectuală sunt și rămân ale Furnizorului ori ale licențiatorilor săi. Punerea la dispoziție a codului prin npm sau prin biblioteca publică Node-RED nu transferă proprietatea și nu transformă software-ul în software liber sau open-source.
20
+
21
+ ## 3. Licență limitată
22
+
23
+ Sub condiția existenței unei chei de licență valabile, a achitării sumelor aplicabile și a respectării permanente a prezentului document, Furnizorul acordă utilizatorului un drept limitat, revocabil, neexclusiv, netransmisibil și nesublicențiabil de instalare și utilizare internă a software-ului exclusiv pe numărul de sisteme autorizat și numai pentru scopul acoperit de licența comercială.
24
+
25
+ Software-ul este licențiat, nu vândut. Niciun drept nu este acordat implicit.
26
+
27
+ ## 4. Interdicția copierii și a exploatării neautorizate
28
+
29
+ Cu excepția copiilor tranzitorii create automat de npm, Node-RED sau sistemul de operare în cursul unei instalări autorizate și a unei singure copii de siguranță strict necesare, utilizatorului îi este interzis, fără acordul scris prealabil al Furnizorului:
30
+
31
+ - să copieze, reproducă, publice, republice, distribuie, transmită, divulge, vândă, închirieze, împrumute, cesioneze, sublicențieze sau pună software-ul la dispoziția unui terț;
32
+ - să modifice, adapteze, traducă, combine, transforme sau creeze opere derivate;
33
+ - să efectueze inginerie inversă, decompilare, dezasamblare ori să încerce să determine codul, structura sau algoritmii, cu excepția situațiilor în care o asemenea limitare este interzisă expres de lege;
34
+ - să elimine ori altereze mențiunile de autor, drepturile de proprietate, avertismentele, mecanismele de licențiere, semnăturile sau măsurile de integritate;
35
+ - să evite, dezactiveze, compromită ori eludeze activarea, controlul licenței, limitarea dispozitivelor sau alte măsuri tehnice de protecție;
36
+ - să folosească software-ul pentru a dezvolta, antrena, reproduce sau oferi un produs concurent ori o funcționalitate substanțial similară.
37
+
38
+ ## 5. Responsabilitatea exclusivă a utilizatorului
39
+
40
+ Utilizatorul decide în mod independent dacă software-ul este adecvat scopului său și își asumă integral toate riscurile asociate instalării, configurării, integrării și utilizării. Utilizatorul este singurul responsabil pentru:
41
+
42
+ - verificarea documentației tehnice a echipamentelor și a sensului fiecărei valori, comenzi și adrese de registru;
43
+ - testarea prealabilă într-un mediu izolat și validarea pe echipamentul real înaintea exploatării;
44
+ - proiectarea și menținerea protecțiilor hardware, limitatoarelor independente, interblocărilor, opririlor de urgență, redundanței, monitorizării și mecanismelor fail-safe;
45
+ - securitatea cibernetică, parole, segmentarea rețelei, accesul la porturi, actualizări, copii de siguranță și recuperarea datelor;
46
+ - configurarea flow-urilor, alegerea setpoint-urilor, comenzilor și limitelor, precum și pentru toate acțiunile executate automat;
47
+ - respectarea legii, autorizațiilor, normelor tehnice, de securitate, sănătate, protecție a mediului, energiei și cerințelor producătorilor echipamentelor;
48
+ - consecințele conectării la dispozitive, servicii, rețele ori software terț și pentru exactitatea datelor furnizate acestora.
49
+
50
+ Fiecare utilizator este direct și exclusiv răspunzător pentru ceea ce configurează, comandă, automatizează sau realizează prin intermediul software-ului.
51
+
52
+ ## 6. Utilizări critice și sisteme de siguranță
53
+
54
+ Software-ul nu este proiectat, certificat ori garantat ca sistem de siguranță, protecție, oprire de urgență sau control cu integritate de siguranță și nu trebuie utilizat ca unică măsură de protecție în instalații în care o eroare, întârziere, valoare incorectă ori pierdere de comunicație poate produce deces, vătămare corporală, incendiu, explozie, afectarea rețelei electrice, avarierea bateriilor sau echipamentelor, poluare, pierderi de date ori alte pagube.
55
+
56
+ Orice utilizare în sisteme energetice, industriale, BESS, fotovoltaice, SCADA sau de comandă se face numai cu evaluare de risc independentă și cu protecții hardware și procedurale adecvate.
57
+
58
+ ## 7. Furnizare „ca atare”; lipsa garanțiilor
59
+
60
+ Software-ul este furnizat **„ca atare”, „în forma disponibilă” și cu toate eventualele defecte**. În măsura maximă permisă de lege, Furnizorul exclude orice garanție expresă, implicită sau legală, inclusiv privind exactitatea, caracterul complet, calitatea satisfăcătoare, vandabilitatea, adecvarea pentru un anumit scop, compatibilitatea, securitatea, disponibilitatea, neîncălcarea drepturilor terților, funcționarea continuă ori lipsa erorilor.
61
+
62
+ Software-ul poate conține erori, vulnerabilități, defecte de proiectare sau implementare și comportamente care nu au fost încă identificate. Furnizorul nu garantează că software-ul:
63
+
64
+ - va satisface cerințele, așteptările sau scopul utilizatorului;
65
+ - va produce un anumit rezultat ori o anumită economie;
66
+ - va funcționa fără întrerupere, întârziere, pierdere de date sau eroare;
67
+ - va fi compatibil cu orice versiune de firmware, echipament, protocol, rețea ori sistem terț;
68
+ - va detecta ori preveni orice condiție periculoasă, comandă incorectă sau defect al echipamentului.
69
+
70
+ Orice exemple, valori implicite, preseturi, hărți de registre, estimări și rezultate trebuie verificate independent de utilizator și nu reprezintă consultanță tehnică, juridică ori de securitate.
71
+
72
+ ## 8. Excluderea și limitarea răspunderii
73
+
74
+ În măsura maximă permisă de lege, Furnizorul, persoanele sale afiliate, administratorii, salariații, colaboratorii și furnizorii săi nu răspund pentru nicio pierdere sau daună directă, indirectă, incidentală, specială, punitivă, exemplară ori consecutivă, indiferent dacă era previzibilă și indiferent de temeiul juridic invocat, inclusiv pentru:
75
+
76
+ - vătămări corporale, daune materiale, avarierea ori distrugerea echipamentelor, bateriilor sau instalațiilor;
77
+ - incendiu, explozie, supratensiune, injecție sau consum necontrolat, oprirea producției ori afectarea calității energiei;
78
+ - pierderi de energie, producție, venit, profit, contracte, oportunități, reputație, date ori economii estimate;
79
+ - întreruperea activității, indisponibilitate, costuri de diagnosticare, reparație, înlocuire, intervenție sau achiziție a unor produse ori servicii substitutive;
80
+ - comenzi, setpoint-uri, calcule, măsurători, alarme, rapoarte sau decizii incorecte;
81
+ - erori ale utilizatorului, flow-urilor, echipamentelor, firmware-ului, rețelei, serviciilor ori software-ului terț;
82
+ - orice pretenție formulată de un client, partener, autoritate sau alt terț împotriva utilizatorului.
83
+
84
+ Prezentele excluderi se aplică inclusiv dacă Furnizorul a fost informat despre posibilitatea producerii prejudiciului ori dacă o măsură reparatorie nu își atinge scopul esențial.
85
+
86
+ Nicio prevedere nu exclude răspunderea care, potrivit legii aplicabile, nu poate fi exclusă sau limitată. Dacă răspunderea nu poate fi exclusă integral, răspunderea totală cumulată a Furnizorului, pentru toate pretențiile legate de software, este limitată, în măsura maximă permisă de lege, la valoarea netă a taxelor de licență achitate efectiv de utilizator pentru software în cele 12 luni anterioare evenimentului care a generat pretenția. Pentru utilizarea gratuită, limita este zero, în măsura permisă de lege.
87
+
88
+ ## 9. Despăgubirea Furnizorului
89
+
90
+ În măsura permisă de lege, utilizatorul va apăra, despăgubi și exonera Furnizorul față de pretențiile, pierderile, sancțiunile, costurile și cheltuielile rezonabile, inclusiv onorariile juridice, rezultate din utilizarea neconformă, ilegală ori neautorizată a software-ului, încălcarea acestor termeni, flow-urile ori comenzile create de utilizator sau încălcarea drepturilor unui terț.
91
+
92
+ ## 10. Actualizări, mentenanță și suport
93
+
94
+ Furnizorul nu are obligația de a furniza actualizări, corecții, funcții noi, mentenanță, suport, instruire ori compatibilitate viitoare, dacă acestea nu sunt asumate printr-un contract scris separat. O actualizare poate modifica, elimina sau întrerupe funcționalități. Utilizatorul este responsabil să testeze fiecare actualizare înainte de folosirea în producție.
95
+
96
+ ## 11. Servicii și componente terțe
97
+
98
+ Software-ul poate comunica cu echipamente, protocoale, biblioteci și servicii terțe. Furnizorul nu controlează și nu garantează disponibilitatea, securitatea, exactitatea, compatibilitatea ori conduita acestora. Mărcile și denumirile terților sunt folosite exclusiv pentru identificare și interoperabilitate; nu există afiliere, sponsorizare sau aprobare implicită.
99
+
100
+ Node-RED este marcă a OpenJS Foundation. Atelierul de Tehnologii nu este afiliat și nu este susținut de OpenJS Foundation, cu excepția cazului în care se declară expres contrariul.
101
+
102
+ ## 12. Suspendare și încetare
103
+
104
+ Dreptul de utilizare încetează automat la expirarea, suspendarea sau revocarea licenței ori la încălcarea acestor termeni. Furnizorul poate utiliza mecanisme tehnice rezonabile pentru activare, verificarea integrității, limitarea dispozitivelor și prevenirea folosirii neautorizate. La încetare, utilizatorul trebuie să oprească utilizarea și să elimine copiile, cu excepția celor a căror păstrare este impusă de lege.
105
+
106
+ Prevederile privind proprietatea intelectuală, restricțiile, lipsa garanțiilor, răspunderea, despăgubirea, legea aplicabilă și interpretarea supraviețuiesc încetării.
107
+
108
+ ## 13. Legea aplicabilă și jurisdicția
109
+
110
+ Acești termeni sunt guvernați de legea română, fără aplicarea regulilor privind conflictul de legi. În măsura permisă de normele imperative, litigiile vor fi soluționate exclusiv de instanțele competente de la sediul Furnizorului.
111
+
112
+ Nicio prevedere nu afectează drepturile imperative ale consumatorilor ori alte drepturi care nu pot fi înlăturate prin convenție. Dacă o prevedere este nulă sau inaplicabilă, aceasta va fi limitată numai cât este necesar, iar restul documentului rămâne în vigoare.
113
+
114
+ ## 14. Integralitatea acordului și modificări
115
+
116
+ Prezentul document, fișierul `PROPRIETARY-LICENSE.txt`, condițiile comerciale și orice contract scris semnat de Furnizor reprezintă acordul aplicabil software-ului. În caz de conflict, contractul individual semnat prevalează, urmat de prezentul document și apoi de fișierul `PROPRIETARY-LICENSE.txt`.
117
+
118
+ Furnizorul poate actualiza termenii pentru versiuni viitoare. Continuarea utilizării unei versiuni distribuite cu termeni actualizați constituie acceptarea acestora.
119
+
120
+ ## Anexa A — Noduri dezvoltate de Atelierul de Tehnologii
121
+
122
+ Fiecare dintre următoarele noduri este dezvoltat și distribuit de Atelierul de Tehnologii și este supus integral prezentelor condiții:
123
+
124
+ - `atelier-license`
125
+ - `advantech-read`
126
+ - `advantech-write`
127
+ - `bess-control`
128
+ - `carlo-gavazzi`
129
+ - `control-export`
130
+ - `control-reactive`
131
+ - `fronius-emulator`
132
+ - `fronius-read`
133
+ - `fronius-write`
134
+ - `adt-influxdb`
135
+ - `janitza`
136
+ - `modbus-tcp-discover`
137
+ - `multi-battery`
138
+ - `multi-grid`
139
+ - `multi-inverter`
140
+ - `phoenix-contact`
141
+ - `pv-generator`
142
+ - `pylontech-read`
143
+ - `pylontech-write`
144
+ - `scada-aggregator`
145
+ - `scada-server`
146
+ - `sma-read`
147
+ - `sma-write`
148
+ - `victron-read`
149
+
150
+ Lista include nodurile de configurare și toate componentele lor auxiliare. Orice nod viitor distribuit în același pachet sau sub aceeași denumire comercială este inclus, dacă nu este însoțit de condiții distincte.
151
+
152
+ ---
153
+
154
+ **Notă importantă:** acest document urmărește o protecție contractuală extinsă, în limitele permise de lege. Validarea sa de către un avocat din jurisdicția Furnizorului, folosind denumirea juridică completă, forma societară, sediul, codul fiscal și condițiile comerciale reale, este recomandată înainte de publicare.
155
+
156
+ ---
157
+
158
+ # Licensing and Terms of Use
159
+
160
+ **ENGLISH VERSION**
161
+
162
+ **Version: 14 August 2026**
163
+ **Provider and rights holder:** Atelierul de Tehnologii
164
+ **Official website:** [www.atelieruldetehnologii.ro](https://www.atelieruldetehnologii.ro/)
165
+
166
+ ## 1. Acceptance of the terms
167
+
168
+ This document sets out the contractual terms applicable to downloading, installing, activating, accessing and using the software package and every Node-RED node included in it. By performing any such action, the user confirms that they have read, understood and accepted these terms in full. A user who does not accept them is not authorised to install or use the Software and must remove every copy under their control.
169
+
170
+ A person accepting these terms on behalf of a company, institution or other entity represents that they have legal authority to bind that entity.
171
+
172
+ ## 2. Developer identity and intellectual property
173
+
174
+ Every node listed in Appendix A, together with its runtime code, editor code, interfaces, configuration structures, algorithms, documentation and related materials, was developed by **Atelierul de Tehnologii** and constitutes proprietary software owned by Atelierul de Tehnologii, except for third-party components separately identified.
175
+
176
+ All copyrights, computer-program rights, trade secrets, know-how, database rights, trademarks, names and any other intellectual-property rights are and remain vested in the Provider or its licensors. Making the code available through npm or the public Node-RED library does not transfer ownership and does not convert the Software into free or open-source software.
177
+
178
+ ## 3. Limited licence
179
+
180
+ Subject to possession of a valid licence key, payment of all applicable fees and continued compliance with this document, the Provider grants the user a limited, revocable, non-exclusive, non-transferable and non-sublicensable right to install and internally use the Software only on the authorised number of systems and solely for the purpose covered by the commercial licence.
181
+
182
+ The Software is licensed, not sold. No rights are granted by implication.
183
+
184
+ ## 4. Prohibition on copying and unauthorised exploitation
185
+
186
+ Except for transient copies automatically created by npm, Node-RED or the operating system during an authorised installation and one strictly necessary backup copy, the user may not, without the Provider's prior written consent:
187
+
188
+ - copy, reproduce, publish, republish, distribute, transmit, disclose, sell, rent, lend, assign, sublicense or make the Software available to any third party;
189
+ - modify, adapt, translate, combine, transform or create derivative works;
190
+ - reverse engineer, decompile, disassemble or attempt to discover the code, structure or algorithms, except where such a restriction is expressly prohibited by law;
191
+ - remove or alter authorship or proprietary notices, warnings, licensing mechanisms, signatures or integrity safeguards;
192
+ - avoid, disable, compromise or circumvent activation, licence control, device limits or any other technical protection measure;
193
+ - use the Software to develop, train, reproduce or provide a competing product or substantially similar functionality.
194
+
195
+ ## 5. User's sole responsibility
196
+
197
+ The user independently determines whether the Software is suitable for their purpose and assumes all risks associated with its installation, configuration, integration and use. The user is solely responsible for:
198
+
199
+ - checking the equipment manufacturer's technical documentation and the meaning of every value, command and register address;
200
+ - prior testing in an isolated environment and validation on the actual equipment before operational use;
201
+ - designing and maintaining hardware protections, independent limiters, interlocks, emergency shutdowns, redundancy, monitoring and fail-safe mechanisms;
202
+ - cybersecurity, passwords, network segmentation, port access, updates, backups and data recovery;
203
+ - configuring flows, selecting setpoints, commands and limits, and every action performed automatically;
204
+ - compliance with laws, permits, technical and safety standards, health and environmental rules, energy requirements and equipment-manufacturer requirements;
205
+ - the consequences of connecting to third-party devices, services, networks or software and the accuracy of data supplied to them.
206
+
207
+ Each user is directly and exclusively responsible for everything that they configure, command, automate or perform through the Software.
208
+
209
+ ## 6. Critical uses and safety systems
210
+
211
+ The Software is not designed, certified or warranted as a safety, protection, emergency-shutdown or safety-integrity control system and must not be used as the sole protective measure in any installation where an error, delay, incorrect value or loss of communication could cause death, personal injury, fire, explosion, electrical-grid disturbance, damage to batteries or equipment, pollution, data loss or other damage.
212
+
213
+ Any use in energy, industrial, BESS, photovoltaic, SCADA or control systems requires an independent risk assessment and appropriate hardware and procedural safeguards.
214
+
215
+ ## 7. Supplied “as is”; disclaimer of warranties
216
+
217
+ The Software is supplied **“as is”, “as available” and with all faults**. To the maximum extent permitted by law, the Provider disclaims all express, implied and statutory warranties, including accuracy, completeness, satisfactory quality, merchantability, fitness for a particular purpose, compatibility, security, availability, non-infringement, continuous operation and error-free operation.
218
+
219
+ The Software may contain errors, vulnerabilities, design or implementation defects, or behaviour that has not yet been identified. The Provider does not warrant that the Software:
220
+
221
+ - will satisfy the user's requirements, expectations or intended purpose;
222
+ - will produce any particular outcome or saving;
223
+ - will operate without interruption, delay, data loss or error;
224
+ - will be compatible with every firmware version, device, protocol, network or third-party system;
225
+ - will detect or prevent every hazardous condition, incorrect command or equipment fault.
226
+
227
+ Every example, default value, preset, register map, estimate and output must be independently verified by the user and does not constitute technical, legal or safety advice.
228
+
229
+ ## 8. Exclusion and limitation of liability
230
+
231
+ To the maximum extent permitted by law, the Provider, its affiliates, directors, employees, contractors and suppliers shall not be liable for any direct, indirect, incidental, special, punitive, exemplary or consequential loss or damage, whether foreseeable or not and regardless of the legal basis asserted, including:
232
+
233
+ - personal injury, property damage, or damage to or destruction of equipment, batteries or installations;
234
+ - fire, explosion, overvoltage, uncontrolled injection or consumption, production shutdown or degradation of power quality;
235
+ - loss of energy, production, revenue, profit, contracts, opportunity, reputation, data or anticipated savings;
236
+ - business interruption, unavailability, diagnostic, repair, replacement or intervention costs, or the cost of substitute products or services;
237
+ - incorrect commands, setpoints, calculations, measurements, alarms, reports or decisions;
238
+ - errors originating in the user, flows, equipment, firmware, network, services or third-party software;
239
+ - any claim made against the user by a customer, partner, authority or other third party.
240
+
241
+ These exclusions apply even if the Provider was informed of the possibility of such loss or damage or if a remedy fails of its essential purpose.
242
+
243
+ Nothing in these terms excludes liability that applicable law does not allow to be excluded or limited. Where liability cannot be fully excluded, the Provider's total aggregate liability for all claims relating to the Software is limited, to the maximum extent permitted by law, to the net licence fees actually paid by the user for the Software during the twelve months preceding the event giving rise to the claim. For free use, the limit is zero to the extent permitted by law.
244
+
245
+ ## 9. Indemnification of the Provider
246
+
247
+ To the extent permitted by law, the user shall defend, indemnify and hold the Provider harmless from claims, losses, penalties, costs and reasonable expenses, including legal fees, arising from unlawful, non-compliant or unauthorised use of the Software, breach of these terms, flows or commands created by the user, or infringement of a third party's rights.
248
+
249
+ ## 10. Updates, maintenance and support
250
+
251
+ The Provider has no obligation to provide updates, corrections, new features, maintenance, support, training or future compatibility unless expressly agreed in a separate written contract. An update may change, remove or discontinue functionality. The user is responsible for testing every update before production use.
252
+
253
+ ## 11. Third-party services and components
254
+
255
+ The Software may communicate with third-party equipment, protocols, libraries and services. The Provider does not control and does not warrant their availability, security, accuracy, compatibility or conduct. Third-party names and trademarks are used solely for identification and interoperability and do not imply affiliation, sponsorship or endorsement.
256
+
257
+ Node-RED is a trademark of the OpenJS Foundation. Atelierul de Tehnologii is not affiliated with or endorsed by the OpenJS Foundation unless expressly stated otherwise.
258
+
259
+ ## 12. Suspension and termination
260
+
261
+ The right of use terminates automatically when the licence expires, is suspended or revoked, or when these terms are breached. The Provider may use reasonable technical mechanisms for activation, integrity verification, device limitation and prevention of unauthorised use. Upon termination, the user must cease use and remove all copies, except for copies whose retention is required by law.
262
+
263
+ The provisions concerning intellectual property, restrictions, disclaimers, liability, indemnification, governing law and interpretation survive termination.
264
+
265
+ ## 13. Governing law and jurisdiction
266
+
267
+ These terms are governed by Romanian law, excluding its conflict-of-law rules. To the extent permitted by mandatory law, disputes shall be subject exclusively to the competent courts at the Provider's registered office.
268
+
269
+ Nothing in these terms affects mandatory consumer rights or any other rights that cannot be waived by agreement. If a provision is invalid or unenforceable, it shall be limited only to the extent necessary and the remainder of the document shall remain in effect.
270
+
271
+ ## 14. Entire agreement and amendments
272
+
273
+ This document, `PROPRIETARY-LICENSE.txt`, the commercial terms and any written agreement signed by the Provider constitute the agreement applicable to the Software. In the event of conflict, an individually signed agreement prevails, followed by this document and then `PROPRIETARY-LICENSE.txt`.
274
+
275
+ The Provider may update these terms for future versions. Continued use of a version distributed with updated terms constitutes acceptance of those terms.
276
+
277
+ ## Appendix A — Nodes developed by Atelierul de Tehnologii
278
+
279
+ Each of the following nodes is developed and distributed by Atelierul de Tehnologii and is fully subject to these terms:
280
+
281
+ - `atelier-license`
282
+ - `advantech-read`
283
+ - `advantech-write`
284
+ - `bess-control`
285
+ - `carlo-gavazzi`
286
+ - `control-export`
287
+ - `control-reactive`
288
+ - `fronius-emulator`
289
+ - `fronius-read`
290
+ - `fronius-write`
291
+ - `adt-influxdb`
292
+ - `janitza`
293
+ - `modbus-tcp-discover`
294
+ - `multi-battery`
295
+ - `multi-grid`
296
+ - `multi-inverter`
297
+ - `phoenix-contact`
298
+ - `pv-generator`
299
+ - `pylontech-read`
300
+ - `pylontech-write`
301
+ - `scada-aggregator`
302
+ - `scada-server`
303
+ - `sma-read`
304
+ - `sma-write`
305
+ - `victron-read`
306
+
307
+ The list includes configuration nodes and all supporting components. Any future node distributed in the same package or under the same commercial name is included unless accompanied by separate terms.
308
+
309
+ ---
310
+
311
+ **Important note:** this document seeks broad contractual protection within the limits permitted by law. Before publication, review by a lawyer in the Provider's jurisdiction using the complete legal name, legal form, registered office, tax details and actual commercial terms is recommended.