Skip to content

Commit

Permalink
Corrections to pass DRC
Browse files Browse the repository at this point in the history
  • Loading branch information
martinberlin committed Dec 18, 2024
1 parent 9e8a51b commit 578310d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions examples/www-image/main/settings.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// WiFi configuration:
#define ESP_WIFI_SSID ""
#define ESP_WIFI_PASSWORD ""
#define ESP_WIFI_SSID "ssid"
#define ESP_WIFI_PASSWORD "pass"

// Define DISPLAY
#define EPD_DISPLAY ED052TC4
Expand All @@ -20,7 +20,8 @@ double gamma_value = 0.7;

// Image URL and jpg settings. Make sure to update WIDTH/HEIGHT if using loremflickr
// Note: Only HTTP protocol supported (Check README to use SSL secure URLs) loremflickr
#define IMG_URL ("http://img.cale.es/jpg/fasani/5ea1dec401890")
#define IMG_URL ("https://loremflickr.com/1080/780")
//#define IMG_URL ("http://img.cale.es/jpg/fasani/5ea1dec401890")

// idf >= 4.3 needs VALIDATE_SSL_CERTIFICATE set to true for https URLs
// Please check the README to understand how to use an SSL Certificate
Expand All @@ -29,7 +30,7 @@ double gamma_value = 0.7;
// verification
// heading ESP-TLS in
// https://newreleases.io/project/github/espressif/esp-idf/release/v4.3-beta1
#define VALIDATE_SSL_CERTIFICATE false
#define VALIDATE_SSL_CERTIFICATE true
// To make an insecure request please check Readme

// Alternative non-https URL:
Expand Down

0 comments on commit 578310d

Please sign in to comment.