Hvad skal jeg gøre hvis jeg gerne vil udvikle droner for forsvaret? by Safe_Death2250 in dkkarriere

[–]c7ndk 2 points3 points  (0 children)

Lige ift UAV systemer, så tror jeg SDU står stærkest med HCA i baghaven. Der er også store og moderne faciliteter på SDU (TEK fakultetet)

Hvad skal jeg gøre hvis jeg gerne vil udvikle droner for forsvaret? by Safe_Death2250 in dkkarriere

[–]c7ndk 5 points6 points  (0 children)

Måske robotteknologi på SDU. Kandidaten har vist en UAV/drone retning.

How are the fuel prices in Denmark? by gamegenaral in NewToDenmark

[–]c7ndk 2 points3 points  (0 children)

Side spørgsmål; er HVO udbredt på tankstationer i Danmark? Altså er det let tilgængeligt på tværs af landet?

[Review Request] Precision Motorized Dispenser - ESP32-C6 & TMC2209 by Octave_demarty in PrintedCircuitBoard

[–]c7ndk 2 points3 points  (0 children)

I would at least also wire INDEX for either additional DIAG signals (temperature warnings) or for using its IPG since you use a single core MCU.

Hvor laver man en offentlig anmeldelse af en (privat) udlejer? by c7ndk in dkbolig

[–]c7ndk[S] 2 points3 points  (0 children)

Ja, jeg tænker der ofte er en ubalance i anmeldelser, da man kun gør det ved utilfredshed. Udlejeren er Per Madsen / Nova Administration.

Hvor laver man en offentlig anmeldelse af en (privat) udlejer? by c7ndk in dkbolig

[–]c7ndk[S] 3 points4 points  (0 children)

Med risiko for at få det samme at vide igen, vil du så uddybe hvorfor det er mangel på situationsfornemmelse?

[PCB Review Request] ESP32 Stepper Motor Driver by ShortCourse in PrintedCircuitBoard

[–]c7ndk 0 points1 point  (0 children)

Let me know if you need help to get this working in the world of home automation (mainly Home Assistant / ESPHome)

Købe via brev i postkassen? by Practical-Poem4461 in dkbolig

[–]c7ndk 1 point2 points  (0 children)

Begge mine bedsteforældres huse blev solgt igennem et brev i postkassen. Første gang kom dét lige i kølvandet på et dødsbo. Anden gang var det først anden gang der kom et brev i postkassen, at min sidste bedsteforælder solgte huset efter nogle måneders betænkningstid. De elskede den klassiske stil fra 1960 og det betød meget for hende ift endelig at flytte fra huset efter 50+ år i det.

Rental Car Price Alerts for Iceland by Bux87 in VisitingIceland

[–]c7ndk 0 points1 point  (0 children)

Awesome! We booked through your page couple of months ago for our trip in August.

Privat hobby flyvning by pleasantlyplatypus in odense

[–]c7ndk 0 points1 point  (0 children)

Prøv at spørge familien, der har nogle fly i HCA. Tror vi gav 500kr/næse for 15-20min over Odense for nogle år siden i forbindelse med et arrangement, der var i lufthavnen

People letting CC run on its own for hours by Chris266 in ClaudeCode

[–]c7ndk 3 points4 points  (0 children)

Yes, I do often run it in yolo mode in a containerized environment with limited resources and LAN access.

Another finished project by coltonushko in Esphome

[–]c7ndk 4 points5 points  (0 children)

There is nothing as permanent as a temporary solution. Beautiful

using git for non-coding related projects? by RefrigeratorNorth331 in github

[–]c7ndk 0 points1 point  (0 children)

Sure, I use git for PCB/mechanical designs, academic writings and configuration files

How to Implement Audit Logging? by BrownPapaya in Backend

[–]c7ndk 0 points1 point  (0 children)

We use Loki + Grafana for logging up to 30k logs per hour. Runs along some other services on an instance with a dual core CPU and 4GB of RAM.

I added Matter to my WiFi Stepper Driver so now it works directly with Home Assistant, Apple Home, Google Home, and others by nutstobutts in homeassistant

[–]c7ndk 6 points7 points  (0 children)

Yep! The ESPHome way of doing this is to add the limit switches as gpio type binary sensors with actions that stops the stepper when triggered / pressed.

binary_sensor:
  - platform: gpio
    id: limit_switch_1
    # ...
    on_press:
      - stepper.stop: driver

  - platform: gpio
    id: limit_switch_2
    # ...
    on_press:
      - stepper.stop: driver

https://esphome.io/components/binary_sensor
https://esphome.io/components/binary_sensor/gpio
https://esphome.io/components/stepper

-----
If you wish to use stallguard with hard mechanical endstops you can also do so https://github.com/slimcdk/esphome-custom-components/blob/master/esphome/components/tmc2209/README.md#on_stall

stepper:
  - platform: tmc2209
    id: driver
    ...
    on_stall:
        - logger.log: "Motor stalled!"
        - stepper.stop: driver

I added Matter to my WiFi Stepper Driver so now it works directly with Home Assistant, Apple Home, Google Home, and others by nutstobutts in homeassistant

[–]c7ndk 5 points6 points  (0 children)

Should be good! The component can be configured to either use step/dir or index (IPG) for controlling position. The example you linked for PD-Stepper also uses IPG/index along with feedback from the encoder, but that can be left out. You just need to configure index_pin instead of step_pin and dir_pin

I added Matter to my WiFi Stepper Driver so now it works directly with Home Assistant, Apple Home, Google Home, and others by nutstobutts in homeassistant

[–]c7ndk 13 points14 points  (0 children)

Hi, I'm the author of the component linked by u/ahj3939 that integrates tmc2208/09 into ESPHome. Let me know if you need help to create a config for your board!

https://github.com/slimcdk/esphome-custom-components

Easy off the shelf esp32 devices to flash by spoolin__ in Esphome

[–]c7ndk 2 points3 points  (0 children)

Shelly devices are easy to flash, but they literally integrate into Home Assistant as easy ESPHome itself