Daniel Mårtensson
Daniel Mårtensson
This is just a warning message when I try to compile. I'm using Apex Charts beta 10 version. Se this message: ``` WARNING in ../node_modules/@vaadin/flow-frontend/com/github/appreciated/apexcharts/apexcharts-wrapper.js?babel-target=es5 48:32-42 "export 'default' (imported as...
Hi! I'm using DeepLearing4J with OpenJFX. It works great, but when I compile or run, I get these warnings. I don't have the module-info.java file in my project. ``` [INFO]...
I'm using OpenJDK 11 on Raspberry Pi 4 B. Here is my code. ``` package se.danielmartensson.views; import java.awt.Dimension; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; import com.github.sarxos.webcam.Webcam; import com.vaadin.flow.component.UI;...
Hi! I was following this tutorial https://wiki.jmonkeyengine.org/jme3/advanced/hinges_and_joints.html and I'm doing a cradle with 6 joints and 6 balls. The problem is that if I have more than 1 joint, the...
Hi! I'm doing PWM but I cannot see any PWM signal when I try to connect. I'm set the duty cycle the PWM with `pwm0.setDutyCycle(do0/ControlView.MAX_SLIDER_VALE);` https://github.com/DanielMartensson/OpenSourceLogger/blob/master/src/main/java/se/danielmartensson/threads/ControlThread.java And the PWM decleration...
Hi! I want to give a suggestion for this project. Pi4J 2.0 should have access to a camera. I can help with picture identification/classification in pure Java if you want...
Hi! Just started with Pi4J 2.0 and I got an error. ``` 2020-07-10 15:44:02 gpioHardwarePWM: bad gpio for PWM (3) [http-nio-8080-exec-5] WARN com.pi4j.library.pigpio.impl.PiGpioNativeImpl - PIGPIO ERROR: PI_NOT_HPWM_GPIO; GPIO has no...
Hello! When I use > import org.sputnikdev.bluetooth.URL; I get an error that URL does not exists. Is this a bug? Windows 10, OpenJDK 11.0.2 i'm using. Eclipse. No Maven. Only...
Hi! Adding a click command to a button, requires a suppress warning. Example: ``` @SuppressWarnings("unchecked") public void connectToButtonEnableDisableGeometry(Geometry geom) { enable3D.addClickCommands(e -> { if(enable3D.isPressed() == true && enable3D.getText().contains("Disable") == true)...
Hello! This code snippet ``` .withAppBar(AppBarBuilder.get() .add(new LeftClickableItem("Menu", VaadinIcon.MENU.create(), clickEvent -> toggleDrawer())) .build()) ``` Resulting this behaviour. 1. The drawer button is on the wrong side. 2. When I press...