Martin Pittermann
Martin Pittermann
Hi Jan, as we've talked about, I had issues with the LCD not being reset properly (PCB v2.0) and having the LCD show only random pixels. I tried to solve...
Hi Yaroslav, first of all thanks for the work you put into this, it's great to have an STM32 version of grbl that actually receives support! Something that I've always...
project gallery
Hi everyone, I love seeing what you make with OpenCNCPilot, feel free to post pictures of the PCBs (or other projects) you make here.
as the title states. please only use this thread for questions and discussion and open new feature requests for actual issues with OpenCNCPilot. Martin
Since some people didn't want to create their own issues for short questions I've created this permanent issue. You can also use it for discussions on the topic.
Hi Robert, closing and reopening the serial port does not work ("Device does not respond"), only restarting the program fixes the issue. removing the try catch block gives ``` Traceback...
I think there is an error in the pmem example for MapAsPOD. ```go package main import ( "log" "periph.io/x/host/v3/pmem" ) func main() { // Let's say the CPU has 4...
The following code should enable the PWM output on pin PA2: ```rust let output_green = PwmPin::new_ch1(p.PA2, OutputType::PushPull); let mut pwm_green = SimplePwm::new( p.TIM15, Some(output_green), None, None, None, khz(1), Default::default(), );...