bademux

Results 60 comments of bademux

actually I'm interested in modbus slave RTU too. Any hints how it can be implemented?

@jpeletier sorry for stupid question, is it possible to expose your modbus slave implementation with RS485 (serial).

test script ```python import serial ser = serial.Serial("/dev/ttyACM1",baudrate = 19200, timeout=1) if ser.isOpen(): ser.write("echo otpauth://totp/ACME%20Co:[email protected]?secret=HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ&issuer=ACME%20Co&algorithm=SHA1&digits=6&period=30 > totp_uris.txt".encode()) print(ser.read(256).decode("ascii")) ser.write("ls".encode()) print(ser.read(256).decode("ascii")) ser.write("cat totp_uris.txt".encode()) print(ser.read(256).decode("ascii")) ser.close() ``` and output is (two empty...

Any news on that? https://helm.sh/blog/storing-charts-in-oci/ ```bash helm push demo-0.1.0.tgz oci://r.example.com/myuser ``` Update: Task to push helm chart to OCI registry. Pass registry as `dockerDestRegistry` and username\password as `jib.to.auth.username` `jib.to.auth.password` ```groovy...

When we can expect release?

sorry for my 5¢: while I like the idea, watch face runtime customization is hackfix to: - lack of load\store face settings - no easy access (IRDA\NFC\Pin Connector) for firmware...

thanks! btw, here the small snippet how I test JVips Read ```java try (FileChannel ch = Files.newByteChannel(path, READ); VipsImage image = new VipsImage(ch.map(READ_ONLY, 0, ch.size()), (int) ch.size())) { ... }...

@johnrengelman [the decision to exclude](https://github.com/johnrengelman/shadow/issues/352#issuecomment-421812807) `module-info` was unfortunate. The plugin is extremely useful to hackfix different legacy libs from (apache) cemetery to use modules. Please leave `module-info` from the project...

@warrenseine Sorry I missed that. Can be closed then

Upd. Will it be acceptable to add attribute "Automatic-Module-Name: JVips" to manifest? More info: https://docs.oracle.com/javase/9/docs/specs/jar/jar.html