Skip to content

Commit

Permalink
Replace URL with new website in HTTP sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinnegatamante committed Oct 26, 2024
1 parent e85c619 commit 6ff63e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/HTTP/index.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Network.init()
if Network.isWifiEnabled() then

-- Download an image
Network.downloadFile("http://rinnegatamante.it/site/images/logo.png", "ux0:/data/data.png")
Network.downloadFile("https://www.rinnegatamante.eu/site/images/logo.png", "ux0:/data/data.png")

-- Loading image in memory and deleting it from storage
img = Graphics.loadImage("ux0:/data/data.png")
Expand All @@ -27,7 +27,7 @@ while true do
Graphics.debugPrint(5,240,"Press TRIANGLE to return to the sample selector", Color.new(255,255,255))
else
Graphics.drawImage(200,265,img)
Graphics.debugPrint(5,220,"This image came from http://rinnegatamante.it/site/images/logo.png", Color.new(255,255,255))
Graphics.debugPrint(5,220,"This image came from https://www.rinnegatamante.eu/site/images/logo.png", Color.new(255,255,255))
Graphics.debugPrint(5,240,"Press TRIANGLE to return to the sample selector", Color.new(255,255,255))
end
Graphics.termBlend()
Expand Down

0 comments on commit 6ff63e7

Please sign in to comment.