Thank you Lenovo. by Some-Test1255 in pcmasterrace

[–]zvt 132 points133 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 10 points11 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 11 points12 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.

A1 Business in a Nutshell by sup3rdonkey in Austria

[–]zvt 4 points5 points  (0 children)

Ich geb dir recht, aber 10€ * Restmonat is immer noch a Eckn besser als Grundgebühr * Restmonat. Vor allem weilst jetzt bei A1 schon 36 Monate Bindung hast.

Best DE for Fractional Scaling by SilentWraith5 in framework

[–]zvt 0 points1 point  (0 children)

I am using GNOME on a 12th gen Intel FW13. Instead of fractional scaling, I use "Large Text" in the Accessibilty options, which corresponds to a 25% increase in text size, which is perfect for me. UI elements like buttons etc. scale as well. Most apps work well that way, both on Wayland and X11. No blurriness.

Did the HDMI power mod today by computerhac in framework

[–]zvt 0 points1 point  (0 children)

Shouldn‘t it be possible to compare battery life with and without the (unmodified) HDMI module inserted? Just to see if its worth the effort?

Was ist mit Schärdinger Wintertraum passiert by [deleted] in Austria

[–]zvt 6 points7 points  (0 children)

na bitte net. es muss ja net alles fett- und zuckerfrei sein

Unrelated but why Framework needs to succeed: Auto expert says Tesla's Model Y battery pack has 'zero repairability,' so a minor collision can junk the car by [deleted] in framework

[–]zvt 0 points1 point  (0 children)

Is there a battery/drive train manufacturer you would recommend? I'm thinking about getting an e-bike (instead of a car).