Skip to content

Instantly share code, notes, and snippets.

View splatch's full-sized avatar

Łukasz Dywicki splatch

View GitHub Profile
@splatch
splatch / modbus.items
Created December 27, 2020 15:49
openHAB configuration for ineprometering PRO380-mod three phase meter.
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" }
@splatch
splatch / pom.xml
Created November 19, 2020 16:26
Fragment of maven plugin configuration to get jaxrs stubs out of openapi generator plugin.
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>4.3.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
@splatch
splatch / brick.csv
Created November 15, 2020 01:01
Example semantics tags input for OH scripts derivered from brickschema
We can't make this file beautiful and searchable because it's too large.
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
@splatch
splatch / socketcan@.service
Last active November 1, 2020 21:50 — forked from sebastianhaas/socketcan-interface.service
An example systemd template unit file to setup a SocketCAN interface on startup
[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
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
@splatch
splatch / gist:4c7f435dfce0ff4dcaa59aec2d0b1760
Created August 10, 2020 21:49
BitBake error with zulu jdk after update to dunfell
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)
@splatch
splatch / Main.java
Last active July 30, 2020 20:52
PLC4X 0.6 + ADS with an extra work to read symbol table.
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;
@splatch
splatch / wireguard-client.bb
Last active July 14, 2020 08:42
Working wireguard client recipe
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 ?= ""
<?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 -->
<!-- =============================================================== -->
BACnetPDU ::= CHOICE {
confirmed-request-pdu
unconfirmed-request-pdu
simple-ack-pdu
complex-ack-pdu
segment-ack-pdu
error-pdu
reject-pdu
abort-pdu
}