@ -1,101 +1,133 @@ | |||||
#!/bin/bash | #!/bin/bash | ||||
set -e | |||||
# Welcome | |||||
echo "--------------------------------------------------------------" | |||||
echo "ESPURNA FIRMWARE BUILDER" | |||||
# Script settings | |||||
version=$(grep APP_VERSION espurna/config/version.h | awk '{print $3}' | sed 's/"//g') | |||||
(command -v git && git rev-parse --is-inside-work-tree) 2>&1>/dev/null | |||||
if [ $? -eq 0 ]; then | |||||
git_revision=$(git rev-parse --short HEAD) | |||||
git_version=$(git describe --tags) | |||||
else | |||||
git_revision= | |||||
git_version=$version | |||||
fi | |||||
par_build=0 | |||||
par_thread=${BUILDER_THREAD:-0} | |||||
par_total_threads=${BUILDER_TOTAL_THREADS:-4} | |||||
if [ ${par_thread} -ne ${par_thread} -o \ | |||||
${par_total_threads} -ne ${par_total_threads} ]; then | |||||
echo "Parallel threads should be a number." | |||||
exit | |||||
fi | |||||
if [ ${par_thread} -ge ${par_total_threads} ]; then | |||||
echo "Current thread is greater than total threads. Doesn't make sense" | |||||
exit | |||||
fi | |||||
# Available environments | # Available environments | ||||
travis=$(grep env: platformio.ini | grep travis | sed 's/\[env://' | sed 's/\]/ /' | sort) | travis=$(grep env: platformio.ini | grep travis | sed 's/\[env://' | sed 's/\]/ /' | sort) | ||||
available=$(grep env: platformio.ini | grep -v ota | grep -v ssl | grep -v travis | sed 's/\[env://' | sed 's/\]/ /' | sort) | available=$(grep env: platformio.ini | grep -v ota | grep -v ssl | grep -v travis | sed 's/\[env://' | sed 's/\]/ /' | sort) | ||||
# Build tools settings | |||||
export PLATFORMIO_BUILD_FLAGS="${PLATFORMIO_BUILD_FLAGS} -DAPP_REVISION='\"$git_revision\"'" | |||||
# Functions | |||||
print_available() { | |||||
echo "--------------------------------------------------------------" | |||||
echo "Available environments:" | |||||
for environment in $available; do | |||||
echo "* $environment" | |||||
done | |||||
} | |||||
print_environments() { | |||||
echo "--------------------------------------------------------------" | |||||
echo "Current environments:" | |||||
for environment in $environments; do | |||||
echo "* $environment" | |||||
done | |||||
} | |||||
set_default_environments() { | |||||
# Hook to build in parallel when using travis | |||||
if [[ "${TRAVIS_BUILD_STAGE_NAME}" = "Release" ]] && [ ${par_build} ]; then | |||||
environments=$(echo ${available} | \ | |||||
awk -v par_thread=${par_thread} -v par_total_threads=${par_total_threads} \ | |||||
'{ for (i = 1; i <= NF; i++) if (++j % par_total_threads == par_thread ) print $i; }') | |||||
return | |||||
fi | |||||
# Only build travisN | |||||
if [[ "${TRAVIS_BUILD_STAGE_NAME}" = "Test" ]]; then | |||||
environments=$travis | |||||
return | |||||
fi | |||||
# Fallback to all available environments | |||||
environments=$available | |||||
} | |||||
build_webui() { | |||||
# Build system uses gulpscript.js to build web interface | |||||
if [ ! -e node_modules/gulp/bin/gulp.js ]; then | |||||
echo "--------------------------------------------------------------" | |||||
echo "Installing dependencies..." | |||||
npm install --only=dev | |||||
fi | |||||
# Recreate web interface (espurna/data/index.html.*.gz.h) | |||||
echo "--------------------------------------------------------------" | |||||
echo "Building web interface..." | |||||
node node_modules/gulp/bin/gulp.js || exit | |||||
} | |||||
build_environments() { | |||||
echo "--------------------------------------------------------------" | |||||
echo "Building firmware images..." | |||||
mkdir -p ../firmware/espurna-$version | |||||
for environment in $environments; do | |||||
echo -n "* espurna-$version-$environment.bin --- " | |||||
platformio run --silent --environment $environment || exit 1 | |||||
stat -c %s .pioenvs/$environment/firmware.bin | |||||
[[ "${TRAVIS_BUILD_STAGE_NAME}" = "Test" ]] || \ | |||||
mv .pioenvs/$environment/firmware.bin ../firmware/espurna-$version/espurna-$version-$environment.bin | |||||
done | |||||
echo "--------------------------------------------------------------" | |||||
} | |||||
# Parameters | # Parameters | ||||
while getopts "lp" opt; do | while getopts "lp" opt; do | ||||
case $opt in | case $opt in | ||||
l) | l) | ||||
echo "--------------------------------------------------------------" | |||||
echo "Available environments:" | |||||
for environment in $available; do | |||||
echo "* $environment" | |||||
done | |||||
print_available | |||||
exit | exit | ||||
;; | ;; | ||||
p) | p) | ||||
par_build=1 | par_build=1 | ||||
par_thread=${BUILDER_THREAD:-0} | |||||
par_total_threads=${BUILDER_TOTAL_THREADS:-4} | |||||
if [ ${par_thread} -ne ${par_thread} -o \ | |||||
${par_total_threads} -ne ${par_total_threads} ]; then | |||||
echo "Parallel threads should be a number." | |||||
exit | |||||
fi | |||||
if [ ${par_thread} -ge ${par_total_threads} ]; then | |||||
echo "Current thread is greater than total threads. Doesn't make sense" | |||||
exit | |||||
fi | |||||
;; | |||||
;; | |||||
esac | esac | ||||
done | done | ||||
shift $((OPTIND-1)) | shift $((OPTIND-1)) | ||||
environments=$@ | |||||
# Welcome | |||||
echo "--------------------------------------------------------------" | |||||
echo "ESPURNA FIRMWARE BUILDER" | |||||
echo "Building for version ${git_version}" | |||||
# Environments to build | # Environments to build | ||||
if [ $# -eq 0 ]; then | |||||
environments=$available | |||||
# Hook to build travis test envs | |||||
if [[ "${TRAVIS_BRANCH}" != "" ]]; then | |||||
re='^[0-9]+\.[0-9]+\.[0-9]+$' | |||||
if ! [[ ${TRAVIS_BRANCH} =~ $re ]]; then | |||||
environments=$travis | |||||
fi | |||||
fi | |||||
fi | |||||
# Get current version | |||||
version=$(grep APP_VERSION espurna/config/version.h | awk '{print $3}' | sed 's/"//g') | |||||
echo "Building for version $version" | |||||
# Create output folder | |||||
mkdir -p firmware | |||||
environments=$@ | |||||
if [ ! -e node_modules/gulp/bin/gulp.js ]; then | |||||
echo "--------------------------------------------------------------" | |||||
echo "Installing dependencies..." | |||||
npm install --only=dev | |||||
if [ $# -eq 0 ]; then | |||||
set_default_environments | |||||
fi | fi | ||||
echo "--------------------------------------------------------------" | |||||
echo "Get revision..." | |||||
revision=$(git rev-parse HEAD) | |||||
revision=${revision:0:7} | |||||
cp espurna/config/version.h espurna/config/version.h.original | |||||
sed -i -e "s/APP_REVISION \".*\"/APP_REVISION \"$revision\"/g" espurna/config/version.h | |||||
# Recreate web interface | |||||
echo "--------------------------------------------------------------" | |||||
echo "Building web interface..." | |||||
node node_modules/gulp/bin/gulp.js || exit | |||||
# Build all the required firmware images | |||||
echo "--------------------------------------------------------------" | |||||
echo "Building firmware images..." | |||||
mkdir -p ../firmware/espurna-$version | |||||
if [ ${par_build} ]; then | |||||
to_build=$(echo ${environments} | awk -v par_thread=${par_thread} -v par_total_threads=${par_total_threads} '{ for (i = 1; i <= NF; i++) if (++j % par_total_threads == par_thread ) print $i; }') | |||||
else | |||||
to_build=${environments} | |||||
if [[ "${CI}" = true ]]; then | |||||
print_environments | |||||
fi | fi | ||||
for environment in $to_build; do | |||||
echo -n "* espurna-$version-$environment.bin --- " | |||||
platformio run --silent --environment $environment || exit 1 | |||||
stat -c %s .pioenvs/$environment/firmware.bin | |||||
mv .pioenvs/$environment/firmware.bin ../firmware/espurna-$version/espurna-$version-$environment.bin | |||||
done | |||||
echo "--------------------------------------------------------------" | |||||
mv espurna/config/version.h.original espurna/config/version.h | |||||
build_webui | |||||
build_environments |
@ -0,0 +1,5 @@ | |||||
#define device_config_len 37 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x43,0x55,0x53,0x54,0x4f,0x4d,0x22,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 130 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x4e,0x4f,0x44,0x45,0x4d,0x43,0x55,0x5f,0x4c,0x4f,0x4c,0x49,0x4e,0x22,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 141 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x57,0x45,0x4d,0x4f,0x53,0x5f,0x44,0x31,0x5f,0x4d,0x49,0x4e,0x49,0x5f,0x52,0x45,0x4c,0x41,0x59, | |||||
0x53,0x48,0x49,0x45,0x4c,0x44,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30, | |||||
0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 136 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x42,0x41,0x53,0x49,0x43,0x22, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 160 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x54,0x48,0x22,0x2c,0x22,0x64, | |||||
0x68,0x74,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x64,0x73,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x31,0x34,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 133 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x53,0x56,0x22,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69, | |||||
0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 218 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c, | |||||
0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x4c, | |||||
0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65, | |||||
0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x31,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x54,0x4f,0x55,0x43, | |||||
0x48,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65, | |||||
0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,13 @@ | |||||
#define device_config_len 195 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x50,0x4f,0x57,0x22,0x2c,0x22, | |||||
0x68,0x6c,0x77,0x43,0x46,0x31,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x33,0x2c,0x22,0x68,0x6c,0x77,0x43, | |||||
0x46,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x68,0x6c,0x77,0x45,0x6e,0x61,0x62,0x6c,0x65, | |||||
0x64,0x22,0x3a,0x31,0x2c,0x22,0x68,0x6c,0x77,0x53,0x45,0x4c,0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c, | |||||
0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f, | |||||
0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31, | |||||
0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 142 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x39,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79, | |||||
0x32,0x22,0x3a,0x30,0x2c,0x22,0x64,0x62,0x67,0x53,0x70,0x65,0x65,0x64,0x22,0x3a,0x31,0x39,0x32,0x33, | |||||
0x30,0x2c,0x22,0x64,0x62,0x67,0x53,0x65,0x72,0x69,0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76, | |||||
0x69,0x63,0x65,0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x44, | |||||
0x55,0x41,0x4c,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d, | |||||
0x6d,0x79,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a, | |||||
0x31,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 136 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x31,0x43,0x48,0x5f,0x49,0x4e,0x43,0x48,0x49,0x4e,0x47,0x22, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,20 @@ | |||||
#define device_config_len 336 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x31,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x39,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x33,0x22,0x3a,0x31,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65, | |||||
0x32,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x33,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61, | |||||
0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x32,0x22,0x3a,0x32,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x33,0x22,0x3a,0x33,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x34,0x43,0x48, | |||||
0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x33,0x22, | |||||
0x3a,0x31,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x32,0x22, | |||||
0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x33,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 133 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4c,0x41,0x4d,0x50,0x48,0x45,0x52,0x22,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69, | |||||
0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 128 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x32,0x30,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54, | |||||
0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 208 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x34,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31, | |||||
0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x45,0x4c,0x45,0x43,0x54,0x52,0x4f,0x44,0x52,0x41,0x47,0x4f,0x4e,0x5f,0x57,0x49,0x46,0x49, | |||||
0x5f,0x49,0x4f,0x54,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x36,0x2c, | |||||
0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50, | |||||
0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31, | |||||
0x33,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54, | |||||
0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 137 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x35,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x57,0x4f,0x52,0x4b,0x43,0x48,0x4f,0x49,0x43,0x45,0x5f,0x45,0x43,0x4f,0x50,0x4c,0x55, | |||||
0x47,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x31,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 179 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x36,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64, | |||||
0x65,0x31,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x4a,0x41,0x4e,0x47,0x4f,0x45,0x5f,0x57,0x49,0x46,0x49,0x5f,0x52,0x45,0x4c,0x41, | |||||
0x59,0x5f,0x4e,0x43,0x22,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x31,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 179 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x37,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64, | |||||
0x65,0x31,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x4a,0x41,0x4e,0x47,0x4f,0x45,0x5f,0x57,0x49,0x46,0x49,0x5f,0x52,0x45,0x4c,0x41, | |||||
0x59,0x5f,0x4e,0x4f,0x22,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 147 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x38,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4f,0x50,0x45,0x4e,0x45,0x4e,0x45,0x52,0x47,0x59,0x4d,0x4f,0x4e,0x49,0x54,0x4f,0x52,0x5f, | |||||
0x4d,0x51,0x54,0x54,0x5f,0x52,0x45,0x4c,0x41,0x59,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x36,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79, | |||||
0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,8 @@ | |||||
#define device_config_len 99 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x31,0x39,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4a,0x4f,0x52,0x47,0x45,0x47,0x41,0x52,0x43,0x49,0x41,0x5f,0x57,0x49,0x46,0x49,0x5f,0x52, | |||||
0x45,0x4c,0x41,0x59,0x53,0x22,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x31,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 160 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x49,0x54,0x48,0x49,0x4e,0x4b,0x45,0x52,0x5f,0x41,0x49,0x5f,0x4c,0x49,0x47,0x48,0x54, | |||||
0x22,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x31,0x2c,0x22,0x6d, | |||||
0x79,0x43,0x68,0x69,0x70,0x73,0x22,0x3a,0x31,0x2c,0x22,0x6d,0x79,0x44,0x43,0x4b,0x49,0x47,0x50,0x49, | |||||
0x4f,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6d,0x79,0x44,0x49,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x6d,0x79,0x4d,0x61,0x70,0x70,0x69,0x6e,0x67,0x22,0x3a,0x22,0x30,0x31,0x32,0x33,0x22,0x2c,0x22, | |||||
0x6d,0x79,0x4d,0x6f,0x64,0x65,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,18 @@ | |||||
#define device_config_len 282 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4d,0x41,0x47,0x49,0x43,0x48,0x4f,0x4d,0x45,0x5f,0x4c,0x45,0x44,0x5f,0x43,0x4f,0x4e,0x54, | |||||
0x52,0x4f,0x4c,0x4c,0x45,0x52,0x22,0x2c,0x22,0x69,0x72,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a, | |||||
0x31,0x2c,0x22,0x69,0x72,0x47,0x50,0x49,0x4f,0x22,0x3a,0x34,0x2c,0x22,0x69,0x72,0x53,0x65,0x74,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63, | |||||
0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d, | |||||
0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a, | |||||
0x32,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 130 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x4d,0x4f,0x54,0x4f,0x52,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,13 @@ | |||||
#define device_config_len 200 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x54,0x49,0x4e,0x4b,0x45,0x52,0x4d,0x41,0x4e,0x5f,0x45,0x53,0x50,0x55,0x52,0x4e,0x41,0x5f, | |||||
0x48,0x30,0x36,0x22,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x31,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x33, | |||||
0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x68,0x6c,0x77, | |||||
0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x68,0x6c,0x77,0x53,0x45,0x4c,0x47,0x50, | |||||
0x49,0x4f,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x31,0x7d | |||||
}; |
@ -0,0 +1,18 @@ | |||||
#define device_config_len 299 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x34,0x2c,0x22,0x64,0x62,0x67,0x50,0x6f,0x72,0x74, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x64,0x62,0x67,0x52,0x58,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31, | |||||
0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x48,0x55,0x41,0x43,0x41,0x4e,0x58,0x49,0x4e, | |||||
0x47,0x5f,0x48,0x38,0x30,0x31,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43, | |||||
0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49, | |||||
0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a, | |||||
0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x34,0x2c,0x22, | |||||
0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x34,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69, | |||||
0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x34,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72, | |||||
0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 141 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x35,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x42,0x4e,0x53,0x5a,0x30,0x31,0x22,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d, | |||||
0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32, | |||||
0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 201 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x36,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x64, | |||||
0x62,0x67,0x53,0x70,0x65,0x65,0x64,0x22,0x3a,0x31,0x39,0x32,0x30,0x30,0x2c,0x22,0x64,0x62,0x67,0x53, | |||||
0x65,0x72,0x69,0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x49, | |||||
0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x52,0x46,0x42,0x52,0x49,0x44,0x47,0x45, | |||||
0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x66,0x62,0x44,0x69,0x72,0x65,0x63,0x74, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x72,0x66,0x62,0x52,0x58,0x47,0x50,0x49,0x4f,0x22,0x3a,0x34,0x2c,0x22,0x72, | |||||
0x66,0x62,0x54,0x58,0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d, | |||||
0x79,0x22,0x3a,0x38,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x33, | |||||
0x7d | |||||
}; |
@ -0,0 +1,29 @@ | |||||
#define device_config_len 506 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x37,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63, | |||||
0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x32,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c, | |||||
0x69,0x63,0x6b,0x33,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x39,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x32, | |||||
0x22,0x3a,0x31,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x34,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a, | |||||
0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x32,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d, | |||||
0x6f,0x64,0x65,0x33,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a, | |||||
0x31,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x31,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x50,0x72,0x65,0x73,0x73,0x32,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x33, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61, | |||||
0x79,0x32,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x33,0x22,0x3a,0x33,0x2c, | |||||
0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f, | |||||
0x46,0x46,0x5f,0x34,0x43,0x48,0x5f,0x50,0x52,0x4f,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50, | |||||
0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x34,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79, | |||||
0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x32,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x33,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,13 @@ | |||||
#define device_config_len 196 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x38,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x42,0x31,0x22,0x2c,0x22, | |||||
0x6c,0x69,0x74,0x43,0x68,0x46,0x61,0x63,0x74,0x6f,0x72,0x34,0x22,0x3a,0x30,0x2e,0x31,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x46,0x61,0x63,0x74,0x6f,0x72,0x35,0x22,0x3a,0x30,0x2e,0x31,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x31,0x2c,0x22,0x6d,0x79,0x43,0x68,0x69,0x70, | |||||
0x73,0x22,0x3a,0x32,0x2c,0x22,0x6d,0x79,0x44,0x43,0x4b,0x49,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34, | |||||
0x2c,0x22,0x6d,0x79,0x44,0x49,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6d,0x79,0x4d,0x61, | |||||
0x70,0x70,0x69,0x6e,0x67,0x22,0x3a,0x22,0x34,0x33,0x35,0x30,0x31,0x22,0x2c,0x22,0x6d,0x79,0x4d,0x6f, | |||||
0x64,0x65,0x6c,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 177 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x32,0x39,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x4c,0x45,0x44,0x22,0x2c, | |||||
0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f, | |||||
0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x34,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f,0x76, | |||||
0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 220 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x30,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63, | |||||
0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22, | |||||
0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67, | |||||
0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64, | |||||
0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x31,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x54,0x31,0x5f, | |||||
0x31,0x43,0x48,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,22 @@ | |||||
#define device_config_len 368 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x31,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63, | |||||
0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50, | |||||
0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x39,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e, | |||||
0x67,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e, | |||||
0x67,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f, | |||||
0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x32,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72, | |||||
0x65,0x73,0x73,0x31,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76, | |||||
0x69,0x63,0x65,0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x54, | |||||
0x31,0x5f,0x32,0x43,0x48,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a, | |||||
0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54, | |||||
0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,29 @@ | |||||
#define device_config_len 517 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x32,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63, | |||||
0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x32,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62, | |||||
0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c, | |||||
0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b, | |||||
0x32,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x39,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x32, | |||||
0x22,0x3a,0x31,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x30,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x32,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x31,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x32,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a, | |||||
0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x32,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x50, | |||||
0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x31,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x32,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79, | |||||
0x31,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x32,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46, | |||||
0x46,0x5f,0x54,0x31,0x5f,0x33,0x43,0x48,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f, | |||||
0x31,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x34,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x32,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 134 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x52,0x46,0x22,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67, | |||||
0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 129 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x34,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x57,0x49,0x4f,0x4e,0x5f,0x35,0x30,0x30,0x35,0x35,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 128 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x35,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x45,0x58,0x53,0x5f,0x57,0x49,0x46,0x49,0x5f,0x52,0x45,0x4c,0x41,0x59,0x5f,0x56,0x33,0x31, | |||||
0x22,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x52,0x65,0x73,0x65,0x74,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54, | |||||
0x79,0x70,0x65,0x30,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 241 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x36,0x2c,0x22,0x64,0x62,0x67,0x50,0x6f,0x72,0x74, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x64,0x62,0x67,0x52,0x58,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31, | |||||
0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x48,0x55,0x41,0x43,0x41,0x4e,0x58,0x49,0x4e, | |||||
0x47,0x5f,0x48,0x38,0x30,0x32,0x22,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x34,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f, | |||||
0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d, | |||||
0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32, | |||||
0x7d | |||||
}; |
@ -0,0 +1,7 @@ | |||||
#define device_config_len 78 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x37,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x56,0x39,0x32,0x36,0x31,0x46,0x22,0x2c,0x22,0x76, | |||||
0x39,0x32,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x76,0x39,0x32,0x47,0x50,0x49, | |||||
0x4f,0x22,0x3a,0x32,0x2c,0x22,0x76,0x39,0x32,0x4c,0x6f,0x67,0x69,0x63,0x22,0x3a,0x31,0x7d | |||||
}; |
@ -0,0 +1,8 @@ | |||||
#define device_config_len 98 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x38,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x45,0x43,0x48,0x31,0x35,0x36,0x30,0x22,0x2c,0x22, | |||||
0x65,0x63,0x68,0x43,0x4c,0x4b,0x47,0x50,0x49,0x4f,0x22,0x3a,0x34,0x2c,0x22,0x65,0x63,0x68,0x45,0x6e, | |||||
0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x65,0x63,0x68,0x4c,0x6f,0x67,0x69,0x63,0x22,0x3a, | |||||
0x31,0x2c,0x22,0x65,0x63,0x68,0x4d,0x49,0x53,0x4f,0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x7d | |||||
}; |
@ -0,0 +1,13 @@ | |||||
#define device_config_len 200 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x33,0x39,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x54,0x49,0x4e,0x4b,0x45,0x52,0x4d,0x41,0x4e,0x5f,0x45,0x53,0x50,0x55,0x52,0x4e,0x41,0x5f, | |||||
0x48,0x30,0x38,0x22,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x31,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x33, | |||||
0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x68,0x6c,0x77, | |||||
0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x68,0x6c,0x77,0x53,0x45,0x4c,0x47,0x50, | |||||
0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 203 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31, | |||||
0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4d,0x41,0x4e,0x43,0x41,0x56,0x45,0x4d,0x41,0x44,0x45,0x5f,0x45,0x53,0x50,0x4c,0x49,0x56, | |||||
0x45,0x22,0x2c,0x22,0x64,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x64,0x73, | |||||
0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22, | |||||
0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 178 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x49,0x4e,0x54,0x45,0x52,0x4d,0x49,0x54,0x54,0x45,0x43,0x48,0x5f,0x51,0x55,0x49,0x4e,0x4c, | |||||
0x45,0x44,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x65, | |||||
0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f, | |||||
0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a, | |||||
0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,18 @@ | |||||
#define device_config_len 285 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x32,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4d,0x41,0x47,0x49,0x43,0x48,0x4f,0x4d,0x45,0x5f,0x4c,0x45,0x44,0x5f,0x43,0x4f,0x4e,0x54, | |||||
0x52,0x4f,0x4c,0x4c,0x45,0x52,0x5f,0x32,0x30,0x22,0x2c,0x22,0x69,0x72,0x45,0x6e,0x61,0x62,0x6c,0x65, | |||||
0x64,0x22,0x3a,0x31,0x2c,0x22,0x69,0x72,0x47,0x50,0x49,0x4f,0x22,0x3a,0x34,0x2c,0x22,0x69,0x72,0x53, | |||||
0x65,0x74,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31,0x22, | |||||
0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f, | |||||
0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65, | |||||
0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 242 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x33,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x52,0x49,0x4c,0x55,0x58,0x5f,0x41,0x4c,0x5f,0x4c,0x43,0x30,0x36,0x22,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68, | |||||
0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f, | |||||
0x32,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31, | |||||
0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x34,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63, | |||||
0x32,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x34,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d, | |||||
0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a, | |||||
0x32,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 134 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x34,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x58,0x45,0x4e,0x4f,0x4e,0x5f,0x53,0x4d,0x5f,0x50,0x57,0x37,0x30,0x32,0x55,0x22,0x2c, | |||||
0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67, | |||||
0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 253 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x35,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x55,0x54,0x48,0x4f,0x4d,0x45,0x54,0x49,0x4f,0x4e,0x5f,0x4c,0x59,0x54,0x38,0x32,0x36, | |||||
0x36,0x22,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22, | |||||
0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43, | |||||
0x68,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x34,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49, | |||||
0x4f,0x33,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x45,0x6e,0x61,0x62,0x6c,0x65, | |||||
0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x69,0x74,0x45,0x6e,0x61,0x62,0x6c,0x65,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72, | |||||
0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,11 @@ | |||||
#define device_config_len 152 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x36,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x52,0x49,0x4c,0x55,0x58,0x5f,0x45,0x32,0x37,0x22,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72, | |||||
0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x31,0x2c,0x22,0x6d,0x79,0x43,0x68,0x69,0x70,0x73,0x22,0x3a, | |||||
0x31,0x2c,0x22,0x6d,0x79,0x44,0x43,0x4b,0x49,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6d, | |||||
0x79,0x44,0x49,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6d,0x79,0x4d,0x61,0x70,0x70,0x69, | |||||
0x6e,0x67,0x22,0x3a,0x22,0x30,0x31,0x32,0x33,0x22,0x2c,0x22,0x6d,0x79,0x4d,0x6f,0x64,0x65,0x6c,0x22, | |||||
0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,13 @@ | |||||
#define device_config_len 200 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x37,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x39,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31, | |||||
0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x59,0x4a,0x5a,0x4b,0x5f,0x53,0x57,0x49,0x54,0x43,0x48,0x5f,0x32,0x43,0x48,0x22,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67, | |||||
0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79, | |||||
0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 246 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x38,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x39,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65, | |||||
0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x4d,0x6f,0x64,0x65,0x32,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x32,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x44,0x55,0x41,0x4c, | |||||
0x5f,0x52,0x32,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 247 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x34,0x39,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x38,0x43,0x48,0x22,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50, | |||||
0x49,0x4f,0x33,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x34,0x22,0x3a,0x31,0x32, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x35,0x22,0x3a,0x31,0x33,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x36,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x37,0x22,0x3a, | |||||
0x31,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x32,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x33,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54, | |||||
0x79,0x70,0x65,0x34,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x35,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x36,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79, | |||||
0x70,0x65,0x37,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 178 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x52,0x49,0x4c,0x55,0x58,0x5f,0x41,0x4c,0x5f,0x4c,0x43,0x30,0x31,0x22,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47, | |||||
0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32, | |||||
0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f, | |||||
0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a, | |||||
0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 241 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x52,0x49,0x4c,0x55,0x58,0x5f,0x41,0x4c,0x5f,0x4c,0x43,0x31,0x31,0x22,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47, | |||||
0x50,0x49,0x4f,0x31,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32,0x22, | |||||
0x3a,0x31,0x34,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x34,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f, | |||||
0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x32, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x34,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74, | |||||
0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d, | |||||
0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32, | |||||
0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 210 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x32,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x52,0x49,0x4c,0x55,0x58,0x5f,0x41,0x4c,0x5f,0x4c,0x43,0x30,0x32,0x22,0x2c,0x22,0x6c, | |||||
0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68, | |||||
0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32, | |||||
0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x35, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63, | |||||
0x33,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x50,0x72, | |||||
0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 210 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4b,0x4d,0x43,0x5f,0x37,0x30,0x30,0x31,0x31,0x22,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x31, | |||||
0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x47,0x50,0x49,0x4f,0x22,0x3a, | |||||
0x34,0x2c,0x22,0x68,0x6c,0x77,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x68,0x6c, | |||||
0x77,0x53,0x45,0x4c,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x32,0x2c,0x22,0x68,0x6c,0x77,0x56,0x6f,0x6c, | |||||
0x52,0x65,0x73,0x55,0x70,0x22,0x3a,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x2c,0x22,0x6c,0x65,0x64,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22, | |||||
0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,20 @@ | |||||
#define device_config_len 334 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x61,0x6e,0x61,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x62,0x6f,0x61, | |||||
0x72,0x64,0x22,0x3a,0x35,0x34,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c, | |||||
0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x4c,0x6e,0x67,0x43,0x6c, | |||||
0x69,0x63,0x6b,0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69, | |||||
0x63,0x65,0x22,0x3a,0x22,0x47,0x49,0x5a,0x57,0x49,0x54,0x53,0x5f,0x57,0x49,0x54,0x54,0x59,0x5f,0x43, | |||||
0x4c,0x4f,0x55,0x44,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x31, | |||||
0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x33, | |||||
0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69, | |||||
0x74,0x43,0x68,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x43,0x68,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x69,0x74,0x50,0x72,0x6f,0x76,0x69,0x64,0x65, | |||||
0x72,0x22,0x3a,0x32,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x31,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 174 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x35,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x36,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x45,0x55,0x52,0x4f,0x4d,0x41,0x54,0x45,0x5f,0x57,0x49,0x46,0x49,0x5f,0x53,0x54,0x45, | |||||
0x43,0x4b,0x45,0x52,0x5f,0x53,0x43,0x48,0x55,0x4b,0x4f,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x32,0x2c, | |||||
0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f, | |||||
0x67,0x69,0x63,0x31,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,17 @@ | |||||
#define device_config_len 271 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x36,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x54,0x4f,0x4e,0x42,0x55,0x58,0x5f,0x50,0x4f,0x57,0x45,0x52,0x53,0x54,0x52,0x49,0x50,0x30, | |||||
0x32,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22, | |||||
0x3a,0x31,0x33,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f, | |||||
0x34,0x22,0x3a,0x31,0x36,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x31,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65, | |||||
0x32,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x33,0x22,0x3a,0x31,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x54,0x79,0x70,0x65,0x34,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 129 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x37,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x36,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x4c,0x49,0x4e,0x47,0x41,0x4e,0x5f,0x53,0x57,0x41,0x31,0x22,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 129 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x38,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x48,0x45,0x59,0x47,0x4f,0x5f,0x48,0x59,0x30,0x32,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a, | |||||
0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,15 @@ | |||||
#define device_config_len 232 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x35,0x39,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x4d,0x41,0x58,0x43,0x49,0x4f,0x5f,0x57,0x55,0x53,0x30,0x30,0x32,0x53,0x22,0x2c,0x22,0x68, | |||||
0x6c,0x77,0x43,0x46,0x31,0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x47, | |||||
0x50,0x49,0x4f,0x22,0x3a,0x34,0x2c,0x22,0x68,0x6c,0x77,0x43,0x75,0x72,0x52,0x65,0x73,0x22,0x3a,0x30, | |||||
0x2e,0x30,0x30,0x32,0x2c,0x22,0x68,0x6c,0x77,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c, | |||||
0x22,0x68,0x6c,0x77,0x53,0x45,0x4c,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x32,0x2c,0x22,0x68,0x6c,0x77, | |||||
0x56,0x6f,0x6c,0x52,0x65,0x73,0x55,0x70,0x22,0x3a,0x32,0x30,0x30,0x30,0x30,0x30,0x30,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 242 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x59,0x49,0x44,0x49,0x41,0x4e,0x5f,0x58,0x53,0x53,0x53,0x41,0x30,0x35,0x22,0x2c,0x22, | |||||
0x68,0x6c,0x77,0x43,0x46,0x31,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x68,0x6c,0x77,0x43, | |||||
0x46,0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x68,0x6c,0x77,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x68,0x6c,0x77,0x53,0x45,0x4c,0x47,0x50,0x49,0x4f,0x22,0x3a,0x33,0x2c,0x22, | |||||
0x68,0x6c,0x77,0x56,0x6f,0x6c,0x52,0x65,0x73,0x55,0x70,0x22,0x3a,0x32,0x34,0x30,0x30,0x30,0x30,0x30, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50, | |||||
0x49,0x4f,0x32,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a, | |||||
0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 133 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x31,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x54,0x4f,0x4e,0x42,0x55,0x58,0x5f,0x58,0x53,0x53,0x53,0x41,0x30,0x36,0x22,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69, | |||||
0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 135 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x35,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x52,0x45,0x45,0x4e,0x5f,0x45,0x53,0x50,0x38,0x32,0x36,0x36,0x52,0x45,0x4c,0x41,0x59, | |||||
0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x34,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,19 @@ | |||||
#define device_config_len 317 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x33,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43, | |||||
0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x32,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x43,0x6c, | |||||
0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67,0x4c,0x6e,0x67,0x43,0x6c, | |||||
0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f, | |||||
0x64,0x65,0x32,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x52, | |||||
0x65,0x6c,0x61,0x79,0x32,0x22,0x3a,0x32,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x49, | |||||
0x4b,0x45,0x5f,0x45,0x53,0x50,0x49,0x4b,0x45,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31, | |||||
0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x36,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x32,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 215 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x34,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63, | |||||
0x6b,0x30,0x22,0x3a,0x31,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22, | |||||
0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67, | |||||
0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64, | |||||
0x65,0x30,0x22,0x3a,0x36,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x41,0x52,0x4e,0x49,0x45,0x58,0x5f,0x53,0x57,0x49,0x46,0x49,0x54,0x43,0x48,0x22, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x31,0x7d | |||||
}; |
@ -0,0 +1,9 @@ | |||||
#define device_config_len 101 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x35,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x45,0x53,0x50,0x30,0x31,0x53,0x5f,0x52,0x45,0x4c, | |||||
0x41,0x59,0x5f,0x56,0x34,0x30,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30, | |||||
0x7d | |||||
}; |
@ -0,0 +1,7 @@ | |||||
#define device_config_len 76 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x36,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x45,0x53,0x50,0x30,0x31,0x53,0x5f,0x52,0x47,0x42, | |||||
0x4c,0x45,0x44,0x5f,0x56,0x31,0x30,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,9 @@ | |||||
#define device_config_len 109 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x37,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x48,0x45,0x4c,0x54,0x45,0x43,0x5f,0x54,0x4f,0x55,0x43,0x48,0x52,0x45,0x4c,0x41,0x59, | |||||
0x22,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,8 @@ | |||||
#define device_config_len 90 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x38,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x45,0x53,0x50,0x30,0x31,0x53,0x5f,0x44,0x48,0x54, | |||||
0x31,0x31,0x5f,0x56,0x31,0x30,0x22,0x2c,0x22,0x64,0x68,0x74,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x64,0x68,0x74,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x64,0x68,0x74, | |||||
0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x31,0x31,0x7d | |||||
}; |
@ -0,0 +1,7 @@ | |||||
#define device_config_len 76 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x36,0x39,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x45,0x53,0x50,0x30,0x31,0x53,0x5f,0x44,0x53,0x31, | |||||
0x38,0x42,0x32,0x30,0x5f,0x56,0x31,0x30,0x22,0x2c,0x22,0x64,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x64,0x73,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 251 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x62,0x67,0x53,0x65,0x72,0x69, | |||||
0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x5a,0x48,0x49,0x4c, | |||||
0x44,0x45,0x5f,0x45,0x55,0x34,0x34,0x5f,0x57,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31, | |||||
0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x33,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f, | |||||
0x34,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65, | |||||
0x32,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x33,0x22,0x3a,0x30,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x54,0x79,0x70,0x65,0x34,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 179 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x31,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x63,0x73,0x65,0x45,0x6e,0x61,0x62, | |||||
0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x63,0x73,0x65,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x2c,0x22, | |||||
0x64,0x62,0x67,0x53,0x65,0x72,0x69,0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x50,0x4f,0x57,0x5f, | |||||
0x52,0x32,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,14 @@ | |||||
#define device_config_len 213 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x32,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43, | |||||
0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x31,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x31,0x22, | |||||
0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74, | |||||
0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a, | |||||
0x22,0x4c,0x55,0x41,0x4e,0x49,0x5f,0x48,0x56,0x49,0x4f,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50, | |||||
0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 126 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x33,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x41,0x4c,0x4c,0x4e,0x45,0x54,0x5f,0x34,0x44,0x55,0x49,0x4e,0x4f,0x5f,0x49,0x4f,0x54,0x5f, | |||||
0x57,0x4c,0x41,0x4e,0x5f,0x52,0x45,0x4c,0x41,0x49,0x53,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x52,0x65, | |||||
0x73,0x65,0x74,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x30,0x22,0x3a,0x32,0x7d | |||||
}; |
@ -0,0 +1,16 @@ | |||||
#define device_config_len 251 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x34,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x32,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x54,0x4f,0x4e,0x42,0x55,0x58,0x5f,0x4d,0x4f,0x53,0x51,0x55,0x49,0x54,0x4f,0x5f,0x4b,0x49, | |||||
0x4c,0x4c,0x45,0x52,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c, | |||||
0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x34,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50, | |||||
0x49,0x4f,0x32,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31, | |||||
0x36,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x32, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x30,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x38,0x2c,0x22,0x6c,0x65,0x64,0x52,0x65,0x6c,0x61,0x79, | |||||
0x31,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x35,0x2c,0x22,0x72, | |||||
0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 140 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x35,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x4e,0x45,0x4f,0x5f,0x43,0x4f,0x4f,0x4c,0x43,0x41,0x4d,0x5f,0x4e,0x41,0x53,0x5f,0x57, | |||||
0x52,0x30,0x31,0x57,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,19 @@ | |||||
#define device_config_len 302 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x36,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x50,0x49,0x4c,0x4f,0x54,0x41,0x4b,0x5f,0x45,0x53,0x50,0x5f,0x44,0x49,0x4e,0x5f,0x56,0x31, | |||||
0x22,0x2c,0x22,0x64,0x69,0x67,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x64,0x69, | |||||
0x67,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x36,0x2c,0x22,0x64,0x69,0x67,0x4d,0x6f,0x64,0x65,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x64,0x73,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x64, | |||||
0x73,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x69,0x32,0x63,0x45,0x6e,0x61,0x62,0x6c,0x65, | |||||
0x22,0x3a,0x31,0x2c,0x22,0x69,0x32,0x63,0x53,0x43,0x4c,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x69,0x32,0x63,0x53,0x44,0x41,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x65,0x64, | |||||
0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x72,0x66,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x72, | |||||
0x66,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35,0x2c,0x22,0x72,0x6c,0x79, | |||||
0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x31,0x22,0x3a, | |||||
0x30,0x7d | |||||
}; |
@ -0,0 +1,24 @@ | |||||
#define device_config_len 412 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x37,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x36,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x33,0x2c,0x22,0x64,0x62,0x67,0x53,0x65,0x72, | |||||
0x69,0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x45,0x53,0x54, | |||||
0x49,0x4e,0x4b,0x5f,0x57,0x49,0x46,0x49,0x5f,0x50,0x4f,0x57,0x45,0x52,0x5f,0x53,0x54,0x52,0x49,0x50, | |||||
0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65,0x64,0x47, | |||||
0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x32,0x22,0x3a, | |||||
0x33,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x35,0x2c,0x22,0x6c,0x65,0x64,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22, | |||||
0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x32,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65, | |||||
0x64,0x4c,0x6f,0x67,0x69,0x63,0x33,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4d,0x6f,0x64,0x65,0x30, | |||||
0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65, | |||||
0x64,0x4d,0x6f,0x64,0x65,0x32,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4d,0x6f,0x64,0x65,0x33,0x22, | |||||
0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65, | |||||
0x64,0x52,0x65,0x6c,0x61,0x79,0x32,0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x52,0x65,0x6c,0x61,0x79, | |||||
0x33,0x22,0x3a,0x33,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x34,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49, | |||||
0x4f,0x32,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x33,0x22,0x3a,0x31,0x35,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70, | |||||
0x65,0x31,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x32,0x22,0x3a,0x30,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x33,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 167 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x38,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x31,0x33,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x36,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64, | |||||
0x65,0x31,0x22,0x3a,0x36,0x2c,0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x31,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x42,0x48,0x5f,0x4f,0x4e,0x4f,0x46,0x52,0x45,0x22,0x2c,0x22,0x72,0x6c,0x79,0x47, | |||||
0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x35, | |||||
0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79, | |||||
0x70,0x65,0x31,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,19 @@ | |||||
#define device_config_len 316 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x37,0x39,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x63,0x75,0x72,0x52,0x61,0x74, | |||||
0x69,0x6f,0x22,0x3a,0x32,0x35,0x37,0x34,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22, | |||||
0x42,0x4c,0x49,0x54,0x5a,0x57,0x4f,0x4c,0x46,0x5f,0x42,0x57,0x53,0x48,0x50,0x32,0x22,0x2c,0x22,0x68, | |||||
0x6c,0x77,0x43,0x46,0x31,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46, | |||||
0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x68,0x6c,0x77,0x43,0x75,0x72,0x4c,0x65,0x76,0x65,0x6c, | |||||
0x22,0x3a,0x30,0x2c,0x22,0x68,0x6c,0x77,0x49,0x6e,0x74,0x22,0x3a,0x32,0x2c,0x22,0x68,0x6c,0x77,0x53, | |||||
0x45,0x4c,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x32,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65, | |||||
0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63, | |||||
0x31,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x34,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x52,0x65,0x6c,0x61,0x79,0x31,0x22,0x3a,0x30,0x2c,0x22,0x70,0x77,0x72,0x52,0x61,0x74,0x69, | |||||
0x6f,0x22,0x3a,0x33,0x34,0x31,0x34,0x32,0x39,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30, | |||||
0x22,0x3a,0x31,0x35,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x76, | |||||
0x6f,0x6c,0x52,0x61,0x74,0x69,0x6f,0x22,0x3a,0x33,0x31,0x33,0x34,0x30,0x30,0x7d | |||||
}; |
@ -0,0 +1,15 @@ | |||||
#define device_config_len 224 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x30,0x2c,0x22,0x62,0x74,0x6e,0x43,0x6c,0x69,0x63, | |||||
0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x44,0x62,0x6c,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22, | |||||
0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x34,0x2c,0x22,0x62,0x74,0x6e, | |||||
0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4c,0x6e,0x67, | |||||
0x4c,0x6e,0x67,0x43,0x6c,0x69,0x63,0x6b,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64, | |||||
0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x50,0x72,0x65,0x73,0x73,0x30,0x22,0x3a,0x31,0x2c, | |||||
0x22,0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63, | |||||
0x65,0x22,0x3a,0x22,0x54,0x49,0x4e,0x4b,0x45,0x52,0x4d,0x41,0x4e,0x5f,0x45,0x53,0x50,0x55,0x52,0x4e, | |||||
0x41,0x5f,0x53,0x57,0x49,0x54,0x43,0x48,0x22,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22, | |||||
0x3a,0x32,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x30,0x2c,0x22,0x72,0x6c, | |||||
0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30, | |||||
0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,12 @@ | |||||
#define device_config_len 176 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x31,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22,0x62, | |||||
0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x63,0x73,0x65,0x45,0x6e,0x61,0x62, | |||||
0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x63,0x73,0x65,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x2c,0x22, | |||||
0x64,0x62,0x67,0x53,0x65,0x72,0x69,0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65, | |||||
0x22,0x3a,0x22,0x49,0x54,0x45,0x41,0x44,0x5f,0x53,0x4f,0x4e,0x4f,0x46,0x46,0x5f,0x53,0x33,0x31,0x22, | |||||
0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x6c,0x65,0x64,0x4c, | |||||
0x6f,0x67,0x69,0x63,0x30,0x22,0x3a,0x31,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a, | |||||
0x31,0x32,0x2c,0x22,0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x7d | |||||
}; |
@ -0,0 +1,7 @@ | |||||
#define device_config_len 76 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x32,0x2c,0x22,0x64,0x62,0x67,0x53,0x65,0x72,0x69, | |||||
0x61,0x6c,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x53,0x54,0x4d,0x5f, | |||||
0x52,0x45,0x4c,0x41,0x59,0x22,0x2c,0x22,0x72,0x6c,0x79,0x44,0x75,0x6d,0x6d,0x79,0x22,0x3a,0x32,0x2c, | |||||
0x22,0x72,0x6c,0x79,0x50,0x72,0x6f,0x76,0x69,0x64,0x65,0x72,0x22,0x3a,0x34,0x7d | |||||
}; |
@ -0,0 +1,20 @@ | |||||
#define device_config_len 330 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x33,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x31,0x33,0x2c,0x22,0x62,0x74,0x6e,0x4d,0x6f,0x64,0x65,0x30,0x22,0x3a,0x32,0x2c,0x22, | |||||
0x62,0x74,0x6e,0x52,0x65,0x6c,0x61,0x79,0x30,0x22,0x3a,0x30,0x2c,0x22,0x63,0x75,0x72,0x52,0x61,0x74, | |||||
0x69,0x6f,0x22,0x3a,0x32,0x35,0x37,0x34,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22, | |||||
0x56,0x41,0x4e,0x5a,0x41,0x56,0x41,0x4e,0x5a,0x55,0x5f,0x53,0x4d,0x41,0x52,0x54,0x5f,0x57,0x49,0x46, | |||||
0x49,0x5f,0x50,0x4c,0x55,0x47,0x5f,0x4d,0x49,0x4e,0x49,0x22,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x31, | |||||
0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x34,0x2c,0x22,0x68,0x6c,0x77,0x43,0x46,0x47,0x50,0x49,0x4f,0x22, | |||||
0x3a,0x35,0x2c,0x22,0x68,0x6c,0x77,0x43,0x75,0x72,0x4c,0x65,0x76,0x65,0x6c,0x22,0x3a,0x30,0x2c,0x22, | |||||
0x68,0x6c,0x77,0x49,0x6e,0x74,0x22,0x3a,0x32,0x2c,0x22,0x68,0x6c,0x77,0x53,0x45,0x4c,0x47,0x50,0x49, | |||||
0x4f,0x22,0x3a,0x33,0x2c,0x22,0x6c,0x65,0x64,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x32,0x2c,0x22,0x6c, | |||||
0x65,0x64,0x47,0x50,0x49,0x4f,0x31,0x22,0x3a,0x30,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63, | |||||
0x30,0x22,0x3a,0x31,0x2c,0x22,0x6c,0x65,0x64,0x4c,0x6f,0x67,0x69,0x63,0x31,0x22,0x3a,0x31,0x2c,0x22, | |||||
0x6c,0x65,0x64,0x4d,0x6f,0x64,0x65,0x31,0x22,0x3a,0x34,0x2c,0x22,0x6c,0x65,0x64,0x52,0x65,0x6c,0x61, | |||||
0x79,0x31,0x22,0x3a,0x30,0x2c,0x22,0x70,0x77,0x72,0x52,0x61,0x74,0x69,0x6f,0x22,0x3a,0x33,0x34,0x31, | |||||
0x34,0x32,0x39,0x30,0x2c,0x22,0x72,0x6c,0x79,0x47,0x50,0x49,0x4f,0x30,0x22,0x3a,0x31,0x35,0x2c,0x22, | |||||
0x72,0x6c,0x79,0x54,0x79,0x70,0x65,0x30,0x22,0x3a,0x30,0x2c,0x22,0x76,0x6f,0x6c,0x52,0x61,0x74,0x69, | |||||
0x6f,0x22,0x3a,0x33,0x31,0x33,0x34,0x30,0x30,0x7d | |||||
}; |
@ -0,0 +1,7 @@ | |||||
#define device_config_len 61 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x34,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22, | |||||
0x3a,0x22,0x47,0x45,0x4e,0x45,0x52,0x49,0x43,0x5f,0x47,0x45,0x49,0x47,0x45,0x52,0x5f,0x43,0x4f,0x55, | |||||
0x4e,0x54,0x45,0x52,0x22,0x2c,0x22,0x67,0x65,0x69,0x45,0x6e,0x61,0x62,0x6c,0x65,0x64,0x22,0x3a,0x31, | |||||
0x7d | |||||
}; |
@ -0,0 +1,10 @@ | |||||
#define device_config_len 136 | |||||
const uint8_t device_config[] PROGMEM = { | |||||
0x7b,0x22,0x62,0x6f,0x61,0x72,0x64,0x22,0x3a,0x38,0x35,0x2c,0x22,0x62,0x74,0x6e,0x47,0x50,0x49,0x4f, | |||||
0x30,0x22,0x3a,0x30,0x2c,0x22,0x64,0x65,0x76,0x69,0x63,0x65,0x22,0x3a,0x22,0x54,0x49,0x4e,0x4b,0x45, | |||||
0x52,0x4d,0x41,0x4e,0x5f,0x52,0x46,0x4d,0x36,0x39,0x47,0x57,0x22,0x2c,0x22,0x72,0x66,0x6d,0x36,0x39, | |||||
0x43,0x53,0x47,0x50,0x49,0x4f,0x22,0x3a,0x31,0x35,0x2c,0x22,0x72,0x66,0x6d,0x36,0x39,0x45,0x6e,0x61, | |||||
0x62,0x6c,0x65,0x64,0x22,0x3a,0x31,0x2c,0x22,0x72,0x66,0x6d,0x36,0x39,0x48,0x57,0x22,0x3a,0x30,0x2c, | |||||
0x22,0x72,0x66,0x6d,0x36,0x39,0x49,0x52,0x51,0x47,0x50,0x49,0x4f,0x22,0x3a,0x35,0x2c,0x22,0x72,0x66, | |||||
0x6d,0x36,0x39,0x52,0x65,0x73,0x65,0x74,0x47,0x50,0x49,0x4f,0x22,0x3a,0x37,0x7d | |||||
}; |
@ -1,6 +1,5 @@ | |||||
#define APP_NAME "ESPURNA" | #define APP_NAME "ESPURNA" | ||||
#define APP_VERSION "1.13.1z" | |||||
#define APP_REVISION "d543fee" | |||||
#define APP_VERSION "1.13.2a" | |||||
#define APP_AUTHOR "xose.perez@gmail.com" | #define APP_AUTHOR "xose.perez@gmail.com" | ||||
#define APP_WEBSITE "http://tinkerman.cat" | #define APP_WEBSITE "http://tinkerman.cat" | ||||
#define CFG_VERSION 4 | #define CFG_VERSION 4 |