You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1013 B
42 lines
1013 B
<?php
|
|
|
|
/**
|
|
* Those replacements are done by the development server to test it locally
|
|
* without esphttpd. This is needed mainly for places where the replacements
|
|
* are given to JavaScript, to avoid syntax errors with %%
|
|
*/
|
|
return [
|
|
'%term_title%' => 'ESP8266 Wireless Terminal',
|
|
|
|
'%b1%' => '1',
|
|
'%b2%' => '2',
|
|
'%b3%' => '3',
|
|
'%b4%' => '4',
|
|
'%b5%' => '5',
|
|
'%screenData%' => '{
|
|
"w": 26, "h": 10,
|
|
"x": 0, "y": 0,
|
|
"cv": 1,
|
|
"screen": "70 t259"
|
|
}',
|
|
|
|
'%ap_enable%' => '1',
|
|
'%tpw%' => '60',
|
|
'%ap_channel%' => '7',
|
|
'%ap_ssid%' => 'ESP-123456',
|
|
'%ap_password%' => 'Passw0rd!',
|
|
'%ap_hidden%' => '0',
|
|
'%sta_ssid%' => 'Chlivek',
|
|
'%sta_password%' => 'windows XP is The Best',
|
|
'%sta_active_ip%' => '1.2.3.4',
|
|
'%sta_active_ssid%' => 'Chlivek',
|
|
|
|
'%sta_enable%' => '1',
|
|
'%opmode%' => '3',
|
|
'%vers_fw%' => '1.2.3',
|
|
'%date%' => date('Y-m-d'),
|
|
'%time%' => date('G:i'),
|
|
'%vers_httpd%' => '4.5.6',
|
|
'%vers_sdk%' => '1.52',
|
|
'%githubrepo%' => 'https://github.com/MightyPork/esp-vt100-firmware',
|
|
];
|
|
|