This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Notes for my video https://www.youtube.com/watch?v=DFZDAL6lVSU | |
| apk add --update openrc openssh | |
| rc-update add sshd | |
| service sshd start | |
| adduser kevin | |
| apk add sudo | |
| vi /etc/sudoers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INFO ESPHome 2023.6.4 | |
| INFO Reading configuration /config/esphome/guest-time-temp-esp32.yaml... | |
| INFO Detected timezone 'America/Chicago' | |
| INFO Generating C++ source... | |
| INFO Compiling app... | |
| Processing guest-time-temp-esp32 (board: esp32dev; framework: arduino; platform: platformio/[email protected]) | |
| -------------------------------------------------------------------------------- | |
| Library Manager: Installing esphome/AsyncTCP-esphome @ 1.2.2 | |
| INFO Installing esphome/AsyncTCP-esphome @ 1.2.2 | |
| Downloading [####################################] 100% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function time { | |
| Param( | |
| [Parameter(Mandatory=$true)] | |
| [string]$command, | |
| [switch]$quiet = $false | |
| ) | |
| $start = Get-Date | |
| try { | |
| if ( -not $quiet ) { | |
| iex $command | Write-Host |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## | |
| ## My back door screen. | |
| ## ESPHome + LVGL running on | |
| ## Freenove ESP32-S3 ESP32 S3 Display CYD 2.8 Inch IPS Capacitive Touch Screen 240x320 | |
| ## https://www.amazon.com/dp/B0FSQF6FKN | |
| ## | |
| ## This was based on the configuration found | |
| ## https://github.com/celer/esphome_esp32-s3-2.8-display | |
| ## |
OlderNewer