VW/Audi rear brake pads replacement with VCDS

Open Rear Parking Brake Prerequisites: Connect a battery charger as per repair manual. Cycle the Parking Brake ON, then OFF first. [Select][53 – Parking Brake][Basic Settings – 04]Select Start lining change mode[Go!] to activate the Basic Setting.The brake calipers will then open, allowing the pads to be changed.After the result of Finished Correctly appears click […]

Read More

Install OCSInventory on Debian 10

Install Apache ,ngnix or any your favourite web server, also install MariaDB. I prefer Apache2 so let’s go: apt install apache2 libapache2-mod-php libapache2-mod-perl2 libapache-dbi-perl libapache-db-perl php-soap php-curl php-json php-xml php-mbstring php-gd php-pclzip php-xmlrpc 2. Creating a new database for OCSInventory First access the MariaDB shell: mysql -u root -p And then, it creates the new […]

Read More

ESP8266 throttle with oled code

#include <Arduino.h> #include <U8x8lib.h> #ifdef U8X8_HAVE_HW_SPI #include <SPI.h> #endif U8X8_SH1106_128X64_NONAME_HW_I2C u8x8(/* reset=*/ U8X8_PIN_NONE); const int analogInPin = A0; // ESP8266 Analog Pin ADC0 = A0 int sensorValue = 0; // value read from the pot int outputValue = 0; // value to output to a PWM pin int analogInput = A0; float Vout = 0.00; […]

Read More