This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String PRO380_ModbusId "Pro 380 Modbus id" { channel="modbus:data:pro380:metadata:serialNumber:number" } | |
Number PRO380_Voltage_L1 "Pro 380 L1 Voltage [%.2f]" { channel="modbus:data:pro380:voltage:L1:number" } | |
Number PRO380_Voltage_L2 "Pro 380 L2 Voltage [%.2f]" { channel="modbus:data:pro380:voltage:L2:number" } | |
Number PRO380_Voltage_L3 "Pro 380 L3 Voltage [%.2f]" { channel="modbus:data:pro380:voltage:L3:number" } | |
Number PRO380_Current_L1 "Pro 380 L1 Current [%.2f]" { channel="modbus:data:pro380:current:L1:number" } | |
Number PRO380_Current_L2 "Pro 380 L2 Current [%.2f]" { channel="modbus:data:pro380:current:L2:number" } | |
Number PRO380_Current_L3 "Pro 380 L3 Current [%.2f]" { channel="modbus:data:pro380:current:L3:number" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.openapitools</groupId> | |
<artifactId>openapi-generator-maven-plugin</artifactId> | |
<version>4.3.0</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>generate</goal> | |
</goals> |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Type,Tag,Parent,Label,Synonyms,Description | |
Location,Location,,,Location, | |
Location,Storey,Location,,Storey, | |
Location,Space,Location,,Space,"A part of the physical world or a virtual world whose 3D spatial extent is bounded actually or theoretically, and provides for certain functions within the zone it is contained in." | |
Location,Room,Space,,Room,"Base class for all more specific room types." | |
Location,Laboratory,Room,,Laboratory,"facility acceptable to the local, national, or international recognized authority having jurisdiction and which provides uniform testing and examination procedures and standards for meeting design, manufacturing, and factory testing requirements." | |
Location,Hot Box,,,Hot Box,"hot air chamber forming part of an air handler." | |
Location,Freezer,Laboratory,,Freezer,"cold chamber usually kept at a temperature of 22°F to 31°F (–5°C to –1°C), with high-volume air circulation." | |
Location,Environment Box,,,Environment Box,"(also known as climatic chamber), enclosed space designed to create a parti |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=SocketCAN interface %i with a baudrate of 500000 | |
After=multi-user.target | |
[Service] | |
Type=oneshot | |
RemainAfterExit=yes | |
ExecStart=/sbin/ip link set %i type can bitrate 500000 ; /sbin/ifconfig %i up | |
ExecReload=/sbin/ifconfig %i down ; /sbin/ip link set %i type can bitrate 500000 ; /sbin/ifconfig %i up | |
ExecStop=/sbin/ifconfig %i down |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@intel-corei7-64:/home/connectorio# dmesg|grep -i usb | |
[ 0.982102] ACPI: bus type USB registered | |
[ 0.983095] usbcore: registered new interface driver usbfs | |
[ 0.984061] usbcore: registered new interface driver hub | |
[ 0.985073] usbcore: registered new device driver usb | |
[ 1.873106] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver | |
[ 1.881511] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver | |
[ 1.889616] uhci_hcd: USB Universal Host Controller Interface driver | |
[ 1.899090] xhci_hcd 0000:00:15.0: new USB bus registered, assigned bus number 1 | |
[ 1.915125] hub 1-0:1.0: USB hub found |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WARNING: zulu-ezdk-x86-11.0.7-u10 do_package: KeyError in ./package/usr/share/zulu-11.0.7_10/DISCLAIMER | |
ERROR: zulu-ezdk-x86-11.0.7-u10 do_package: Error executing a python function in exec_python_func() autogenerated: | |
The stack trace of python calls that resulted in this exception/failure was: | |
File: 'exec_python_func() autogenerated', lineno: 2, function: <module> | |
0001: | |
*** 0002:sstate_report_unihash(d) | |
0003: | |
File: '/work/poky/meta/classes/sstate.bbclass', lineno: 840, function: sstate_report_unihash | |
0836: report_unihash = getattr(bb.parse.siggen, 'report_unihash', None) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.nio.ByteBuffer; | |
import java.nio.ByteOrder; | |
import java.nio.charset.StandardCharsets; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.concurrent.CompletableFuture; | |
import org.apache.commons.codec.binary.Hex; | |
import org.apache.plc4x.java.PlcDriverManager; | |
import org.apache.plc4x.java.api.PlcConnection; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DESCRIPTION = "Wireguard VPN client configuration on /data partition" | |
HOMEPAGE = "https://connectorio.com/" | |
LICENSE = "MIT" | |
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | |
# variables used to pre-populate wireguard interface | |
export WG_CLIENT_ADDRESS ?= "" | |
export WG_CLIENT_PRIVATE_KEY ?= "" | |
export WG_CLIENT_PRESHARED_KEY ?= "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd"> | |
<!-- =============================================================== --> | |
<!-- Configure the Jetty Server --> | |
<!-- --> | |
<!-- Documentation of this file format can be found at: --> | |
<!-- http://wiki.eclipse.org/Jetty/Reference/jetty.xml_syntax --> | |
<!-- =============================================================== --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BACnetPDU ::= CHOICE { | |
confirmed-request-pdu | |
unconfirmed-request-pdu | |
simple-ack-pdu | |
complex-ack-pdu | |
segment-ack-pdu | |
error-pdu | |
reject-pdu | |
abort-pdu | |
} |