-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1_Info.ino
74 lines (47 loc) · 3.02 KB
/
1_Info.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* https://github.com/khirds/powertalkz
*
*
*
*
*
*
*
*
*
* https://github.com/programmer131/ESP8266_ESP32_SelfUpdate/issues/8
* Thanks
Based on the timemage answer via the other question, I have changed the address of bin and TXT file by finding the download link of those files form the GitHub. And it has been working by changing the blob part of address to raw, so the bin address changed form
https://github.com/soheilpaper/ota_github_blink/blob/main/BlinkWithoutDelay_ino_esp8285.bin to
https://github.com/soheilpaper/ota_github_blink/raw/main/BlinkWithoutDelay_ino_esp8285.bin And the
https://github.com/soheilpaper/ota_github_blink/blob/main/version.txt
to
https://raw.githubusercontent.com/soheilpaper/ota_github_blink/main/version.txt
rough
//#define URL_fw_Version "https://raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/bin_version.txt"
//#define URL_fw_Bin "https://raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/fw.bin"
//#define URL_fw_Version "https://github.com/khirds/powertalkz/blob/khirds-patch-2/bin_version.txt"
//#define URL_fw_Bin "https://github.com/khirds/powertalkz/blob/khirds-patch-2/fw.bin"
//
//https://github.com/soheilpaper/ota_github_blink/blob/main/BlinkWithoutDelay_ino_esp8285.bin to
//https://github.com/soheilpaper/ota_github_blink/raw/main/BlinkWithoutDelay_ino_esp8285.bin And the
//https://github.com/soheilpaper/ota_github_blink/blob/main/version.txt
//to
//https://raw.githubusercontent.com/soheilpaper/ota_github_blink/main/version.txt
//#define URL_fw_Bin "https://github.com/khirds/powertalkz/raw/main/fw.bin"
//#define URL_fw_Version "https://raw.github.com/khirds/powertalkz/main/bin_version.txt"
//raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/bin_version.txt"
//#define URL_fw_Bin "https://github.com/khirds/powertalkz/raw/main/bin_version.txt"
//#define URL_fw_Version "https://raw.githubusercontent.com/khirds/powertalkz/main/bin_version.txt"
//#define URL_fw_Version "http://cade-make.000webhostapp.com/version.txt"
//#define URL_fw_Bin "http://cade-make.000webhostapp.com/firmware.bin"
//#define URL_fw_Version "https://raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/bin_version.txt"
//#define URL_fw_Bin "https://raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/fw.bin"
https://raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/fw.bin
https://github.com/khirds/powertalkz/blob/main/fw.bin
https://raw.githubusercontent.com/khirds/powertalkz/main/bin_version.txt
https://raw.githubusercontent.com/khirds/powertalkz/main/fw.bin
https://raw.githubusercontent.com/khirds/powertalkz/blob/main/fw.bin
https://raw.githubusercontent.com/programmer131/ESP8266_ESP32_SelfUpdate/master/esp32_ota/bin_version.txt
#define URL_fw_Bin "https://github.com/khirds/powertalkz/blob/main/fw.bin"
#define URL_fw_Version "https://raw.githubusercontent.com/khirds/powertalkz/main/bin_version.txt"
*/