├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── Schematic_esp32Wheel_2021-01-29.pdf ├── include └── README ├── lib └── README ├── platformio.ini ├── src ├── battery.h ├── button.h ├── encoder.h ├── main.cpp ├── sdkconfig └── sdkconfig.h └── test └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/README.md -------------------------------------------------------------------------------- /Schematic_esp32Wheel_2021-01-29.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/Schematic_esp32Wheel_2021-01-29.pdf -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/lib/README -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/src/battery.h -------------------------------------------------------------------------------- /src/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/src/button.h -------------------------------------------------------------------------------- /src/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/src/encoder.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/src/sdkconfig -------------------------------------------------------------------------------- /src/sdkconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/src/sdkconfig.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manoukianv/SteeringWheelBluetooth/HEAD/test/README --------------------------------------------------------------------------------