DTXr features » History » Revision 16
Revision 15 (Torbjorn Carlqvist Admin, 01/11/2022 12:26 PM) → Revision 16/21 (David Fredriksson, 03/28/2022 07:14 AM)
h1. DTXr features h3. BACNet/IP Stack DTXr hosts a full BACnet/IP stack. * Rev. 19 Ver. 1 * BTL tested h3. IDE The DTXr Integrated Development Environment This is the documentation of the DTXr Integrated Development Environment (IDE) The IDE can be hosted on a BACnet device or on any other device that can run the application such as a PC or other device able to host a Virtual Java Machine. There are several reasons to hosting the IDE on a BACnet device rather than on a computer. Most importantly is the ability to cope with the future. Several years from now when a change is needed, the user will most likely have a different computer, a different operating system and will probably not keep track of old interface cables. Furthermore the syntax used to create the logic of the device is JavaScript. The reasons for this are many, but most important is the fact that JavaScript does not need to compile and downloaded to a device but is real time interpreted. Hence the code will be active as soon as it is saved, saving compilation and upload time. _TBD..._ h3. Graph Editor _TBD..._ h3. Map Editor _TBD..._ h3. Blockly !Blockly.png! h3. REST-API Every running DTXr instance has it's own REST API that can be used to access and modify various aspects of the node. A swagger index pages is offered as: http://[IP]:[PORT]/browse/swagger/index.html h4. Object Type enumeration <pre> analogInput: 0 analogOutput: 1 analogValue: 2 binaryInput: 3 binaryOutput: 4 binaryValue: 5 calendar: 6 command: 7 device: 8 eventEnrollment: 9 file: 10 group: 11 loop: 12 multiStateInput: 13 multiStateOutput: 14 notificationClass: 15 program: 16 schedule: 17 averaging: 18 multiStateValue: 19 trendLog: 20 lifeSafetyPoint: 21 lifeSafetyZone: 22 accumulator: 23 pulseConverter: 24 eventLog: 25 trendLogMultiple: 27 loadControl: 28 structuredView: 29 accessDoor: 30 accessCredentialInput: 37 characterStringValue: 40 integerValue: 45 alertEnrollment: 52 lightingOutput: 54 bacqlScript: 129 </pre>