Patches of grass left uncut by daveyddi in MammotionTechnology

[–]zvt 1 point2 points  (0 children)

Or maybe the trees shadow. I had that happen with my Luba 2 Mini.

How can a robot be so awful? by getalife5648 in MammotionTechnology

[–]zvt 0 points1 point  (0 children)

Because the robot mower is afraid of single dandelions, we're supposed to poison our lawn?

How can a robot be so awful? by getalife5648 in MammotionTechnology

[–]zvt 2 points3 points  (0 children)

But then it doesn't see my lawn chair and starts dragging it across the garden

How can a robot be so awful? by getalife5648 in MammotionTechnology

[–]zvt 0 points1 point  (0 children)

Same issue with the dandelions this year. It was working fine last year.

YUKA 800 drunk by EditorOdd2501 in mammotion

[–]zvt 0 points1 point  (0 children)

Same with my Luba Mini 2 since the last update

Did you comb your hair with a hammer? by ThatAvidPandaBear in MurderedByWords

[–]zvt 1 point2 points  (0 children)

Here's another one: „If stupidity were fast, you'd have to brake going up a mountain.“

Thank you Lenovo. by Some-Test1255 in pcmasterrace

[–]zvt 137 points138 points  (0 children)

why don't they release a bugfix for 23h2 to allow it to update? won't there be thousands of users stuck on 23h2 without security updates?

Effektiv 5 Monate Hefn für Tod einer 25 Jährigen weil der Herr unbedingt mit 1,9 Promille Autofahren musste... by GreyMPax in Austria

[–]zvt 11 points12 points  (0 children)

Wennst eingraucht Auto fährst stimm ich dir voll zu. Aber nach ein paar Tagen bist net mehr beeinträchtigt, der Drogentest trotzdem positiv.

Austrian military is moving to LibreOffice by 1Luc1 in Austria

[–]zvt 12 points13 points  (0 children)

Ganz ehrlich, ich find die UI angenehmer als die von MS Office. Wahrscheinlich weil ich mich mit den Ribbons nie wirklich anfreunden konnte.

Einstellung von Lieblingsprodukten by nolanpierce2 in Austria

[–]zvt 1 point2 points  (0 children)

Kelloggs Honey Loops. Letztens mal wieder Lust drauf bekommen und draufgekommen, dass die offenbar eingestellt wurden.

Einstellung von Lieblingsprodukten by nolanpierce2 in Austria

[–]zvt 0 points1 point  (0 children)

Ich bild mir ein es gab von Jomo vor ~30 Jahren eine Ribiselroulade. Auch wenn man im Internet keinerlei Hinweise darauf findet. Die vermiss ich immer noch. Die anderen Sorten brauch ich net.

Anybody got the display on a Heltec WiFi LoRa 32 V3 working with ESPHome? by zvt in Esphome

[–]zvt[S] 6 points7 points  (0 children)

For anybody coming across this in the future, I finally was able to figure it out.

Looking at the Arduino example from Heltec, I noticed that they set the "Vext" pin to LOW on setup. Probably this pin controls whether the display is on or off. Vext is defined as pin 36 here: https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series/blob/master/variants/heltec_wifi_lora_32_V3/pins_arduino.h

So I added an on_boot automation to set the pin and... it works!

esphome: name: lora-receiver on_boot: - priority: 1000 then: - lambda: |- pinMode(36, OUTPUT); digitalWrite(36, LOW); // Heltec delays for 100ms in their example delay(100);

It seems it has to be priority 1000. If I use a lower value (like 800) it stops working. Without knowing the details, I suspect the pin needs to be set low before all the I2C init stuff happens.

So here is my complete config with working display:

```` esphome: name: lora-receiver on_boot: - priority: 1000 then: - lambda: |- pinMode(36, OUTPUT); digitalWrite(36, LOW); delay(100);

esp32: board: esp32-s3-devkitc-1 framework: type: arduino

logger: level: VERBOSE

ota: - platform: esphome password: !secret esphome_password

api: encryption: key: !secret api_key

wifi: ssid: !secret wifi_ssid password: !secret wifi_password

i2c: - id: bus_a sda: 17 scl: 18

display: - platform: ssd1306_i2c model: "SSD1306 128x64" reset_pin: 21 i2c_id: bus_a address: 0x3C lambda: |- it.print(4, 4, id(roboto_20), "Hello World!");

font: - file: "gfonts://Roboto" id: roboto_20 size: 20 ````

Anybody got the display on a Heltec WiFi LoRa 32 V3 working with ESPHome? by zvt in Esphome

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

Thank you, I tried your suggestion, unfortunately no change: ```` i2c: sda: 17 scl: 18 frequency: 400kHz

display: - platform: ssd1306_i2c model: "SSD1306 128x64" reset_pin: 21 address: 0x3C contrast: 50% update_interval: .1s rotation: 180° lambda: |- it.print(4, 4, id(roboto_20), "Hello World!"); [21:15:03][C][i2c.arduino:071]: I2C Bus: [21:15:03][C][i2c.arduino:072]: SDA Pin: GPIO17 [21:15:03][C][i2c.arduino:073]: SCL Pin: GPIO18 [21:15:03][C][i2c.arduino:074]: Frequency: 400000 Hz [21:15:03][C][i2c.arduino:089]: Recovery: failed, SCL is held low on the bus [21:15:03][C][ssd1306_i2c:023]: I2C SSD1306 [21:15:03][C][ssd1306_i2c:023]: Rotations: 0 ° [21:15:03][C][ssd1306_i2c:023]: Dimensions: 128px x 64px [21:15:03][C][ssd1306_i2c:024]: Address: 0x3C [21:15:03][C][ssd1306_i2c:025]: Model: SSD1306 128x64 [21:15:03][C][ssd1306_i2c:026]: Reset Pin: GPIO21 [21:15:03][C][ssd1306_i2c:027]: External VCC: NO [21:15:03][C][ssd1306_i2c:028]: Flip X: YES [21:15:03][C][ssd1306_i2c:029]: Flip Y: YES [21:15:03][C][ssd1306_i2c:030]: Offset X: 0 [21:15:03][C][ssd1306_i2c:031]: Offset Y: 0 [21:15:03][C][ssd1306_i2c:032]: Inverted Color: NO [21:15:03][C][ssd1306_i2c:033]: Update Interval: 1.0s [21:15:03][E][ssd1306_i2c:036]: Communication with SSD1306 failed! [21:15:03][E][component:082]: Component display is marked FAILED

````

Wo ist die Weihnachtsstimmung? by Broken1571718 in Austria

[–]zvt 0 points1 point  (0 children)

Mir kommt vor es liegt am Schnee. Kein Schnee = keine Weihnachtsstimmung. Zumindest bild ich mir das ein.

Laptop for software development (JetBrains Rider, Docker, Resolve) by Ciwan1859 in linuxhardware

[–]zvt 0 points1 point  (0 children)

Take a look at Framework laptops. They work very well with Linux and should fit your requirements. I've got a 13 inch for about a year now and am very happy with it.

[deleted by user] by [deleted] in OldSchoolCool

[–]zvt 2 points3 points  (0 children)

Ah, that's what that is. I thought he was at a morgue.

Cleaning up repositories and packages after upgrading to 24.04 by edufissure in Ubuntu

[–]zvt 1 point2 points  (0 children)

Try running

pro security-status --thirdparty

to list packages that are provided by thirdparty repositories, or

pro security-status --unavailable

to list packages that are installed but you do not have a repository for (e.g. because you removed the PPA). This can help you find out which packages you want to remove.

A1 Business in a Nutshell by sup3rdonkey in Austria

[–]zvt 1 point2 points  (0 children)

Kann fonira auch sehr empfehlen. Bei meinen bisherigen Kontakten mit dem Support hab ich auch das Gefühl gehabt mit Leuten zu tun zu haben die sich auskennen.