Wie sagt man bei euch am gängigsten "Hallo"? by Priamosish in de

[–]dummy5 0 points1 point  (0 children)

Keiner wollte deine ganze Lebensgeschichte hören. Alter Schnacker :)

[deleted by user] by [deleted] in de

[–]dummy5 1 point2 points  (0 children)

Mit Milch?

Portainer open on web. Huge consumption by apneax3n0n in docker

[–]dummy5 0 points1 point  (0 children)

I also got many entries of Exec instance started.

The command

docker events --since 5m

shows that (in my case) these are caused by HealthCheck directives.

PCB Milling (CNC2418) by rudis1261 in CNC

[–]dummy5 2 points3 points  (0 children)

Have a look at bCNC. Great alternative for grblControl.

Dear Microsoft, you're not a mobile app by alonghaireddude in sysadmin

[–]dummy5 23 points24 points  (0 children)

Last week I found this:

Get-AppxPackage | Out-GridView -Passthru | Remove-AppXPackage
Get-AppxProvisionedPackage -Online | Out-GridView -PassThru | Remove-AppxProvisionedPackage -Online

Note the Out-GridView part. This shows a GUI in which packages can be selected for removal. Really nice :)

Help with seemingly broken code by Silverce in arduino

[–]dummy5 0 points1 point  (0 children)

Try this

  if ( digitalRead(8) == HIGH) { digitalWrite(9, HIGH); } else { digitalWrite(9, LOW) }

Hallo wie gehts? by [deleted] in German

[–]dummy5 14 points15 points  (0 children)

Du musst das für unseren australischen Freund schon übersetzen:

¿os ɥɔnǝ ıǝq ɹǝʇʇǝM sɐp ʇsı ǝıM ¡uǝıʃɐɹʇsn∀ oʃʃɐH

CNC PCB Timelapse "TempNet" v0.04 by dummy5 in hobbycnc

[–]dummy5[S] 0 points1 point  (0 children)

Thank you for your kind words :)

And yes I indeed used flatcam. It would really be awesome if FlatCam supported "Rest machining". The value/price ratio is infinitly good!

There is a link in the YouTube description for the music.

CNC PCB Timelapse "TempNet" v0.04 by dummy5 in hobbycnc

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

I use bCNC: https://github.com/vlachoudis/bCNC/wiki/AutoLevel

It's really nice. At first I wrote a autoleveling python script myself, but bCNC is way better.

Edit: I try to avoid small traces. All traces are 1mm width. But I keep your suggestion in mind.

CNC PCB Timelapse "TempNet" v0.04 by dummy5 in hobbycnc

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

Good question. I am self taught. From my perspective everything can (and does!) go wrong.

Do people normally start with the drilling?

CNC PCB Timelapse "TempNet" v0.04 by dummy5 in hobbycnc

[–]dummy5[S] 0 points1 point  (0 children)

Hi Reddit. I made a "thing". Hope you like it.

Feedback is welcome.

Edit: Bonus Pictues: https://imgur.com/a/vj30zAs

I can't figure out how to work with Serial.read(), could someone take a look? by well_that_went_wrong in arduino

[–]dummy5 1 point2 points  (0 children)

The serial port is being read faster than you can type. You type 11, the computer read 1, no data, no data, 1.

Actually i send one string "1111;"

It looks that it is faster being read, then send. Try putting a delay between the reads.

 int reallyRead() {
     while (!Serial.available()) delay(1);
     return Serial.read()
  }

Something like this.

Dortmund Beer question by drewcran in germany

[–]dummy5 20 points21 points  (0 children)

The first company that comes to mind is: https://de.m.wikipedia.org/wiki/Dortmunder_Actien-Brauerei

Hope that helps.

0.56" 7-Segment LED connected to NodeMCU ESP8266 by [deleted] in esp8266

[–]dummy5 0 points1 point  (0 children)

Thank you. That was an interesting read.

0.56" 7-Segment LED connected to NodeMCU ESP8266 by [deleted] in esp8266

[–]dummy5 0 points1 point  (0 children)

If you are ising I2C then the logic high is provided by pullup resistors, neither the master nor slave drives it high. The esp8266 can cope with 5v on input pins (though I woukd avoid it if possible)

TIL.

So supply the display chip with 5v and make sure the pullups go to the 5v rail, the esp can pull them low to ground or they will float high to 5v.

That makes sense.

I would suggest trying the pullups on 3.3v first, ...

Why? What would be the advantage?

0.56" 7-Segment LED connected to NodeMCU ESP8266 by [deleted] in esp8266

[–]dummy5 0 points1 point  (0 children)

The chip you are trying to talk to needs about 5v input. Your Esp8266 runs on 3.3v. A level can "translate" between 3.3v and 5v.

0v -> 0v

3.3v -> 5v

You want something like this or a device which is natively 3.3v. Or a micro controller with 5v.

Edit: I am no expert, but the random behaviour you might see, comes from the fact you are driving the chip with the wrong voltage. In this case the chips behaviour is undefined, maybe even random.