mirror of
https://github.com/stevenhowes/MXDiag.git
synced 2026-05-27 00:03:39 +01:00
Initial Changes
This commit is contained in:
+363
@@ -0,0 +1,363 @@
|
|||||||
|
#include <ESP8266WiFi.h>
|
||||||
|
#include <WiFiClient.h>
|
||||||
|
#include <ESP8266WebServer.h>
|
||||||
|
|
||||||
|
|
||||||
|
#include "jquery.h"
|
||||||
|
#include "index.h"
|
||||||
|
#include "svg.h"
|
||||||
|
#include "javascript.h"
|
||||||
|
#include "manifest.h"
|
||||||
|
#include "icon.h"
|
||||||
|
|
||||||
|
#include "dtc.h"
|
||||||
|
|
||||||
|
// Current state and previous state of the pin
|
||||||
|
int oldpin = 1;
|
||||||
|
int currentpin = 1;
|
||||||
|
|
||||||
|
// timenow of current state change, and previous
|
||||||
|
unsigned long timenow;
|
||||||
|
unsigned long statestart;
|
||||||
|
|
||||||
|
unsigned int diagcount = 0;
|
||||||
|
int firstpulsedone = 0;
|
||||||
|
|
||||||
|
int serialin = 0;
|
||||||
|
|
||||||
|
// Current diagnostic stage
|
||||||
|
int diagstate = -1;
|
||||||
|
|
||||||
|
String diagstring = "";
|
||||||
|
|
||||||
|
String dtcoutput = "";
|
||||||
|
String statoutput = "Booting...";
|
||||||
|
|
||||||
|
const char *ssid = "MX5Diag";
|
||||||
|
const char *password = "password";
|
||||||
|
|
||||||
|
int waitmilis = 0;
|
||||||
|
|
||||||
|
ESP8266WebServer server(80);
|
||||||
|
|
||||||
|
void handle_jq_js() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "text/javascript", jquery, sizeof(jquery));
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_mx_js() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "text/javascript", mxjs, sizeof(mxjs));
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_manifest_json() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "text/json", manifestjson, sizeof(manifestjson));
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_icon_png() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "image/png", iconpng, sizeof(iconpng));
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_index() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "text/html", indexhtml, sizeof(indexhtml));
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_go_svg() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "image/svg+xml", gosvg, sizeof(gosvg));
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_mz_svg() {
|
||||||
|
server.sendHeader("Content-Encoding","gzip");
|
||||||
|
server.send_P(200, "image/svg+xml", mzsvg, sizeof(mzsvg));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void handle_dtc() {
|
||||||
|
server.send(200, "text/plain", dtcoutput);
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_stat() {
|
||||||
|
server.send(200, "text/plain", statoutput);
|
||||||
|
}
|
||||||
|
|
||||||
|
void handle_run() {
|
||||||
|
server.send(200, "text/plain", "");
|
||||||
|
begindiag();
|
||||||
|
}
|
||||||
|
|
||||||
|
String identifydtc(String dtc)
|
||||||
|
{
|
||||||
|
int found = -1;
|
||||||
|
for(unsigned int i=0; i<(sizeof(dtc_index)/sizeof(dtc_index[0]));i++)
|
||||||
|
{
|
||||||
|
if(dtc_index[i] == dtc.toInt())
|
||||||
|
{
|
||||||
|
found = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(found == -1)
|
||||||
|
return "Unknown";
|
||||||
|
else
|
||||||
|
return dtc_data[found];
|
||||||
|
}
|
||||||
|
|
||||||
|
void physicalsetup()
|
||||||
|
{
|
||||||
|
pinMode(D1, INPUT); // Signal from ECU
|
||||||
|
pinMode(D3, OUTPUT); // Diagnosis enable bin
|
||||||
|
pinMode(LED_BUILTIN, OUTPUT); // Status light
|
||||||
|
|
||||||
|
// Don't turn pull-down transistor on yet
|
||||||
|
digitalWrite(D3, LOW);
|
||||||
|
|
||||||
|
// Set up serial
|
||||||
|
Serial.begin(115200);
|
||||||
|
Serial.println();
|
||||||
|
}
|
||||||
|
|
||||||
|
void wifisetup()
|
||||||
|
{
|
||||||
|
WiFi.softAP(ssid/*, password*/);
|
||||||
|
|
||||||
|
IPAddress myIP = WiFi.softAPIP();
|
||||||
|
Serial.print("AP IP address: ");
|
||||||
|
Serial.println(myIP);
|
||||||
|
|
||||||
|
// Files served - all pre-gzipped to save flash
|
||||||
|
server.on("/jq.js", handle_jq_js);
|
||||||
|
server.on("/", handle_index);
|
||||||
|
server.on("/go.svg", handle_go_svg);
|
||||||
|
server.on("/mz.svg", handle_mz_svg);
|
||||||
|
server.on("/mx.js", handle_mx_js);
|
||||||
|
|
||||||
|
// Make Android web app work nicely
|
||||||
|
server.on("/manifest.json", handle_manifest_json);
|
||||||
|
server.on("/icon.png", handle_icon_png);
|
||||||
|
|
||||||
|
// Dynamic 'files'
|
||||||
|
server.on("/dtc", handle_dtc);
|
||||||
|
server.on("/stat", handle_stat);
|
||||||
|
server.on("/run", handle_run);
|
||||||
|
|
||||||
|
server.begin();
|
||||||
|
}
|
||||||
|
|
||||||
|
void setup()
|
||||||
|
{
|
||||||
|
physicalsetup();
|
||||||
|
wifisetup();
|
||||||
|
statoutput = "MXDiag Online";
|
||||||
|
Serial.println(statoutput);
|
||||||
|
}
|
||||||
|
|
||||||
|
void begindiag()
|
||||||
|
{
|
||||||
|
statoutput = "Turn off ignition";
|
||||||
|
Serial.println(statoutput);
|
||||||
|
|
||||||
|
waitmilis = millis() + 6000;
|
||||||
|
}
|
||||||
|
|
||||||
|
void diag()
|
||||||
|
{
|
||||||
|
// Read the pin once here
|
||||||
|
currentpin = digitalRead(D1);
|
||||||
|
|
||||||
|
if (diagstate == 0) // Default state on boot, waiting for pulse from ECU
|
||||||
|
{
|
||||||
|
// Give a little flash each cycle to show we're OK
|
||||||
|
digitalWrite(LED_BUILTIN, LOW);
|
||||||
|
delay(5);
|
||||||
|
digitalWrite(LED_BUILTIN, HIGH);
|
||||||
|
delay(200);
|
||||||
|
|
||||||
|
// If the pin drops
|
||||||
|
if (currentpin == 0)
|
||||||
|
{
|
||||||
|
// Record when it happens
|
||||||
|
statestart = millis();
|
||||||
|
|
||||||
|
// Move us to the next state
|
||||||
|
diagstate = 1;
|
||||||
|
|
||||||
|
// Mirror the ECU output
|
||||||
|
digitalWrite(LED_BUILTIN, LOW);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (diagstate == 1) // This state is during the ECU greeting pulse
|
||||||
|
{
|
||||||
|
// If the pin comes back up, the pulse is over
|
||||||
|
if (currentpin == 1)
|
||||||
|
{
|
||||||
|
// Mirror ECU ouptut
|
||||||
|
digitalWrite(LED_BUILTIN, HIGH);
|
||||||
|
|
||||||
|
// Record 'now'
|
||||||
|
timenow = millis();
|
||||||
|
|
||||||
|
// Default to returning to the wait (may not be needed)
|
||||||
|
diagstate = 0;
|
||||||
|
|
||||||
|
// Calculate the length of the pulse
|
||||||
|
int pulselength = (timenow - statestart);
|
||||||
|
|
||||||
|
// If it's too short or too long
|
||||||
|
if ((pulselength < 1000) || (pulselength > 5000))
|
||||||
|
{
|
||||||
|
// Go back to wait state
|
||||||
|
diagstate = 0;
|
||||||
|
} else {
|
||||||
|
// If it's our 3000ms goldilocks pulse, move to the next stage
|
||||||
|
statoutput = "ECU Detected";
|
||||||
|
Serial.println(statoutput);
|
||||||
|
diagstate = 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (diagstate == 2) // Waiting for a DTC pule
|
||||||
|
{
|
||||||
|
// If pin goes low we're starting on a pulse
|
||||||
|
if (currentpin == 0)
|
||||||
|
{
|
||||||
|
// Mirror to LED
|
||||||
|
digitalWrite(LED_BUILTIN, LOW);
|
||||||
|
|
||||||
|
// Record when it happens and calculate the length of the silence beforehand
|
||||||
|
timenow = millis();
|
||||||
|
int pulselength = (timenow - statestart);
|
||||||
|
|
||||||
|
// If it's a sensible length
|
||||||
|
if (pulselength > 100)
|
||||||
|
{
|
||||||
|
// If it's gurt then probably next DTC
|
||||||
|
if (pulselength > 3500)
|
||||||
|
{
|
||||||
|
if (firstpulsedone == 1)
|
||||||
|
{
|
||||||
|
// Divider for easy debug
|
||||||
|
diagstring = diagstring + diagcount;
|
||||||
|
|
||||||
|
diagcount = 0;
|
||||||
|
} else {
|
||||||
|
firstpulsedone = 1;
|
||||||
|
Serial.println("STATUS: Begining DTC read");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pulselength > 7500)
|
||||||
|
{
|
||||||
|
// Divider for easy debug
|
||||||
|
Serial.println(diagstring);
|
||||||
|
dtcoutput = dtcoutput + "P" + diagstring + ":" + identifydtc(diagstring) + "<br/>";
|
||||||
|
|
||||||
|
diagstring = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Record when state change occured
|
||||||
|
statestart = millis();
|
||||||
|
|
||||||
|
// Move to 3 (waiting for pulse end)
|
||||||
|
diagstate = 3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (diagstate == 3) // Waits for pulse end
|
||||||
|
{
|
||||||
|
if (currentpin == 1)
|
||||||
|
{
|
||||||
|
// Mirror to LED
|
||||||
|
digitalWrite(LED_BUILTIN, HIGH);
|
||||||
|
|
||||||
|
// Record when it happened
|
||||||
|
timenow = millis();
|
||||||
|
|
||||||
|
// Default to waiting for next pulse
|
||||||
|
diagstate = 2;
|
||||||
|
|
||||||
|
// Calculate pulse length
|
||||||
|
int pulselength = (timenow - statestart);
|
||||||
|
|
||||||
|
// If it's too short or too long
|
||||||
|
if ((pulselength < 300) || (pulselength > 1400))
|
||||||
|
{
|
||||||
|
// Wait for another one
|
||||||
|
diagstate = 2;
|
||||||
|
} else {
|
||||||
|
// 0.4 is short, 1.2 is long so lets split the difference
|
||||||
|
if (pulselength > 800)
|
||||||
|
{
|
||||||
|
// On late Mk1 / Mk2 all codes are 4 digit so we ignore the longs
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
diagcount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Record for silence calculation
|
||||||
|
statestart = millis();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// An error state that stops all comms and shouts lots
|
||||||
|
statoutput = "Diagnostic failure";
|
||||||
|
Serial.println(statoutput);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop()
|
||||||
|
{
|
||||||
|
server.handleClient();
|
||||||
|
|
||||||
|
// Look for instructions
|
||||||
|
if (Serial.available() > 0)
|
||||||
|
{
|
||||||
|
serialin = Serial.read();
|
||||||
|
|
||||||
|
// D for DTC
|
||||||
|
if (serialin == 68)
|
||||||
|
begindiag();
|
||||||
|
|
||||||
|
// F for fan (5 seconds)
|
||||||
|
//if (serialin == 70)
|
||||||
|
// fancycle();// TODO
|
||||||
|
|
||||||
|
// P for fuel pump (5 seconds)
|
||||||
|
//if (serialin == 80)
|
||||||
|
// fuelprime();// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
int left = (waitmilis - millis());
|
||||||
|
|
||||||
|
if( left > 0)
|
||||||
|
{
|
||||||
|
left = left / 1000;
|
||||||
|
statoutput = "Turn off ignition: " + String(left);
|
||||||
|
Serial.println(statoutput);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(waitmilis != 0)
|
||||||
|
{
|
||||||
|
// Turn on diag pin
|
||||||
|
digitalWrite(D3, HIGH);
|
||||||
|
|
||||||
|
statoutput = "Turn on ignition (waiting for ECU)";
|
||||||
|
Serial.println(statoutput);
|
||||||
|
|
||||||
|
// Put us in default 'ready to go' mode
|
||||||
|
diagstate = 0;
|
||||||
|
waitmilis = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(waitmilis == 0)
|
||||||
|
if(diagstate >= 0)
|
||||||
|
diag();
|
||||||
|
|
||||||
|
}
|
||||||
Binary file not shown.
@@ -0,0 +1,73 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# ---------- svg.h ----------
|
||||||
|
gzip --best -k originals/go.svg
|
||||||
|
./bin2hex --i originals/go.svg.gz --o go.svg.hex > /dev/null
|
||||||
|
rm -f originals/go.svg.gz
|
||||||
|
|
||||||
|
gzip --best -k originals/mz.svg
|
||||||
|
./bin2hex --i originals/mz.svg.gz --o mz.svg.hex >/dev/null
|
||||||
|
rm -f originals/mz.svg.gz
|
||||||
|
|
||||||
|
cat svg.h.top go.svg.hex svg.h.mid mz.svg.hex svg.h.tail > ../svg.h
|
||||||
|
rm -f go.svg.hex
|
||||||
|
rm -f mz.svg.hex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ---------- manifest.h ----------
|
||||||
|
gzip --best -k originals/manifest.json
|
||||||
|
./bin2hex --i originals/manifest.json.gz --o manifest.json.hex > /dev/null
|
||||||
|
rm -f originals/manifest.json.gz
|
||||||
|
|
||||||
|
cat manifest.h.top manifest.json.hex manifest.h.tail > ../manifest.h
|
||||||
|
rm -f manifest.json.hex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ---------- icon.h ----------
|
||||||
|
gzip --best -k originals/icon.png
|
||||||
|
./bin2hex --i originals/icon.png.gz --o icon.png.hex > /dev/null
|
||||||
|
rm -f originals/icon.png.gz
|
||||||
|
|
||||||
|
cat icon.h.top icon.png.hex icon.h.tail > ../icon.h
|
||||||
|
rm -f icon.png.hex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ---------- index.h ----------
|
||||||
|
gzip --best -k originals/index.html
|
||||||
|
./bin2hex --i originals/index.html.gz --o index.html.hex > /dev/null
|
||||||
|
rm -f originals/index.html.gz
|
||||||
|
|
||||||
|
cat index.h.top index.html.hex index.h.tail > ../index.h
|
||||||
|
rm -f index.html.hex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ---------- jquery.h ----------
|
||||||
|
gzip --best -k originals/jq.js
|
||||||
|
./bin2hex --i originals/jq.js.gz --o jq.js.hex > /dev/null
|
||||||
|
rm -f originals/jq.js.gz
|
||||||
|
|
||||||
|
cat jquery.h.top jq.js.hex jquery.h.tail > ../jquery.h
|
||||||
|
rm -f jq.js.hex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ---------- javascript.h ----------
|
||||||
|
gzip --best -k originals/mx.js
|
||||||
|
./bin2hex --i originals/mx.js.gz --o mx.js.hex > /dev/null
|
||||||
|
rm -f originals/mx.js.gz
|
||||||
|
|
||||||
|
cat javascript.h.top mx.js.hex javascript.h.tail > ../javascript.h
|
||||||
|
rm -f mx.js.hex
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# ---------- dtc.h ----------
|
||||||
|
echo "// Auto-generated - edit asset file dtc.csv" > ../dtc.h
|
||||||
|
echo const int dtc_index [] PROGMEM = {`./dtc.indexes.sh`}\; >> ../dtc.h
|
||||||
|
echo const char *dtc_data[`./dtc.values.sh | wc -l`] = { >> ../dtc.h
|
||||||
|
./dtc.values.sh >> ../dtc.h
|
||||||
|
echo }\; >> ../dtc.h
|
||||||
+268
@@ -0,0 +1,268 @@
|
|||||||
|
1000,OBD II Monitor Testing Not Completed
|
||||||
|
1001,Unable to Achieve Self-Test Function Or SCP Error
|
||||||
|
1100,MAF Sensor Circuit Intermittent
|
||||||
|
1101,MAF Sensor Circuit Out Of Self-Test Range
|
||||||
|
1102,MAF Sensor Signal Inconsistent With TPS
|
||||||
|
1103,MAF Sensor Signal Inconsistent With Engine Speed
|
||||||
|
1110,MAF Sensor Signal (Dynamic Chamber) Circuit
|
||||||
|
1112,MAF Sensor Circuit Intermittent
|
||||||
|
1113,MAF Sensor Signal (Dynamic Chamber) Circuit
|
||||||
|
1114,MAF Sensor Circuit Low Input
|
||||||
|
1116,ECT Sensor Circuit Out Of Self Test Range
|
||||||
|
1117,ECT Sensor Signal Intermittent
|
||||||
|
1120,TPS Out Of Range Low
|
||||||
|
1121,TPS Signal Not Consistent With MAF Signal
|
||||||
|
1122,Throttle Position Stuck Closed
|
||||||
|
1123,Throttle Position Stuck Open
|
||||||
|
1124,TPS Signal Out Of Self Test Range
|
||||||
|
1125,TPS Signal Intermittent
|
||||||
|
1126,Throttle Position (Narrow Range) Sensor Circuit
|
||||||
|
1127,HO2S Bank 1 Sensor 2 Heater Not On During Key On Engine Running Self Test
|
||||||
|
1128,HO2S Bank 1 Sensor 1 Signals Swapped In Key On Engine Running Self Test
|
||||||
|
1129,Downstream H02S Sensors Swapped
|
||||||
|
1130,HO2S Bank 1 Sensor 1 Not Switching (Fuel Control Limit Reached)
|
||||||
|
1131,HO2S Bank 1 Sensor 1 Signal Below 0.45v (A/F Ratio Too Lean)
|
||||||
|
1132,HO2S Bank 1 Sensor 1 Signal Above 0.45v (A/F Ratio Too Rich)
|
||||||
|
1133,Bank 1 Fuel Control Shifted Lean
|
||||||
|
1134,Bank 1 Fuel Control Shifted Rich
|
||||||
|
1135,HO2S Bank 1 Sensor 1 Heater Circuit Low Input
|
||||||
|
1136,HO2S Bank 1 Sensor 1 Heater Circuit High Input
|
||||||
|
1137,HO2S Bank 1 Sensor 2 Not Switching (Fuel Control Limit Reached)
|
||||||
|
1138,HO2S Bank 1 Sensor 2 Signal Above 0.45v (A/F Ratio Too Rich)
|
||||||
|
1141,HO2S Bank 1 Sensor 2 Heater Circuit Low Input
|
||||||
|
1142,HO2S Bank 1 Sensor 2 Heater Circuit High Input
|
||||||
|
1143,HO2S Bank 1 Sensor 3 Signal Below 0.45v (A/F Ratio Too Lean)
|
||||||
|
1144,HO2S Bank 1 Sensor 3 Signal Above 0.45v (A/F Ratio Too Rich)
|
||||||
|
1150,HO2S Bank 2 Sensor 1 Not Switching (Fuel Control Limit Reached)
|
||||||
|
1151,HO2S Bank 2 Sensor 1 Signal Below 0.45v (A/F Ratio Too Lean)
|
||||||
|
1152,HO2S Bank 2 Sensor 1 Signal Above 0.45v (A/F Ratio Too Rich)
|
||||||
|
1153,Bank 2 Fuel Control Shifted Lean(FAOSC)
|
||||||
|
1154,Bank 2 Fuel Control Shifted Rich (FAOSC)
|
||||||
|
1169,HO2S Bank 1 Sensor 1 Circuit Fixed (Bank 1 Sensor 1)
|
||||||
|
1170,HO2S Bank 1 Sensor 1 Circuit Fixed (Bank 1 Sensor 1)
|
||||||
|
1173,HO2S Bank 2 Sensor 1 Circuit Fixed (Bank 2 Sensor 1)
|
||||||
|
1182,Fuel Shut Off Solenoid Circuit
|
||||||
|
1189,ump Speed Signal
|
||||||
|
1190,Calibration Resistor Out Of Range
|
||||||
|
1191,TP (Controlled) Circuit
|
||||||
|
1194,ECM, PCM, A/D Converter
|
||||||
|
1195,EGR Boost Sensor Circuit
|
||||||
|
1196,Ignition Switch Start Circuit
|
||||||
|
1197,Mileage Switch Circuit
|
||||||
|
1213,Start Injector Circuit
|
||||||
|
1221,Traction Control System
|
||||||
|
1222,Traction Control Output Circuit
|
||||||
|
1226,Control Sleeve Sensor Cicuit
|
||||||
|
1235,Fuel Pump Control Circuit
|
||||||
|
1236,Fuel Pump Control Out Range
|
||||||
|
1248,Turbo Boost Pressure Not Detected
|
||||||
|
1250,ressure Regulator Control Solenoid Circuit
|
||||||
|
1251,Air Mixture Solenoid Circuit
|
||||||
|
1252,ressure Regulator Control Solenoid '2' Circuit
|
||||||
|
1260,Anti-Theft System Signal Detected - Engine Disabled
|
||||||
|
1270,Engine RPM or Vehicle Speed Limit Reached
|
||||||
|
1279,Control Sleeve Sensor Circuit Range/Performance
|
||||||
|
1298,Injector Driver Module Failure
|
||||||
|
1309,Misfire Detection Monitor
|
||||||
|
1312,Injection Pump Timing Actuator Circuit
|
||||||
|
1318,Injection Timing Piston Position Sensor Circuit
|
||||||
|
1319,Injection Timing Piston Position Sensor Circuit Range/Performance
|
||||||
|
1345,No CMP or SGC Signal
|
||||||
|
1351,Ignition Diagnostic Monitor Signal Lost To PCM Or Out Of Range
|
||||||
|
1352,Ignition Coil 'A' Primary Circuit
|
||||||
|
1353,Ignition Coil 'B' Primary Circuit
|
||||||
|
1354,Ignition Coil 'C' Primary Circuit
|
||||||
|
1358,Ignition Diagnostic Monitor Signal Out Of Self Test Range
|
||||||
|
1359,SPOUT Signal Lost To Powertrain Control Module Or Out Of Range
|
||||||
|
1360,Ignition Coil 'A' Secondary Circuit
|
||||||
|
1361,Ignition Coil 'B' Secondary Circuit
|
||||||
|
1362,Ignition Coil 'C' Secondary Circuit
|
||||||
|
1364,Ignition Coil Primary Circuit
|
||||||
|
1365,Ignition Coil Secondary Circuit
|
||||||
|
1382,Camshaft Position Timing Solenoid #1 Circuit
|
||||||
|
1387,Camshaft Position Timing Solenoid #2 Circuit
|
||||||
|
1390,Octane Adjust Shorting Bar Out or Circuit Open
|
||||||
|
1400,DPFE Sensor Circuit Low Input
|
||||||
|
1401,DPFE Sensor Circuit High Input
|
||||||
|
1402,EGR Valve Position Sensor Circuit
|
||||||
|
1405,DPFE Sensor Upstream Hose Off Or Plugged
|
||||||
|
1406,DPFE Sensor Downstream Hose Off Or Plugged
|
||||||
|
1407,No EGR Flow Detected
|
||||||
|
1408,EGR System Flow Out Of Key On Engine Running Self Test Range
|
||||||
|
1409,EGR Vacuum Regulator Solenoid Circuit
|
||||||
|
1410,EGR Boost Solenoid Valve Stuck
|
||||||
|
1412,Exhaust Gas Recirculation Valve Frozen
|
||||||
|
1415,Air Pump Circuit
|
||||||
|
1416,ort Air Circuit
|
||||||
|
1417,ort Air Relief Circuit
|
||||||
|
1418,Split Air #1 Circuit
|
||||||
|
1419,Split Air #2 Circuit
|
||||||
|
1439,Floor Temp Switch Circuit
|
||||||
|
1443,EVAP System Purge Flow Fault
|
||||||
|
1444,EVAP Purge Flow Sensor Circuit Low Voltage
|
||||||
|
1445,EVAP Purge Flow Sensor Circuit High Voltage
|
||||||
|
1446,Evaporative Vacuum Solenoid Circuit
|
||||||
|
1449,Evaporative Check Solenoid Circuit
|
||||||
|
1450,Unable To Bleed Up Fuel Tank Vacuum
|
||||||
|
1451,Canister Vent Solenoid Circuit
|
||||||
|
1455,Fuel Tank Level Sensor Circuit
|
||||||
|
1456,Fuel Tank Temperature Sensor Circuit
|
||||||
|
1457,urge Solenoid Control System
|
||||||
|
1460,Wide Open Throttle A/C Cut-Off Relay Circuit
|
||||||
|
1464,Air Conditioning Control Signal Circuit
|
||||||
|
1473,Fan Circuit Open (VLCM)
|
||||||
|
1474,Fan Control (Primary Winding) Circuit
|
||||||
|
1475,Fan Relay (Low) Circuit
|
||||||
|
1476,Fan Relay (High) Circuit
|
||||||
|
1477,Additional Fan Relay Circuit
|
||||||
|
1479,Fan Control (Condenser Primary) Circuit
|
||||||
|
1485,EGR Vacuum Solenoid Circuit
|
||||||
|
1486,EGR Vent Solenoid Circuit
|
||||||
|
1487,EGR-CHK (Boost) Solenoid Circuit
|
||||||
|
1491,Secondary Switch Solenoid Circuit
|
||||||
|
1492,APLSOL Solenoid Circuit
|
||||||
|
1493,RCNT Solenoid Circuit
|
||||||
|
1495,TCSPL Solenoid Circuit
|
||||||
|
1496,EGR Valve Motor Coil '1' Open or Shorted
|
||||||
|
1497,EGR Valve Motor Coil '2' Open or Shorted
|
||||||
|
1498,EGR Valve Motor Coil '3' Open or Shorted
|
||||||
|
1499,EGR Valve Motor Coil '4' Open or Shorted
|
||||||
|
1500,Vehicle Speed Sensor Intermittent Signal
|
||||||
|
1501,Vehicle Speed Sensor Out Of Self Test Range
|
||||||
|
1502,Vehicle Speed Sensor Circuit Error
|
||||||
|
1504,Idle Air Control Solenoid Circuit Intermittent
|
||||||
|
1505,Idle Air Control System At Adaptive Clip
|
||||||
|
1506,Idle Air Control System Overspeed Detected
|
||||||
|
1507,Idle Air Control System Underspeed Detected
|
||||||
|
1508,Bypass Air Solenoid '1' Circuit
|
||||||
|
1509,Bypass Air Solenoid '2' Circuit
|
||||||
|
1510,Idle Signal Circuit
|
||||||
|
1511,Idle Switch (Electric Control Throttle) Circuit
|
||||||
|
1512,VTCS Fault
|
||||||
|
1515,Electric Current Circuit
|
||||||
|
1521,VRIS Solenoid '1' Circuit
|
||||||
|
1522,VRIS Solenoid '2 Circuit
|
||||||
|
1523,VICS Solenoid Circuit
|
||||||
|
1524,Charge Air Cooler Bypass Solenoid Circuit
|
||||||
|
1525,ABV Vacuum Solenoid Circuit
|
||||||
|
1526,ABV Vent Solenoid Circuit
|
||||||
|
1527,Bypass Air Solenoid (Accelerate Warmup) Circuit
|
||||||
|
1528,Subsidiary Throttle Valve Solenoid Circuit
|
||||||
|
1529,L/C Atmospheric Balance Air Control Valve Circuit
|
||||||
|
1540,ABV System Fault
|
||||||
|
1562,owertrain Control Module +B Voltage Low
|
||||||
|
1566,TCM B+ Voltage Low
|
||||||
|
1569,IMRC Circuit Low
|
||||||
|
1570,IMRC Circuit High
|
||||||
|
1600,Loss Of KAM Power, Circuit Open
|
||||||
|
1601,owertrain Control Module Communication Line To TCM Error
|
||||||
|
1602,owertrain Control Module Communication Line To TCM Error
|
||||||
|
1602,Immobilizer System Communication Error With Powertrain Control Module
|
||||||
|
1603,Immobilizer System Fault
|
||||||
|
1604,Immobilizer System Fault
|
||||||
|
1605,owertrain Control Module Keep Alive Memory Test Error
|
||||||
|
1608,owertrain Control Module (ECM CPU) DTC Test Fault
|
||||||
|
1609,owertrain Control Module (ECM CPU) Knock Sensor Circuit
|
||||||
|
1621,Immobilizer System Fault
|
||||||
|
1622,Immobilizer System Fault
|
||||||
|
1623,Immobilizer System Fault
|
||||||
|
1624,Immobilizer System Fault
|
||||||
|
1627,owertrain Control Module (ECM/TCS) Line Communication Error
|
||||||
|
1628,owertrain Control Module (ECM/TCS) Any Line Communication Error
|
||||||
|
1630,Alternator Regulator #1 Control Circuit
|
||||||
|
1631,Generator Output Voltage Signal (No Output)
|
||||||
|
1632,Battery Voltage Monitor Circuit
|
||||||
|
1633,Battery Overcharge Fault
|
||||||
|
1634,Generator Terminal 'B' Circuit Open
|
||||||
|
1645,Fuel Pump Resistor Switch Circuit
|
||||||
|
1649,Fuel Injection Pump Module
|
||||||
|
1650,ower Steering Pressure Switch Out Of Range Fault
|
||||||
|
1651,ower Steering Pressure Switch Circuit
|
||||||
|
1652,ower Steering Pressure Switch Circuit
|
||||||
|
1680,Metering Oil Pump Failure
|
||||||
|
1682,Metering Oil Pump Failure
|
||||||
|
1683,Metering Oil Pump Temperature Sensor Circuit
|
||||||
|
1684,Metering Oil Pump Position Sensor Circuit
|
||||||
|
1685,Metering Oil Pump Stepping Motor Cont. Circuit
|
||||||
|
1686,Metering Oil Pump Stepping Motor Cont. Circuit
|
||||||
|
1687,Metering Oil Pump Stepping Motor Cont. Circuit
|
||||||
|
1688,Metering Oil Pump Stepping Motor Cont. Circuit
|
||||||
|
1689,Oil Pressure Control Solenoid Circuit
|
||||||
|
1690,Wastegate Solenoid Circuit
|
||||||
|
1691,Turbo Pressure Control Solenoid Circuit
|
||||||
|
1692,Turbo Control Solenoid Circuit
|
||||||
|
1693,Turbo Charge Control Circuit
|
||||||
|
1694,Turbo Charge Relief Circuit
|
||||||
|
1701,Transmission Range Sensor Reverse Engagement Error
|
||||||
|
1702,Transmission Range Sensor Circuit Intermittent
|
||||||
|
1703,Brake On/Off Switch Out Of Self Test Range
|
||||||
|
1705,Transmission Range Sensor Out Of Self Test Range
|
||||||
|
1706,High Vehicle Speed Observed In Park
|
||||||
|
1708,Clutch Switch Circuit
|
||||||
|
1709,Clutch Pedal Position Switch Circuit
|
||||||
|
1710,Transmission Control Module Solenoid/Internal Ground Circuit
|
||||||
|
1711,Transmission Fluid Temperature Sensor Circuit Out Of Self Test Range
|
||||||
|
1713,Transmission Fluid Temperature Sensor Circuit
|
||||||
|
1714,Shift Solenoid '1' Mechanical Fault
|
||||||
|
1715,Shift Solenoid '2' Mechanical Fault
|
||||||
|
1716,Shift Solenoid '3' Mechanical Fault
|
||||||
|
1717,Shift Solenoid '4' Mechanical Fault
|
||||||
|
1718,Transmission Fluid Temperature Sensor Circuit
|
||||||
|
1719,Engine Torque Signal
|
||||||
|
1720,Vehicle Speed Sensor '2' Signal Error
|
||||||
|
1721,Gear 1 Incorrect Ratio
|
||||||
|
1722,Gear 2 Incorrect Ratio
|
||||||
|
1723,Gear 3 Incorrect Ratio
|
||||||
|
1724,Gear 4 Incorrect Ratio
|
||||||
|
1729,Transmission 4x4 Low Switch Error
|
||||||
|
1735,First Gear Switch Circuit Failure
|
||||||
|
1736,Second Gear Switch Circuit Failure
|
||||||
|
1737,Lockup Solenoid
|
||||||
|
1738,Shift Time Error
|
||||||
|
1739,Slip Solenoid
|
||||||
|
1740,Torque Converter Clutch Solenoid Mechanical Fault
|
||||||
|
1741,Torque Converter Clutch Control Electrical Fault
|
||||||
|
1742,Torque Converter Clutch Solenoid Shorted
|
||||||
|
1743,Torque Converter Clutch Failed On - TCIL Is On
|
||||||
|
1744,Torque Converter Clutch Solenoid Mechanical Fault
|
||||||
|
1745,Line Pressure Solenoid
|
||||||
|
1746,Electronic Pressure Control Solenoid Circuit Open
|
||||||
|
1747,Electronic Pressure Control Solenoid Circuit
|
||||||
|
1748,ressure Control Solenoid 'A'
|
||||||
|
1749,Electronic Pressure Control Solenoid Circuit Low
|
||||||
|
1751,Transmission Shift Solenoid 'A' Mechanical Fault
|
||||||
|
1752,Transmission Shift Solenoid 'A' Circuit Shorted
|
||||||
|
1754,Transmission Coast Clutch Solenoid Electrical Fault
|
||||||
|
1756,Transmission Shift Solenoid 'B' Mechanical Fault
|
||||||
|
1757,Transmission Shift Solenoid 'B' Circuit Shorted
|
||||||
|
1759,2-4 Brake Failsafe Valve Malfunction
|
||||||
|
1761,Transmission Shift Solenoid '3' Mechanical Fault
|
||||||
|
1762,Transmission SS3/SS4/OD Band Fault
|
||||||
|
1763,Low And Reverse Brake Pressure Switch Circuit
|
||||||
|
1764,Low And Reverse Brake Failsafe Valve Malfunction
|
||||||
|
1765,Transmission 3-2 Timing Solenoid Valve
|
||||||
|
1767,Torque Converter Clutch Solenoid Circuit
|
||||||
|
1770,Clutch Solenoid Circuit
|
||||||
|
1771,TPS Circuit Open To Transmission Control Module
|
||||||
|
1772,TPS Circuit Shorted To Transmission Control Module
|
||||||
|
1775,Torque Down Signal #1 Circuit
|
||||||
|
1776,Toqure Down Signal #2 Circuit
|
||||||
|
1777,Torque Down Response Signal Circuit
|
||||||
|
1780,Transmission Control Switch Circuit
|
||||||
|
1780,Overdrive Off Switch Not Cycled During The Self Test
|
||||||
|
1781,Transmission 4x4 Low Switch Out Of Range Fault
|
||||||
|
1783,Transmission Fluid Temperature High Input
|
||||||
|
1788,ressure Control Solenoid 'B' Circuit Open
|
||||||
|
1789,ressure Control Solenoid 'B' Circuit Shorted
|
||||||
|
1790,TP (Mechanical) Circuit
|
||||||
|
1791,TP (Electric) Circuit
|
||||||
|
1792,Barometer Pressure Circuit
|
||||||
|
1793,Intake Air Volume Circuit
|
||||||
|
1794,owertrain Control Module Battery Direct Power Circuit
|
||||||
|
1795,Idle Switch Circuit
|
||||||
|
1796,Kick Down Switch Circuit
|
||||||
|
1797,/N Switch Open Or Short Circuit
|
||||||
|
1798,Coolant Temperature Circuit
|
||||||
|
1799,Hold Switch Circuit
|
||||||
|
1900,Turbine Speed Sensor Circuit Intermittent
|
||||||
|
1901,Torque Converter Clutch Circuit Intermittent
|
||||||
|
@@ -0,0 +1,7 @@
|
|||||||
|
ALL=
|
||||||
|
while IFS=, read -r col1 col2
|
||||||
|
do
|
||||||
|
ALL=$ALL$col1,
|
||||||
|
done < dtc.csv
|
||||||
|
echo -n $ALL | sed 's/.$//'
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
ALL=
|
||||||
|
while IFS=, read -r col1 col2
|
||||||
|
do
|
||||||
|
echo \"$col2\",
|
||||||
|
done < dtc.csv
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
};
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// Auto-generated - edit asset file icon.png
|
||||||
|
const char PROGMEM iconpng[] = {
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// Auto-generated - edit asset file index.html
|
||||||
|
const char PROGMEM indexhtml[] = {
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
};
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// Auto-generated - edit asset file mx.js
|
||||||
|
const char PROGMEM mxjs[] = {
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
};
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// Auto-generated - edit asset file jq.js
|
||||||
|
const char PROGMEM jquery[] = {
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
};
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// Auto-generated - edit asset file manifest.json
|
||||||
|
const char PROGMEM manifestjson[] = {
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><style type="text/css"> .st0{fill:#E95420;} </style><path class="st0" d="m200 0c-110.3 0-200 89.7-200 200s89.7 200 200 200 200-89.7 200-200-89.7-200-200-200zm70 240.9l-61.2 61.2c-4.9 4.9-12.8 4.9-17.7 0l-60.6-60.6c-2.6-2.3-4.3-5.7-4.3-9.4 0-6.9 5.6-12.5 12.5-12.5h36.3v-100.4c0-13.8 11.2-25 25-25s25 11.2 25 25v100.4h36.2c5 0 9.6 3 11.5 7.7 2 4.7 0.9 10.1-2.7 13.6z"/></svg>
|
||||||
|
After Width: | Height: | Size: 439 B |
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<html><head><link rel="manifest" href="manifest.json"><meta name="mobile-web-app-capable" content="yes"><title>MXDiag</title><script type="text/javascript" src="jq.js"></script><script type="text/javascript" src="mx.js"></script></head><body style="background: #000; text-align:center;font-family:sans-serif;font-size:25px" onload="mx5s()"><div id="logo" style="background:#999;padding:5px 5px 5px 5px;"><img style="padding:20px 20px 20px 20px;width:75%" src="mz.svg"/></div><div id="stat" style="margin-top:5px;background:#999;color:#222;padding:5px 5px 5px 5px;"></div><div id="dtc" style="height:100%;margin-top:5px;background:#444;color:#CCC;padding:5px 5px 5px 5px;"><a href="javascript:mx5()"><img src="go.svg" style=""></a></div></body></html>
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"name":"MXDiag","icons":[{"src":"icon.png","sizes":"48x48","type":"image/png","density":1}],"start_url":"/","display":"standalone","orientation":"portrait"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
function mx5(){$.get("run",function(t){}),mx5d()}function mx5s(){$.get("stat",function(t){$("#stat").html(t),setTimeout(function(){mx5s()},500)})}function mx5d(){$.get("dtc",function(t){$("#dtc").html(t),setTimeout(function(){mx5d()},5e3)})}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 164 25"><defs><style>.cls-1{fill:#222}</style></defs><title>_Model_Logos_Clean</title><path d="M112.15 20.19c7.59 0 24.18-.15 25.82-.26 5.12-.34 7.92-1.62 9.3-4.84.29-.68.07-1-1.19-1-2.31-.09-12 0-15 .06-4.57.16-5.61.34-7.25 1.59l-9.38.05S124.53 1.26 125.15.35c8-.24 29.63-.38 38.18-.35-.3.41-3.28 4.29-3.67 4.8-3.51-.12-23 .08-27.78.26-.31.44-3 4.34-3.25 4.67 3.54-.61 14.83-.6 18.53-.52 6.66.14 8.32.66 9.54 2.2s1 3.72-.49 6.09c-3.19 5.07-7.25 6.89-16.09 7.2-4.87.17-25.93.33-31.35.3zM110.2.97l-14.14.12-16.09 7.06-6.34-6.91-9.95-.01 8.79 10.2-22.44 9.87L60.98 1.17h-9.47L27.15 17.61 23.84 1.13h-8.28L0 24.76h9.68l8.91-13.99 2.91 13.99h5.57l18.91-12.63-7.07 12.64 18.76-.16 18.92-8.51 7.44 8.67 11.01.03-11.08-12.07L110.2.97z"/><path class="cls-1" d="M98.98 10.96l13.55-.07-3.09 4.86-13.84.06 3.38-4.85z"/></svg>
|
||||||
|
After Width: | Height: | Size: 900 B |
@@ -0,0 +1 @@
|
|||||||
|
Dev Platform
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
};
|
||||||
|
|
||||||
|
const char PROGMEM mzsvg[] = {
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
};
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
// Auto-generated - edit asset files go.svg and mz.svg
|
||||||
|
const char PROGMEM gosvg[] = {
|
||||||
@@ -0,0 +1,272 @@
|
|||||||
|
// Auto-generated - edit asset file dtc.csv
|
||||||
|
const int dtc_index [] PROGMEM = {1000,1001,1100,1101,1102,1103,1110,1112,1113,1114,1116,1117,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1141,1142,1143,1144,1150,1151,1152,1153,1154,1169,1170,1173,1182,1189,1190,1191,1194,1195,1196,1197,1213,1221,1222,1226,1235,1236,1248,1250,1251,1252,1260,1270,1279,1298,1309,1312,1318,1319,1345,1351,1352,1353,1354,1358,1359,1360,1361,1362,1364,1365,1382,1387,1390,1400,1401,1402,1405,1406,1407,1408,1409,1410,1412,1415,1416,1417,1418,1419,1439,1443,1444,1445,1446,1449,1450,1451,1455,1456,1457,1460,1464,1473,1474,1475,1476,1477,1479,1485,1486,1487,1491,1492,1493,1495,1496,1497,1498,1499,1500,1501,1502,1504,1505,1506,1507,1508,1509,1510,1511,1512,1515,1521,1522,1523,1524,1525,1526,1527,1528,1529,1540,1562,1566,1569,1570,1600,1601,1602,1602,1603,1604,1605,1608,1609,1621,1622,1623,1624,1627,1628,1630,1631,1632,1633,1634,1645,1649,1650,1651,1652,1680,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1701,1702,1703,1705,1706,1708,1709,1710,1711,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1729,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1751,1752,1754,1756,1757,1759,1761,1762,1763,1764,1765,1767,1770,1771,1772,1775,1776,1777,1780,1780,1781,1783,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1900,1901};
|
||||||
|
const char *dtc_data[268] = {
|
||||||
|
"OBD II Monitor Testing Not Completed",
|
||||||
|
"Unable to Achieve Self-Test Function Or SCP Error",
|
||||||
|
"MAF Sensor Circuit Intermittent",
|
||||||
|
"MAF Sensor Circuit Out Of Self-Test Range",
|
||||||
|
"MAF Sensor Signal Inconsistent With TPS",
|
||||||
|
"MAF Sensor Signal Inconsistent With Engine Speed",
|
||||||
|
"MAF Sensor Signal (Dynamic Chamber) Circuit",
|
||||||
|
"MAF Sensor Circuit Intermittent",
|
||||||
|
"MAF Sensor Signal (Dynamic Chamber) Circuit",
|
||||||
|
"MAF Sensor Circuit Low Input",
|
||||||
|
"ECT Sensor Circuit Out Of Self Test Range",
|
||||||
|
"ECT Sensor Signal Intermittent",
|
||||||
|
"TPS Out Of Range Low",
|
||||||
|
"TPS Signal Not Consistent With MAF Signal",
|
||||||
|
"Throttle Position Stuck Closed",
|
||||||
|
"Throttle Position Stuck Open",
|
||||||
|
"TPS Signal Out Of Self Test Range",
|
||||||
|
"TPS Signal Intermittent",
|
||||||
|
"Throttle Position (Narrow Range) Sensor Circuit",
|
||||||
|
"HO2S Bank 1 Sensor 2 Heater Not On During Key On Engine Running Self Test",
|
||||||
|
"HO2S Bank 1 Sensor 1 Signals Swapped In Key On Engine Running Self Test",
|
||||||
|
"Downstream H02S Sensors Swapped",
|
||||||
|
"HO2S Bank 1 Sensor 1 Not Switching (Fuel Control Limit Reached)",
|
||||||
|
"HO2S Bank 1 Sensor 1 Signal Below 0.45v (A/F Ratio Too Lean)",
|
||||||
|
"HO2S Bank 1 Sensor 1 Signal Above 0.45v (A/F Ratio Too Rich)",
|
||||||
|
"Bank 1 Fuel Control Shifted Lean",
|
||||||
|
"Bank 1 Fuel Control Shifted Rich",
|
||||||
|
"HO2S Bank 1 Sensor 1 Heater Circuit Low Input",
|
||||||
|
"HO2S Bank 1 Sensor 1 Heater Circuit High Input",
|
||||||
|
"HO2S Bank 1 Sensor 2 Not Switching (Fuel Control Limit Reached)",
|
||||||
|
"HO2S Bank 1 Sensor 2 Signal Above 0.45v (A/F Ratio Too Rich)",
|
||||||
|
"HO2S Bank 1 Sensor 2 Heater Circuit Low Input",
|
||||||
|
"HO2S Bank 1 Sensor 2 Heater Circuit High Input",
|
||||||
|
"HO2S Bank 1 Sensor 3 Signal Below 0.45v (A/F Ratio Too Lean)",
|
||||||
|
"HO2S Bank 1 Sensor 3 Signal Above 0.45v (A/F Ratio Too Rich)",
|
||||||
|
"HO2S Bank 2 Sensor 1 Not Switching (Fuel Control Limit Reached)",
|
||||||
|
"HO2S Bank 2 Sensor 1 Signal Below 0.45v (A/F Ratio Too Lean)",
|
||||||
|
"HO2S Bank 2 Sensor 1 Signal Above 0.45v (A/F Ratio Too Rich)",
|
||||||
|
"Bank 2 Fuel Control Shifted Lean(FAOSC)",
|
||||||
|
"Bank 2 Fuel Control Shifted Rich (FAOSC)",
|
||||||
|
"HO2S Bank 1 Sensor 1 Circuit Fixed (Bank 1 Sensor 1)",
|
||||||
|
"HO2S Bank 1 Sensor 1 Circuit Fixed (Bank 1 Sensor 1)",
|
||||||
|
"HO2S Bank 2 Sensor 1 Circuit Fixed (Bank 2 Sensor 1)",
|
||||||
|
"Fuel Shut Off Solenoid Circuit",
|
||||||
|
"ump Speed Signal",
|
||||||
|
"Calibration Resistor Out Of Range",
|
||||||
|
"TP (Controlled) Circuit",
|
||||||
|
"ECM, PCM, A/D Converter",
|
||||||
|
"EGR Boost Sensor Circuit",
|
||||||
|
"Ignition Switch Start Circuit",
|
||||||
|
"Mileage Switch Circuit",
|
||||||
|
"Start Injector Circuit",
|
||||||
|
"Traction Control System",
|
||||||
|
"Traction Control Output Circuit",
|
||||||
|
"Control Sleeve Sensor Cicuit",
|
||||||
|
"Fuel Pump Control Circuit",
|
||||||
|
"Fuel Pump Control Out Range",
|
||||||
|
"Turbo Boost Pressure Not Detected",
|
||||||
|
"ressure Regulator Control Solenoid Circuit",
|
||||||
|
"Air Mixture Solenoid Circuit",
|
||||||
|
"ressure Regulator Control Solenoid '2' Circuit",
|
||||||
|
"Anti-Theft System Signal Detected - Engine Disabled",
|
||||||
|
"Engine RPM or Vehicle Speed Limit Reached",
|
||||||
|
"Control Sleeve Sensor Circuit Range/Performance",
|
||||||
|
"Injector Driver Module Failure",
|
||||||
|
"Misfire Detection Monitor",
|
||||||
|
"Injection Pump Timing Actuator Circuit",
|
||||||
|
"Injection Timing Piston Position Sensor Circuit",
|
||||||
|
"Injection Timing Piston Position Sensor Circuit Range/Performance",
|
||||||
|
"No CMP or SGC Signal",
|
||||||
|
"Ignition Diagnostic Monitor Signal Lost To PCM Or Out Of Range",
|
||||||
|
"Ignition Coil 'A' Primary Circuit",
|
||||||
|
"Ignition Coil 'B' Primary Circuit",
|
||||||
|
"Ignition Coil 'C' Primary Circuit",
|
||||||
|
"Ignition Diagnostic Monitor Signal Out Of Self Test Range",
|
||||||
|
"SPOUT Signal Lost To Powertrain Control Module Or Out Of Range",
|
||||||
|
"Ignition Coil 'A' Secondary Circuit",
|
||||||
|
"Ignition Coil 'B' Secondary Circuit",
|
||||||
|
"Ignition Coil 'C' Secondary Circuit",
|
||||||
|
"Ignition Coil Primary Circuit",
|
||||||
|
"Ignition Coil Secondary Circuit",
|
||||||
|
"Camshaft Position Timing Solenoid #1 Circuit",
|
||||||
|
"Camshaft Position Timing Solenoid #2 Circuit",
|
||||||
|
"Octane Adjust Shorting Bar Out or Circuit Open",
|
||||||
|
"DPFE Sensor Circuit Low Input",
|
||||||
|
"DPFE Sensor Circuit High Input",
|
||||||
|
"EGR Valve Position Sensor Circuit",
|
||||||
|
"DPFE Sensor Upstream Hose Off Or Plugged",
|
||||||
|
"DPFE Sensor Downstream Hose Off Or Plugged",
|
||||||
|
"No EGR Flow Detected",
|
||||||
|
"EGR System Flow Out Of Key On Engine Running Self Test Range",
|
||||||
|
"EGR Vacuum Regulator Solenoid Circuit",
|
||||||
|
"EGR Boost Solenoid Valve Stuck",
|
||||||
|
"Exhaust Gas Recirculation Valve Frozen",
|
||||||
|
"Air Pump Circuit",
|
||||||
|
"ort Air Circuit",
|
||||||
|
"ort Air Relief Circuit",
|
||||||
|
"Split Air #1 Circuit",
|
||||||
|
"Split Air #2 Circuit",
|
||||||
|
"Floor Temp Switch Circuit",
|
||||||
|
"EVAP System Purge Flow Fault",
|
||||||
|
"EVAP Purge Flow Sensor Circuit Low Voltage",
|
||||||
|
"EVAP Purge Flow Sensor Circuit High Voltage",
|
||||||
|
"Evaporative Vacuum Solenoid Circuit",
|
||||||
|
"Evaporative Check Solenoid Circuit",
|
||||||
|
"Unable To Bleed Up Fuel Tank Vacuum",
|
||||||
|
"Canister Vent Solenoid Circuit",
|
||||||
|
"Fuel Tank Level Sensor Circuit",
|
||||||
|
"Fuel Tank Temperature Sensor Circuit",
|
||||||
|
"urge Solenoid Control System",
|
||||||
|
"Wide Open Throttle A/C Cut-Off Relay Circuit",
|
||||||
|
"Air Conditioning Control Signal Circuit",
|
||||||
|
"Fan Circuit Open (VLCM)",
|
||||||
|
"Fan Control (Primary Winding) Circuit",
|
||||||
|
"Fan Relay (Low) Circuit",
|
||||||
|
"Fan Relay (High) Circuit",
|
||||||
|
"Additional Fan Relay Circuit",
|
||||||
|
"Fan Control (Condenser Primary) Circuit",
|
||||||
|
"EGR Vacuum Solenoid Circuit",
|
||||||
|
"EGR Vent Solenoid Circuit",
|
||||||
|
"EGR-CHK (Boost) Solenoid Circuit",
|
||||||
|
"Secondary Switch Solenoid Circuit",
|
||||||
|
"APLSOL Solenoid Circuit",
|
||||||
|
"RCNT Solenoid Circuit",
|
||||||
|
"TCSPL Solenoid Circuit",
|
||||||
|
"EGR Valve Motor Coil '1' Open or Shorted",
|
||||||
|
"EGR Valve Motor Coil '2' Open or Shorted",
|
||||||
|
"EGR Valve Motor Coil '3' Open or Shorted",
|
||||||
|
"EGR Valve Motor Coil '4' Open or Shorted",
|
||||||
|
"Vehicle Speed Sensor Intermittent Signal",
|
||||||
|
"Vehicle Speed Sensor Out Of Self Test Range",
|
||||||
|
"Vehicle Speed Sensor Circuit Error",
|
||||||
|
"Idle Air Control Solenoid Circuit Intermittent",
|
||||||
|
"Idle Air Control System At Adaptive Clip",
|
||||||
|
"Idle Air Control System Overspeed Detected",
|
||||||
|
"Idle Air Control System Underspeed Detected",
|
||||||
|
"Bypass Air Solenoid '1' Circuit",
|
||||||
|
"Bypass Air Solenoid '2' Circuit",
|
||||||
|
"Idle Signal Circuit",
|
||||||
|
"Idle Switch (Electric Control Throttle) Circuit",
|
||||||
|
"VTCS Fault",
|
||||||
|
"Electric Current Circuit",
|
||||||
|
"VRIS Solenoid '1' Circuit",
|
||||||
|
"VRIS Solenoid '2 Circuit",
|
||||||
|
"VICS Solenoid Circuit",
|
||||||
|
"Charge Air Cooler Bypass Solenoid Circuit",
|
||||||
|
"ABV Vacuum Solenoid Circuit",
|
||||||
|
"ABV Vent Solenoid Circuit",
|
||||||
|
"Bypass Air Solenoid (Accelerate Warmup) Circuit",
|
||||||
|
"Subsidiary Throttle Valve Solenoid Circuit",
|
||||||
|
"L/C Atmospheric Balance Air Control Valve Circuit",
|
||||||
|
"ABV System Fault",
|
||||||
|
"owertrain Control Module +B Voltage Low",
|
||||||
|
"TCM B+ Voltage Low",
|
||||||
|
"IMRC Circuit Low",
|
||||||
|
"IMRC Circuit High",
|
||||||
|
"Loss Of KAM Power, Circuit Open",
|
||||||
|
"owertrain Control Module Communication Line To TCM Error",
|
||||||
|
"owertrain Control Module Communication Line To TCM Error",
|
||||||
|
"Immobilizer System Communication Error With Powertrain Control Module",
|
||||||
|
"Immobilizer System Fault",
|
||||||
|
"Immobilizer System Fault",
|
||||||
|
"owertrain Control Module Keep Alive Memory Test Error",
|
||||||
|
"owertrain Control Module (ECM CPU) DTC Test Fault",
|
||||||
|
"owertrain Control Module (ECM CPU) Knock Sensor Circuit",
|
||||||
|
"Immobilizer System Fault",
|
||||||
|
"Immobilizer System Fault",
|
||||||
|
"Immobilizer System Fault",
|
||||||
|
"Immobilizer System Fault",
|
||||||
|
"owertrain Control Module (ECM/TCS) Line Communication Error",
|
||||||
|
"owertrain Control Module (ECM/TCS) Any Line Communication Error",
|
||||||
|
"Alternator Regulator #1 Control Circuit",
|
||||||
|
"Generator Output Voltage Signal (No Output)",
|
||||||
|
"Battery Voltage Monitor Circuit",
|
||||||
|
"Battery Overcharge Fault",
|
||||||
|
"Generator Terminal 'B' Circuit Open",
|
||||||
|
"Fuel Pump Resistor Switch Circuit",
|
||||||
|
"Fuel Injection Pump Module",
|
||||||
|
"ower Steering Pressure Switch Out Of Range Fault",
|
||||||
|
"ower Steering Pressure Switch Circuit",
|
||||||
|
"ower Steering Pressure Switch Circuit",
|
||||||
|
"Metering Oil Pump Failure",
|
||||||
|
"Metering Oil Pump Failure",
|
||||||
|
"Metering Oil Pump Temperature Sensor Circuit",
|
||||||
|
"Metering Oil Pump Position Sensor Circuit",
|
||||||
|
"Metering Oil Pump Stepping Motor Cont. Circuit",
|
||||||
|
"Metering Oil Pump Stepping Motor Cont. Circuit",
|
||||||
|
"Metering Oil Pump Stepping Motor Cont. Circuit",
|
||||||
|
"Metering Oil Pump Stepping Motor Cont. Circuit",
|
||||||
|
"Oil Pressure Control Solenoid Circuit",
|
||||||
|
"Wastegate Solenoid Circuit",
|
||||||
|
"Turbo Pressure Control Solenoid Circuit",
|
||||||
|
"Turbo Control Solenoid Circuit",
|
||||||
|
"Turbo Charge Control Circuit",
|
||||||
|
"Turbo Charge Relief Circuit",
|
||||||
|
"Transmission Range Sensor Reverse Engagement Error",
|
||||||
|
"Transmission Range Sensor Circuit Intermittent",
|
||||||
|
"Brake On/Off Switch Out Of Self Test Range",
|
||||||
|
"Transmission Range Sensor Out Of Self Test Range",
|
||||||
|
"High Vehicle Speed Observed In Park",
|
||||||
|
"Clutch Switch Circuit",
|
||||||
|
"Clutch Pedal Position Switch Circuit",
|
||||||
|
"Transmission Control Module Solenoid/Internal Ground Circuit",
|
||||||
|
"Transmission Fluid Temperature Sensor Circuit Out Of Self Test Range",
|
||||||
|
"Transmission Fluid Temperature Sensor Circuit",
|
||||||
|
"Shift Solenoid '1' Mechanical Fault",
|
||||||
|
"Shift Solenoid '2' Mechanical Fault",
|
||||||
|
"Shift Solenoid '3' Mechanical Fault",
|
||||||
|
"Shift Solenoid '4' Mechanical Fault",
|
||||||
|
"Transmission Fluid Temperature Sensor Circuit",
|
||||||
|
"Engine Torque Signal",
|
||||||
|
"Vehicle Speed Sensor '2' Signal Error",
|
||||||
|
"Gear 1 Incorrect Ratio",
|
||||||
|
"Gear 2 Incorrect Ratio",
|
||||||
|
"Gear 3 Incorrect Ratio",
|
||||||
|
"Gear 4 Incorrect Ratio",
|
||||||
|
"Transmission 4x4 Low Switch Error",
|
||||||
|
"First Gear Switch Circuit Failure",
|
||||||
|
"Second Gear Switch Circuit Failure",
|
||||||
|
"Lockup Solenoid",
|
||||||
|
"Shift Time Error",
|
||||||
|
"Slip Solenoid",
|
||||||
|
"Torque Converter Clutch Solenoid Mechanical Fault",
|
||||||
|
"Torque Converter Clutch Control Electrical Fault",
|
||||||
|
"Torque Converter Clutch Solenoid Shorted",
|
||||||
|
"Torque Converter Clutch Failed On - TCIL Is On",
|
||||||
|
"Torque Converter Clutch Solenoid Mechanical Fault",
|
||||||
|
"Line Pressure Solenoid",
|
||||||
|
"Electronic Pressure Control Solenoid Circuit Open",
|
||||||
|
"Electronic Pressure Control Solenoid Circuit",
|
||||||
|
"ressure Control Solenoid 'A'",
|
||||||
|
"Electronic Pressure Control Solenoid Circuit Low",
|
||||||
|
"Transmission Shift Solenoid 'A' Mechanical Fault",
|
||||||
|
"Transmission Shift Solenoid 'A' Circuit Shorted",
|
||||||
|
"Transmission Coast Clutch Solenoid Electrical Fault",
|
||||||
|
"Transmission Shift Solenoid 'B' Mechanical Fault",
|
||||||
|
"Transmission Shift Solenoid 'B' Circuit Shorted",
|
||||||
|
"2-4 Brake Failsafe Valve Malfunction",
|
||||||
|
"Transmission Shift Solenoid '3' Mechanical Fault",
|
||||||
|
"Transmission SS3/SS4/OD Band Fault",
|
||||||
|
"Low And Reverse Brake Pressure Switch Circuit",
|
||||||
|
"Low And Reverse Brake Failsafe Valve Malfunction",
|
||||||
|
"Transmission 3-2 Timing Solenoid Valve",
|
||||||
|
"Torque Converter Clutch Solenoid Circuit",
|
||||||
|
"Clutch Solenoid Circuit",
|
||||||
|
"TPS Circuit Open To Transmission Control Module",
|
||||||
|
"TPS Circuit Shorted To Transmission Control Module",
|
||||||
|
"Torque Down Signal #1 Circuit",
|
||||||
|
"Toqure Down Signal #2 Circuit",
|
||||||
|
"Torque Down Response Signal Circuit",
|
||||||
|
"Transmission Control Switch Circuit",
|
||||||
|
"Overdrive Off Switch Not Cycled During The Self Test",
|
||||||
|
"Transmission 4x4 Low Switch Out Of Range Fault",
|
||||||
|
"Transmission Fluid Temperature High Input",
|
||||||
|
"ressure Control Solenoid 'B' Circuit Open",
|
||||||
|
"ressure Control Solenoid 'B' Circuit Shorted",
|
||||||
|
"TP (Mechanical) Circuit",
|
||||||
|
"TP (Electric) Circuit",
|
||||||
|
"Barometer Pressure Circuit",
|
||||||
|
"Intake Air Volume Circuit",
|
||||||
|
"owertrain Control Module Battery Direct Power Circuit",
|
||||||
|
"Idle Switch Circuit",
|
||||||
|
"Kick Down Switch Circuit",
|
||||||
|
"/N Switch Open Or Short Circuit",
|
||||||
|
"Coolant Temperature Circuit",
|
||||||
|
"Hold Switch Circuit",
|
||||||
|
"Turbine Speed Sensor Circuit Intermittent",
|
||||||
|
"Torque Converter Clutch Circuit Intermittent",
|
||||||
|
};
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
// Auto-generated - edit asset file icon.png
|
||||||
|
const char PROGMEM iconpng[] = {
|
||||||
|
0x1F, 0x8B, 0x08, 0x08, 0xA2, 0xFD, 0xC4, 0x5A, 0x02, 0x03, 0x69, 0x63,
|
||||||
|
0x6F, 0x6E, 0x2E, 0x70, 0x6E, 0x67, 0x00, 0x01, 0x9A, 0x04, 0x65, 0xFB,
|
||||||
|
0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D,
|
||||||
|
0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x30,
|
||||||
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x57, 0x02, 0xF9, 0x87, 0x00, 0x00, 0x04,
|
||||||
|
0x61, 0x49, 0x44, 0x41, 0x54, 0x68, 0xDE, 0xED, 0x98, 0x4D, 0x68, 0x1C,
|
||||||
|
0x65, 0x18, 0xC7, 0x7F, 0xCF, 0xB0, 0x2E, 0x41, 0x42, 0x88, 0x39, 0x15,
|
||||||
|
0xAD, 0xE2, 0xA1, 0x7E, 0x9C, 0xAA, 0xA7, 0x92, 0x54, 0xF0, 0x20, 0x25,
|
||||||
|
0xA4, 0x88, 0x56, 0x44, 0x7B, 0x99, 0x45, 0xA4, 0xF8, 0x81, 0xE0, 0xC9,
|
||||||
|
0x6B, 0xE8, 0xAD, 0xE2, 0x41, 0x3C, 0xE5, 0x50, 0x8A, 0x22, 0x21, 0x66,
|
||||||
|
0x0E, 0xB5, 0x45, 0x10, 0x84, 0xB6, 0x20, 0x9A, 0x43, 0x8B, 0x50, 0x42,
|
||||||
|
0x0F, 0x9E, 0x44, 0xA4, 0x78, 0x12, 0x0F, 0x01, 0x4B, 0xBB, 0x2C, 0xC9,
|
||||||
|
0x12, 0xE6, 0xEF, 0x61, 0xDF, 0x99, 0xCC, 0xCE, 0xCE, 0xA4, 0xF3, 0xCE,
|
||||||
|
0xCE, 0xD2, 0xCB, 0x3E, 0xB0, 0xEC, 0xB3, 0xCC, 0xBB, 0xEF, 0xFB, 0x3C,
|
||||||
|
0xCF, 0xFC, 0xDF, 0xFF, 0xF3, 0x01, 0x53, 0x99, 0xCA, 0x58, 0x62, 0x4D,
|
||||||
|
0x6E, 0xA6, 0x88, 0x23, 0x82, 0xE3, 0xFE, 0x7F, 0xA4, 0x0B, 0xDC, 0x0E,
|
||||||
|
0x3A, 0xEC, 0x3F, 0x32, 0x07, 0x14, 0x71, 0x1C, 0xB8, 0x25, 0x31, 0x0B,
|
||||||
|
0x60, 0x06, 0x92, 0xD7, 0x16, 0x57, 0xCD, 0x78, 0xD7, 0x42, 0xBF, 0x73,
|
||||||
|
0x83, 0x06, 0x5F, 0xC0, 0x5B, 0xC0, 0x2C, 0x96, 0x09, 0x8B, 0xFB, 0xB6,
|
||||||
|
0x4C, 0x98, 0x0E, 0xD1, 0xDF, 0x96, 0x78, 0xDC, 0xF7, 0xD0, 0x56, 0x73,
|
||||||
|
0xF8, 0xE1, 0x31, 0x0D, 0xFD, 0xCC, 0xE8, 0xAA, 0xA6, 0x5B, 0x0D, 0x7B,
|
||||||
|
0x5A, 0x0D, 0xDE, 0xA6, 0xBD, 0x31, 0xF1, 0x18, 0x0B, 0xFF, 0x3B, 0xD0,
|
||||||
|
0x24, 0x84, 0xBE, 0x07, 0x76, 0xA4, 0x83, 0xE8, 0x0F, 0xE9, 0x1C, 0xAE,
|
||||||
|
0x4B, 0xAC, 0x07, 0x21, 0xBD, 0x47, 0xCD, 0x42, 0x73, 0x82, 0x63, 0x96,
|
||||||
|
0x09, 0x8C, 0xC4, 0x2D, 0xA0, 0x9D, 0x5B, 0xFA, 0x8D, 0x19, 0x97, 0x50,
|
||||||
|
0x6A, 0x41, 0x17, 0xF8, 0xC3, 0xF7, 0x02, 0x37, 0x0B, 0x21, 0xC0, 0x42,
|
||||||
|
0xEE, 0x03, 0x77, 0x72, 0x4E, 0x15, 0x5C, 0x17, 0xFE, 0xB5, 0x90, 0xED,
|
||||||
|
0x26, 0xCE, 0x6C, 0xD4, 0x81, 0xC2, 0xB7, 0x22, 0x9E, 0x1A, 0x71, 0xD4,
|
||||||
|
0xFC, 0xA1, 0x32, 0x51, 0x08, 0x29, 0x02, 0xC4, 0x2C, 0x46, 0x90, 0x82,
|
||||||
|
0xDB, 0x1C, 0xB8, 0x5D, 0x3E, 0x48, 0x28, 0xB3, 0xAA, 0xEE, 0xA4, 0x1B,
|
||||||
|
0x74, 0x88, 0x27, 0xEA, 0x80, 0x22, 0xE6, 0x81, 0x2B, 0x88, 0xD7, 0x52,
|
||||||
|
0xA3, 0xB3, 0x0E, 0x8C, 0x17, 0xDE, 0xBF, 0x10, 0xA7, 0xAD, 0xC3, 0xDD,
|
||||||
|
0x89, 0xB0, 0x50, 0x1C, 0x31, 0x07, 0x5C, 0x13, 0x9C, 0x92, 0x11, 0x00,
|
||||||
|
0x81, 0x6C, 0xF0, 0x19, 0xD2, 0xAD, 0xA6, 0x0E, 0xCF, 0x0B, 0x3E, 0x99,
|
||||||
|
0x08, 0x8D, 0x6A, 0x93, 0x39, 0xC4, 0x0D, 0xC1, 0x62, 0x61, 0xF2, 0x6A,
|
||||||
|
0x48, 0x87, 0x41, 0x69, 0xD2, 0xE8, 0x25, 0xD6, 0x20, 0xF2, 0x37, 0x4C,
|
||||||
|
0x2C, 0x8E, 0x0D, 0x93, 0x31, 0x6F, 0xA9, 0xB7, 0x03, 0xF1, 0x66, 0x0A,
|
||||||
|
0x9B, 0x45, 0x8C, 0x52, 0xD8, 0x37, 0xA5, 0x3F, 0x2C, 0x40, 0x2D, 0x45,
|
||||||
|
0x2C, 0x00, 0xEF, 0x03, 0x4F, 0x00, 0xB1, 0xC4, 0x6F, 0x18, 0xD7, 0x83,
|
||||||
|
0x10, 0xE2, 0x08, 0x0C, 0xDE, 0x01, 0x5E, 0x42, 0xC4, 0x8E, 0x51, 0x56,
|
||||||
|
0x04, 0x27, 0x3C, 0x60, 0xD0, 0x17, 0x7C, 0x0C, 0xEC, 0x66, 0x6A, 0xBC,
|
||||||
|
0xA3, 0x82, 0x2F, 0x2B, 0x42, 0x28, 0xB9, 0x6F, 0x20, 0x56, 0xCC, 0x58,
|
||||||
|
0x72, 0xD0, 0xFF, 0x0F, 0xB1, 0xDE, 0x4A, 0x19, 0xC4, 0xED, 0xEC, 0x0E,
|
||||||
|
0x39, 0x0D, 0x5C, 0x47, 0x74, 0x80, 0xEF, 0xB2, 0x61, 0x31, 0x3C, 0xD9,
|
||||||
|
0xC5, 0x58, 0xB7, 0x90, 0xF5, 0x5C, 0x62, 0xBB, 0x6C, 0xF2, 0x83, 0x90,
|
||||||
|
0xC1, 0x0A, 0x70, 0x6D, 0xE8, 0x6C, 0xE3, 0xF5, 0x00, 0x38, 0xA9, 0xCC,
|
||||||
|
0x42, 0xF7, 0x7C, 0xC9, 0x25, 0x9C, 0xA5, 0x91, 0xBA, 0xC5, 0x95, 0xCB,
|
||||||
|
0xB2, 0x0A, 0x3A, 0xF4, 0x81, 0x2F, 0x72, 0x26, 0x9D, 0x12, 0x9C, 0xAD,
|
||||||
|
0xBA, 0x4F, 0x26, 0x27, 0xBC, 0x52, 0xB0, 0xFF, 0xC9, 0x96, 0x20, 0x70,
|
||||||
|
0x3F, 0x46, 0xD8, 0x29, 0x79, 0x96, 0x3A, 0x66, 0xDE, 0x4C, 0xB2, 0x61,
|
||||||
|
0x21, 0x7F, 0x67, 0xEE, 0xCF, 0x8C, 0xC4, 0x9A, 0xCF, 0x3E, 0x1C, 0xBE,
|
||||||
|
0x26, 0x68, 0x99, 0x46, 0x5F, 0x57, 0xF6, 0x32, 0x8D, 0x91, 0x98, 0xFA,
|
||||||
|
0x18, 0x9F, 0xE7, 0xE0, 0xF0, 0x99, 0x89, 0x17, 0x3D, 0x21, 0x78, 0xA0,
|
||||||
|
0xAA, 0x88, 0x85, 0xF2, 0xA9, 0x3E, 0xC7, 0x5C, 0x23, 0xF6, 0x57, 0x67,
|
||||||
|
0x9E, 0xA1, 0xE8, 0x2B, 0xE2, 0x59, 0x89, 0xD5, 0xEC, 0xDB, 0xF6, 0x66,
|
||||||
|
0xA1, 0x82, 0xFF, 0x5A, 0x1C, 0xB1, 0x87, 0x68, 0xA7, 0x56, 0x0F, 0x3C,
|
||||||
|
0xD8, 0x77, 0xAC, 0xD3, 0x42, 0x2E, 0xD9, 0xF9, 0xF1, 0x5F, 0x1F, 0xE3,
|
||||||
|
0x85, 0xC0, 0x39, 0xA0, 0x08, 0x04, 0x3F, 0x22, 0xDE, 0xAC, 0x91, 0x07,
|
||||||
|
0x62, 0x06, 0x8D, 0x4E, 0x80, 0x72, 0xB4, 0x6F, 0xF4, 0x5B, 0xF6, 0xB0,
|
||||||
|
0xFC, 0x90, 0x37, 0x90, 0x4A, 0xFA, 0x50, 0xF4, 0x81, 0x97, 0x4D, 0x3C,
|
||||||
|
0x29, 0x63, 0xDB, 0x2D, 0x9D, 0x07, 0x8E, 0x79, 0x34, 0x5D, 0xED, 0xB2,
|
||||||
|
0xA4, 0x66, 0x8A, 0xD8, 0x93, 0x68, 0xE7, 0xAB, 0xC2, 0x14, 0x56, 0xAE,
|
||||||
|
0xAB, 0x4A, 0xF5, 0x04, 0x42, 0xCA, 0xC0, 0x49, 0x43, 0xD0, 0xDA, 0x37,
|
||||||
|
0x78, 0x2E, 0xE7, 0x40, 0x36, 0x8B, 0xCF, 0x08, 0x7E, 0x45, 0x2C, 0x66,
|
||||||
|
0x27, 0x17, 0xB5, 0x74, 0xE8, 0xB7, 0x74, 0x08, 0x0B, 0x14, 0x32, 0x83,
|
||||||
|
0x73, 0xA2, 0x54, 0x17, 0xBF, 0x08, 0x16, 0xE2, 0x4D, 0x16, 0xDC, 0x41,
|
||||||
|
0x77, 0x2D, 0xE4, 0x5E, 0x06, 0x4A, 0x6B, 0x68, 0x50, 0x3F, 0x55, 0x6D,
|
||||||
|
0xF6, 0x4B, 0x75, 0x83, 0x96, 0x55, 0x61, 0x01, 0x3F, 0x08, 0x2D, 0x03,
|
||||||
|
0xCB, 0x09, 0x73, 0x02, 0x4F, 0x83, 0x73, 0x40, 0x7C, 0x64, 0xC6, 0x07,
|
||||||
|
0x4D, 0x36, 0xB2, 0x41, 0x49, 0xA4, 0x6F, 0x62, 0x5C, 0x00, 0xB6, 0x51,
|
||||||
|
0x2E, 0xFA, 0x45, 0x0D, 0x7B, 0xB9, 0xBE, 0x65, 0x21, 0xFF, 0xB8, 0xE8,
|
||||||
|
0x2F, 0x62, 0xAC, 0xA5, 0x6B, 0x94, 0x59, 0x7F, 0xB8, 0x7E, 0x07, 0x71,
|
||||||
|
0x41, 0x70, 0x73, 0x64, 0x0D, 0x10, 0x14, 0x4D, 0x0A, 0x80, 0x2D, 0x0B,
|
||||||
|
0x39, 0x2F, 0xD8, 0x1E, 0x79, 0x5E, 0xE2, 0x50, 0x91, 0x6E, 0x36, 0x28,
|
||||||
|
0x43, 0x14, 0x71, 0x44, 0xE2, 0x0A, 0xA2, 0x5D, 0x03, 0x2A, 0xB7, 0xAD,
|
||||||
|
0xC3, 0x79, 0x83, 0xAD, 0xA2, 0x35, 0xC5, 0x10, 0x52, 0x06, 0x19, 0xF5,
|
||||||
|
0x58, 0x08, 0xA0, 0x27, 0xF1, 0x83, 0x36, 0x69, 0x03, 0x97, 0xCD, 0x38,
|
||||||
|
0x5A, 0xB3, 0xA7, 0xEE, 0x27, 0x36, 0x99, 0x55, 0x85, 0x50, 0x2E, 0x93,
|
||||||
|
0xD5, 0x84, 0xD0, 0x4F, 0x41, 0x87, 0xFB, 0x32, 0xBE, 0x02, 0x5E, 0xF5,
|
||||||
|
0x84, 0x4D, 0xF2, 0xDD, 0xB3, 0x6C, 0x31, 0x59, 0x02, 0xA1, 0x6E, 0x01,
|
||||||
|
0x84, 0x1E, 0x24, 0x4D, 0x75, 0x5D, 0x08, 0x01, 0x91, 0x36, 0x79, 0x0F,
|
||||||
|
0xF1, 0x69, 0x4D, 0x86, 0xE9, 0x01, 0x67, 0xAC, 0x93, 0x8E, 0x5F, 0x1E,
|
||||||
|
0x14, 0xAC, 0xEF, 0x06, 0xC0, 0x2A, 0xD0, 0x33, 0x11, 0x9B, 0x88, 0x81,
|
||||||
|
0xDF, 0x81, 0x0D, 0x67, 0xC7, 0x45, 0x33, 0xFE, 0x84, 0xF4, 0x59, 0x9C,
|
||||||
|
0xCC, 0x6E, 0xCD, 0xDC, 0xA7, 0x48, 0x87, 0x1D, 0x60, 0x07, 0xE3, 0x62,
|
||||||
|
0xFA, 0xCC, 0xEF, 0x33, 0x30, 0x3E, 0xE4, 0xE7, 0x0C, 0x16, 0x36, 0x6C,
|
||||||
|
0x60, 0x5B, 0x62, 0x47, 0xCF, 0xC4, 0xAA, 0xB9, 0x4B, 0xD6, 0x46, 0xCC,
|
||||||
|
0xB8, 0xB4, 0xDD, 0xCD, 0x4E, 0xC8, 0x14, 0x11, 0x48, 0xCC, 0xDA, 0x01,
|
||||||
|
0xC6, 0xCF, 0x02, 0x97, 0xA4, 0x41, 0xA5, 0x5A, 0x94, 0xD4, 0xCC, 0xB8,
|
||||||
|
0x0A, 0x9C, 0x90, 0x78, 0xC6, 0x37, 0x49, 0x95, 0x18, 0x3F, 0x3A, 0xBE,
|
||||||
|
0x81, 0x5D, 0x0B, 0xE9, 0xD7, 0x62, 0xE4, 0x38, 0xE2, 0x1C, 0xE2, 0x6B,
|
||||||
|
0x92, 0x72, 0x7B, 0xB4, 0x16, 0xBA, 0x87, 0x31, 0xEF, 0xDD, 0x2F, 0x1B,
|
||||||
|
0x3D, 0x2B, 0x31, 0xBE, 0xF1, 0xB9, 0x90, 0x22, 0xCE, 0x81, 0x73, 0xA2,
|
||||||
|
0x19, 0xE9, 0x09, 0xCE, 0x04, 0x1E, 0xC6, 0x8F, 0x35, 0x56, 0xB1, 0x90,
|
||||||
|
0x6F, 0x81, 0x0F, 0x5D, 0x1F, 0x5D, 0xCE, 0x48, 0x15, 0xD9, 0x86, 0x1A,
|
||||||
|
0xC6, 0x37, 0x32, 0x99, 0xAB, 0x00, 0xA7, 0xC6, 0x61, 0x33, 0x89, 0xD9,
|
||||||
|
0xE8, 0x32, 0xE2, 0x0D, 0x41, 0x6B, 0xA4, 0xAA, 0x4D, 0x3A, 0xA9, 0x02,
|
||||||
|
0x1D, 0xB1, 0x6B, 0x46, 0xD4, 0xD4, 0xA4, 0x7A, 0x2A, 0x53, 0x99, 0xCA,
|
||||||
|
0x54, 0xA6, 0xE2, 0x2D, 0xFF, 0x03, 0x4F, 0xBD, 0xA8, 0x36, 0x73, 0x74,
|
||||||
|
0x2C, 0x33, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, 0x42,
|
||||||
|
0x60, 0x82, 0x60, 0x7C, 0x66, 0x8A, 0x9A, 0x04, 0x00, 0x00};
|
||||||
@@ -0,0 +1,37 @@
|
|||||||
|
// Auto-generated - edit asset file index.html
|
||||||
|
const char PROGMEM indexhtml[] = {
|
||||||
|
0x1F, 0x8B, 0x08, 0x08, 0x6A, 0x00, 0xC5, 0x5A, 0x02, 0x03, 0x69, 0x6E,
|
||||||
|
0x64, 0x65, 0x78, 0x2E, 0x68, 0x74, 0x6D, 0x6C, 0x00, 0x8D, 0x52, 0xCD,
|
||||||
|
0x4E, 0xE3, 0x30, 0x10, 0xBE, 0xF3, 0x14, 0x96, 0x2B, 0x24, 0x38, 0x84,
|
||||||
|
0x64, 0xA3, 0x56, 0xA8, 0x4E, 0xDA, 0x4B, 0xB9, 0x72, 0xE7, 0x3A, 0x89,
|
||||||
|
0x27, 0x8E, 0x8B, 0x63, 0x07, 0x7B, 0x28, 0x0D, 0x4F, 0xBF, 0x4E, 0xB3,
|
||||||
|
0xA1, 0x4B, 0x85, 0x2A, 0x0E, 0xB6, 0xE4, 0xB1, 0xBF, 0xBF, 0xF1, 0x94,
|
||||||
|
0x2D, 0x75, 0x66, 0x5B, 0xB6, 0x08, 0x72, 0x5B, 0x1A, 0x6D, 0x5F, 0x99,
|
||||||
|
0x47, 0xB3, 0xE1, 0x1D, 0x58, 0xDD, 0x60, 0x20, 0xCE, 0x5A, 0x8F, 0xCD,
|
||||||
|
0xF9, 0xFC, 0xB0, 0x0F, 0xCE, 0xF2, 0x6D, 0xD9, 0x21, 0x01, 0xB3, 0xD0,
|
||||||
|
0x61, 0xBC, 0x72, 0x95, 0x36, 0x98, 0x7C, 0x60, 0x95, 0x40, 0xDF, 0x27,
|
||||||
|
0x35, 0xF4, 0x50, 0x19, 0xE4, 0xAC, 0x76, 0x96, 0xD0, 0xD2, 0x86, 0x0F,
|
||||||
|
0x18, 0x22, 0x82, 0x34, 0x19, 0xDC, 0x3E, 0xBF, 0x3C, 0x69, 0x50, 0x65,
|
||||||
|
0x3A, 0x9D, 0xCA, 0x50, 0x7B, 0xDD, 0x13, 0xA3, 0xA1, 0x8F, 0x44, 0x84,
|
||||||
|
0x47, 0x4A, 0xF7, 0x70, 0x80, 0xA9, 0xCA, 0x59, 0xF0, 0xF5, 0x86, 0xEF,
|
||||||
|
0xDF, 0xA2, 0x66, 0xC4, 0xA7, 0x53, 0xF5, 0x57, 0x98, 0xEE, 0x78, 0x81,
|
||||||
|
0x49, 0xA7, 0x7C, 0x95, 0x93, 0x03, 0x0B, 0x34, 0x98, 0x88, 0xAC, 0xA0,
|
||||||
|
0x7E, 0x55, 0xDE, 0xBD, 0x5B, 0x29, 0xD8, 0x22, 0xCB, 0xB2, 0x82, 0x8D,
|
||||||
|
0x5C, 0x09, 0x18, 0xAD, 0xAC, 0xA8, 0xA3, 0x71, 0xF4, 0x45, 0x13, 0x23,
|
||||||
|
0x24, 0x0D, 0x74, 0xDA, 0x0C, 0x22, 0x80, 0x0D, 0x49, 0x40, 0xAF, 0x9B,
|
||||||
|
0xA9, 0x1C, 0xF4, 0x27, 0x8A, 0x7C, 0xD5, 0x1F, 0x39, 0x73, 0xD6, 0x38,
|
||||||
|
0x90, 0xA3, 0xEC, 0x2A, 0xDC, 0xDD, 0x47, 0x5D, 0xA9, 0x0F, 0x4C, 0xC7,
|
||||||
|
0x82, 0x71, 0xCA, 0xF1, 0x1F, 0x04, 0x17, 0xEB, 0xF5, 0xBA, 0xE8, 0x41,
|
||||||
|
0x4A, 0x6D, 0x95, 0x88, 0x14, 0xEC, 0xBF, 0x55, 0x44, 0xBC, 0xEE, 0xD4,
|
||||||
|
0x8C, 0x9A, 0x5F, 0xE5, 0x59, 0xBC, 0xFE, 0xBE, 0x15, 0x1F, 0x5A, 0x52,
|
||||||
|
0x2B, 0x1E, 0x57, 0xB7, 0x73, 0xEC, 0xCF, 0x87, 0x70, 0x50, 0x3C, 0x8D,
|
||||||
|
0x79, 0xA3, 0x83, 0xB3, 0x8D, 0x40, 0x40, 0x5F, 0x36, 0x3A, 0xF0, 0x4A,
|
||||||
|
0xDB, 0x84, 0x5C, 0x3F, 0x2A, 0x17, 0x97, 0xAE, 0x6A, 0x67, 0x9C, 0x17,
|
||||||
|
0x8B, 0x3C, 0xCF, 0xAF, 0x19, 0xFC, 0xCE, 0x2F, 0xA9, 0xFE, 0xA2, 0x6F,
|
||||||
|
0x51, 0xAB, 0x96, 0xC4, 0x9F, 0x2C, 0xBB, 0x2D, 0xAE, 0x48, 0x2D, 0x97,
|
||||||
|
0xCB, 0x59, 0x6A, 0xB7, 0xDB, 0x5D, 0x93, 0x82, 0x7F, 0x13, 0x78, 0xFE,
|
||||||
|
0x64, 0x11, 0xFB, 0x7C, 0x6A, 0xF3, 0xA9, 0x4D, 0x63, 0x70, 0xE5, 0x4E,
|
||||||
|
0xC1, 0x67, 0x0F, 0xA3, 0x41, 0x98, 0x4D, 0xA6, 0xE3, 0xA7, 0x8F, 0x13,
|
||||||
|
0x30, 0xCE, 0xF9, 0xCD, 0x5F, 0xE1, 0xBF, 0x1C, 0x38, 0xEF, 0x02, 0x00,
|
||||||
|
0x00};
|
||||||
|
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
// Auto-generated - edit asset file mx.js
|
||||||
|
const char PROGMEM mxjs[] = {
|
||||||
|
0x1F, 0x8B, 0x08, 0x08, 0xEC, 0xC6, 0xC4, 0x5A, 0x02, 0x03, 0x6D, 0x78,
|
||||||
|
0x2E, 0x6A, 0x73, 0x00, 0x4B, 0x2B, 0xCD, 0x4B, 0x2E, 0xC9, 0xCC, 0xCF,
|
||||||
|
0x53, 0xC8, 0xAD, 0x30, 0xD5, 0xD0, 0xAC, 0x56, 0xD1, 0x4B, 0x4F, 0x2D,
|
||||||
|
0xD1, 0x50, 0x2A, 0x2A, 0xCD, 0x53, 0xD2, 0x49, 0x83, 0x4A, 0x69, 0x94,
|
||||||
|
0x68, 0x56, 0xD7, 0x6A, 0xEA, 0x00, 0x15, 0xA4, 0x68, 0x68, 0xD6, 0xA6,
|
||||||
|
0x21, 0x69, 0x28, 0x46, 0xE8, 0x28, 0x2E, 0x49, 0x2C, 0x41, 0xD5, 0xA2,
|
||||||
|
0xA2, 0xA1, 0xA4, 0x0C, 0x16, 0xD5, 0xD4, 0xCB, 0x28, 0xC9, 0xCD, 0x01,
|
||||||
|
0x0A, 0xE9, 0x14, 0xA7, 0x96, 0x84, 0x64, 0xE6, 0xA6, 0xE6, 0x97, 0x96,
|
||||||
|
0x68, 0xC0, 0x55, 0x6A, 0x56, 0x43, 0x0C, 0xAA, 0xD5, 0x31, 0x35, 0x30,
|
||||||
|
0xD0, 0xAC, 0x45, 0xB5, 0x20, 0x05, 0x61, 0x41, 0x4A, 0x49, 0x32, 0xA6,
|
||||||
|
0xF9, 0x20, 0x41, 0x22, 0x8C, 0x4F, 0x01, 0x1B, 0x9F, 0x6A, 0x0C, 0x32,
|
||||||
|
0x9E, 0x0B, 0x00, 0x14, 0x60, 0xCC, 0x7A, 0xF2, 0x00, 0x00, 0x00};
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
// Auto-generated - edit asset file manifest.json
|
||||||
|
const char PROGMEM manifestjson[] = {
|
||||||
|
0x1F, 0x8B, 0x08, 0x08, 0x50, 0xFE, 0xC4, 0x5A, 0x02, 0x03, 0x6D, 0x61,
|
||||||
|
0x6E, 0x69, 0x66, 0x65, 0x73, 0x74, 0x2E, 0x6A, 0x73, 0x6F, 0x6E, 0x00,
|
||||||
|
0x25, 0xCB, 0xC1, 0x0A, 0xC2, 0x40, 0x0C, 0x04, 0xD0, 0xBB, 0x9F, 0x91,
|
||||||
|
0xB3, 0x58, 0x84, 0x1E, 0xCA, 0x9E, 0xBD, 0x7A, 0x17, 0x44, 0x24, 0xB4,
|
||||||
|
0xA1, 0x04, 0xB6, 0xD9, 0x25, 0x89, 0x60, 0x5B, 0xFA, 0xEF, 0x66, 0xF1,
|
||||||
|
0x38, 0xF3, 0x66, 0x76, 0x10, 0x5C, 0x08, 0x12, 0xDC, 0x1F, 0x37, 0xC6,
|
||||||
|
0x19, 0xCE, 0xC0, 0x63, 0x11, 0x83, 0xF4, 0xDC, 0xC1, 0x74, 0x0C, 0x68,
|
||||||
|
0xF9, 0x52, 0xA5, 0x91, 0xF1, 0x46, 0x41, 0xD0, 0x0F, 0xDF, 0x7E, 0x88,
|
||||||
|
0xEC, 0x6B, 0x6D, 0x57, 0x5E, 0x70, 0xA6, 0xEE, 0x3F, 0x99, 0x48, 0x8C,
|
||||||
|
0x7D, 0x85, 0x74, 0x3D, 0x5E, 0x71, 0x70, 0x54, 0x7F, 0x7F, 0x34, 0xC7,
|
||||||
|
0xAA, 0x6B, 0xCA, 0x56, 0x33, 0x86, 0x36, 0x91, 0x09, 0x73, 0x11, 0x8A,
|
||||||
|
0xBA, 0x28, 0x93, 0x38, 0x3A, 0x17, 0x09, 0xAA, 0x45, 0x5D, 0x91, 0x1D,
|
||||||
|
0x8E, 0xD3, 0x0F, 0xE2, 0xE0, 0xF5, 0x7B, 0x9E, 0x00, 0x00, 0x00};
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
// Auto-generated - edit asset files go.svg and mz.svg
|
||||||
|
const char PROGMEM gosvg[] = {
|
||||||
|
0x1F, 0x8B, 0x08, 0x08, 0x9B, 0xC9, 0xC4, 0x5A, 0x02, 0x03, 0x67, 0x6F,
|
||||||
|
0x2E, 0x73, 0x76, 0x67, 0x00, 0x35, 0x51, 0xD1, 0x6E, 0x83, 0x30, 0x0C,
|
||||||
|
0x7C, 0xDF, 0x57, 0x58, 0xD9, 0x73, 0x8C, 0x93, 0x10, 0x28, 0x1D, 0xF0,
|
||||||
|
0x30, 0x69, 0x1F, 0x52, 0x31, 0xD6, 0x56, 0x82, 0xB5, 0x5A, 0x22, 0x68,
|
||||||
|
0x3B, 0xED, 0xDF, 0x77, 0xC9, 0xC6, 0x83, 0x9D, 0x3B, 0xE7, 0x6C, 0x9F,
|
||||||
|
0x92, 0x36, 0x2C, 0x47, 0xBA, 0xCD, 0xD3, 0x67, 0xE8, 0xD4, 0x29, 0xC6,
|
||||||
|
0xEB, 0xBE, 0x28, 0xD6, 0x75, 0xE5, 0xD5, 0xF1, 0xE5, 0xEB, 0x58, 0x58,
|
||||||
|
0x11, 0x29, 0xA0, 0x50, 0xB4, 0x9C, 0xC7, 0xF5, 0xF5, 0x72, 0xEB, 0x94,
|
||||||
|
0x90, 0x50, 0x29, 0x39, 0x54, 0xDF, 0x86, 0x78, 0x9F, 0x46, 0x8A, 0xF7,
|
||||||
|
0xEB, 0xD8, 0xA9, 0x38, 0xDE, 0x62, 0x31, 0x84, 0xA0, 0x7A, 0x22, 0xE2,
|
||||||
|
0x10, 0xE5, 0xFB, 0xE3, 0x3C, 0x4D, 0xFB, 0xE7, 0xB7, 0xC6, 0x97, 0x56,
|
||||||
|
0x5E, 0x7E, 0xA8, 0x2D, 0xB2, 0xBC, 0x6F, 0xAF, 0x87, 0x78, 0xA2, 0x61,
|
||||||
|
0x3A, 0x04, 0x2C, 0x85, 0x4E, 0xD1, 0x7B, 0xA7, 0x66, 0xEC, 0x22, 0x19,
|
||||||
|
0xB4, 0x31, 0xC2, 0x8E, 0x44, 0x27, 0xBA, 0x6B, 0xB8, 0xCE, 0x00, 0x11,
|
||||||
|
0x12, 0xA1, 0x7F, 0xB2, 0x85, 0xDE, 0x8A, 0x7A, 0x23, 0x7A, 0x23, 0x88,
|
||||||
|
0xC7, 0x5C, 0x43, 0x55, 0x0A, 0x37, 0x93, 0xAE, 0x0C, 0x5B, 0x4A, 0x69,
|
||||||
|
0xD0, 0x25, 0x37, 0x84, 0xD0, 0xC6, 0xF2, 0xEE, 0x0F, 0xD4, 0x18, 0x22,
|
||||||
|
0xD0, 0x08, 0x57, 0x39, 0x0D, 0xDA, 0x02, 0x59, 0x76, 0xD0, 0x3A, 0xED,
|
||||||
|
0x31, 0x35, 0x9D, 0x0D, 0x97, 0xF0, 0x55, 0xA1, 0xDB, 0xE3, 0x16, 0xDD,
|
||||||
|
0x9E, 0x52, 0xCA, 0xE8, 0xE4, 0x2A, 0x76, 0x8B, 0x36, 0x22, 0x5C, 0x0E,
|
||||||
|
0xA2, 0x8D, 0xC3, 0x68, 0x83, 0x6D, 0xDA, 0x7A, 0xB2, 0x1E, 0x39, 0x00,
|
||||||
|
0xA4, 0x02, 0xE5, 0xC2, 0x92, 0x85, 0xA9, 0xC9, 0x0E, 0x1E, 0x0F, 0xDA,
|
||||||
|
0x70, 0x45, 0x2E, 0xDD, 0x7B, 0x4A, 0x5E, 0x2C, 0x6C, 0xC1, 0x11, 0x36,
|
||||||
|
0xE1, 0x31, 0x0C, 0x8C, 0xD4, 0x84, 0x89, 0xD5, 0x43, 0x15, 0x7D, 0x9B,
|
||||||
|
0xBE, 0xA3, 0x7F, 0xFA, 0x05, 0xD0, 0xAF, 0xAC, 0x31, 0xB7, 0x01, 0x00,
|
||||||
|
0x00};
|
||||||
|
|
||||||
|
const char PROGMEM mzsvg[] = {
|
||||||
|
0x1F, 0x8B, 0x08, 0x08, 0x41, 0xCA, 0xC4, 0x5A, 0x02, 0x03, 0x6D, 0x7A,
|
||||||
|
0x2E, 0x73, 0x76, 0x67, 0x00, 0x3D, 0x93, 0xDD, 0x6E, 0xDB, 0x30, 0x0C,
|
||||||
|
0x85, 0x5F, 0x45, 0xF0, 0xAE, 0x45, 0x8B, 0xD4, 0x7F, 0xE1, 0xE4, 0xA2,
|
||||||
|
0xBB, 0x75, 0xAF, 0xF6, 0x00, 0x81, 0x91, 0xB8, 0x71, 0x00, 0x35, 0x2E,
|
||||||
|
0x6A, 0xA3, 0x69, 0x3B, 0xEC, 0xDD, 0x77, 0xE4, 0x74, 0x03, 0x1C, 0x98,
|
||||||
|
0x11, 0x45, 0xF2, 0x9C, 0x4F, 0x72, 0xB7, 0xBC, 0x9F, 0xD5, 0xE5, 0xB4,
|
||||||
|
0x6B, 0xFA, 0xE1, 0x73, 0x7C, 0x3B, 0x70, 0xA3, 0x4E, 0xC3, 0x3A, 0xE8,
|
||||||
|
0xEB, 0xF0, 0x32, 0x7E, 0xAF, 0x29, 0xAC, 0x7D, 0xBC, 0x94, 0xEB, 0xB2,
|
||||||
|
0x6B, 0xA6, 0x75, 0x7D, 0x7D, 0x68, 0xDB, 0xDB, 0xED, 0x46, 0x37, 0x4B,
|
||||||
|
0xF3, 0xDB, 0xB9, 0x15, 0x63, 0x4C, 0x8B, 0x16, 0x8D, 0x7A, 0xBF, 0x8C,
|
||||||
|
0xB7, 0xC7, 0xF9, 0x63, 0xD7, 0x18, 0x65, 0x14, 0x07, 0xA7, 0xC4, 0x37,
|
||||||
|
0xFB, 0xEE, 0x34, 0x3E, 0x2F, 0xFB, 0x6E, 0x59, 0x3F, 0xCB, 0xB8, 0xA7,
|
||||||
|
0x63, 0x59, 0x34, 0xFF, 0x7E, 0xBE, 0x94, 0xF2, 0xF0, 0x43, 0x44, 0xFE,
|
||||||
|
0x74, 0xED, 0x3D, 0xD1, 0xB5, 0xF7, 0x6D, 0xEB, 0x65, 0xC5, 0xBF, 0xC3,
|
||||||
|
0xD3, 0x7C, 0x1A, 0xCB, 0xA1, 0x9F, 0xCF, 0xF3, 0x72, 0xF8, 0x59, 0xC6,
|
||||||
|
0xE1, 0xDA, 0xB5, 0xF7, 0x4C, 0xF7, 0x3A, 0xAC, 0x93, 0x82, 0xD6, 0x27,
|
||||||
|
0x66, 0x21, 0xF6, 0x4A, 0x0C, 0x71, 0x3E, 0x46, 0xF2, 0x19, 0x33, 0xC5,
|
||||||
|
0x11, 0x27, 0xBD, 0x2D, 0x7B, 0x4A, 0xA2, 0x49, 0x82, 0xF2, 0xC4, 0x08,
|
||||||
|
0xAC, 0x53, 0x91, 0xB2, 0x68, 0xA6, 0x20, 0x2A, 0x93, 0xD5, 0x8E, 0x92,
|
||||||
|
0x23, 0xC9, 0x9A, 0x42, 0x22, 0x13, 0x35, 0x23, 0xC3, 0x19, 0x2F, 0x21,
|
||||||
|
0xCB, 0x9A, 0x0C, 0x42, 0x51, 0x46, 0xA3, 0x13, 0x99, 0x80, 0xCD, 0x3E,
|
||||||
|
0x12, 0x07, 0xED, 0x29, 0x30, 0x5A, 0xE9, 0x48, 0xE2, 0x15, 0x63, 0x66,
|
||||||
|
0xD1, 0xE8, 0x85, 0x06, 0xFE, 0x17, 0x63, 0xB6, 0xB7, 0x58, 0xC4, 0x48,
|
||||||
|
0xC6, 0x74, 0xF6, 0x64, 0xFD, 0x11, 0x62, 0x04, 0x18, 0x32, 0x05, 0x0B,
|
||||||
|
0x0D, 0x49, 0x61, 0x6F, 0x15, 0x68, 0x3D, 0x7E, 0xE4, 0x58, 0x5B, 0x92,
|
||||||
|
0xA4, 0x36, 0x1D, 0x96, 0x42, 0x44, 0x94, 0x10, 0x78, 0x08, 0x80, 0x66,
|
||||||
|
0xB1, 0x98, 0x9D, 0xB4, 0x44, 0x8A, 0x09, 0x5D, 0x51, 0xC1, 0xE4, 0x9C,
|
||||||
|
0xB6, 0xD8, 0x05, 0x09, 0xB6, 0x4A, 0x70, 0xB5, 0x08, 0x05, 0x0E, 0x36,
|
||||||
|
0x58, 0x31, 0xCA, 0x31, 0x06, 0xF3, 0x13, 0xA4, 0x68, 0xF2, 0xA2, 0x02,
|
||||||
|
0x85, 0x40, 0xEC, 0x54, 0x22, 0x2B, 0x08, 0xE1, 0xDC, 0x43, 0x0E, 0xC9,
|
||||||
|
0xC2, 0x28, 0x8B, 0xE0, 0xE2, 0x32, 0xF6, 0x98, 0x7C, 0x44, 0x3F, 0xCE,
|
||||||
|
0x60, 0x05, 0x14, 0x9B, 0xB9, 0x40, 0x09, 0x08, 0x6A, 0x0A, 0xDC, 0xA4,
|
||||||
|
0xD2, 0x02, 0x80, 0xA8, 0x61, 0x2C, 0x5B, 0xB2, 0x56, 0x43, 0x8B, 0x85,
|
||||||
|
0xC3, 0x2F, 0x1C, 0x83, 0x21, 0xA1, 0x1C, 0x8B, 0xC6, 0xF8, 0xFA, 0xC8,
|
||||||
|
0xFF, 0x32, 0x80, 0x0B, 0x55, 0x6A, 0xA0, 0xCC, 0xE0, 0x94, 0x61, 0xDA,
|
||||||
|
0x30, 0xA4, 0xC4, 0xAC, 0x6A, 0x91, 0x16, 0x81, 0x1F, 0x48, 0x4A, 0xB1,
|
||||||
|
0x0F, 0x86, 0x72, 0x02, 0x3C, 0x8E, 0x13, 0x76, 0xBA, 0xD8, 0xC3, 0x35,
|
||||||
|
0xD8, 0x73, 0xAC, 0xBE, 0xC4, 0xE2, 0xAC, 0x6A, 0xD2, 0x4E, 0x1A, 0x24,
|
||||||
|
0x52, 0xBF, 0x1D, 0x74, 0x0C, 0x13, 0xB0, 0xA6, 0x92, 0x6A, 0x77, 0xB6,
|
||||||
|
0x94, 0x33, 0x8C, 0x65, 0x50, 0xA8, 0xE1, 0xE4, 0x71, 0x62, 0x85, 0xEF,
|
||||||
|
0x39, 0xA9, 0xF4, 0x21, 0x27, 0xAA, 0x1A, 0xBA, 0x8A, 0x27, 0x02, 0x27,
|
||||||
|
0x6F, 0xA0, 0x70, 0x27, 0x40, 0x8B, 0x21, 0xD7, 0x55, 0x4C, 0xE0, 0xC9,
|
||||||
|
0x0C, 0x99, 0x64, 0xAC, 0xAE, 0x41, 0xAA, 0xE5, 0x26, 0xF6, 0xFF, 0x6C,
|
||||||
|
0x7E, 0x35, 0xED, 0xF7, 0x1D, 0x3C, 0x96, 0x61, 0xC1, 0xF7, 0xB0, 0x5D,
|
||||||
|
0xE8, 0x66, 0xBB, 0x91, 0x39, 0x6D, 0x26, 0x60, 0x25, 0x14, 0xA8, 0xF0,
|
||||||
|
0xD5, 0x6F, 0x04, 0x58, 0xC0, 0x00, 0xBF, 0x50, 0x45, 0xE2, 0xCE, 0x99,
|
||||||
|
0x00, 0xF4, 0x36, 0x55, 0xA4, 0x7E, 0xEB, 0x56, 0xBF, 0x9D, 0xFD, 0x5F,
|
||||||
|
0xBF, 0x15, 0x7D, 0x40, 0x84, 0x03, 0x00, 0x00};
|
||||||
Reference in New Issue
Block a user