├── .idea ├── .gitignore ├── bldc-ffb-wheel.iml ├── modules.xml └── vcs.xml ├── README.md ├── docs ├── codemasters_games.md ├── cube-programmer │ ├── download_firmware.jpg │ ├── programmer_connect.jpg │ └── programmer_file.jpg └── ru │ └── index.md ├── firmware ├── README.md ├── hex │ └── ffbeast-odrive-240124.hex └── settings-ui │ ├── D3Dcompiler_47.dll │ ├── ForceTest.exe │ ├── Qt6Core.dll │ ├── Qt6Gui.dll │ ├── Qt6Network.dll │ ├── Qt6Pdf.dll │ ├── Qt6Svg.dll │ ├── Qt6Widgets.dll │ ├── SDL2.dll │ ├── SimConnect.dll │ ├── ffbeast-hardware-settings-ui.exe │ ├── ffbeast_hardware_icon.png │ ├── ffbeast_logo_icon.png │ ├── ffbeast_logo_icon_inverted.png │ ├── generic │ └── qtuiotouchplugin.dll │ ├── i18n │ └── hardware_settings_ui_ru.qm │ ├── iconengines │ └── qsvgicon.dll │ ├── imageformats │ ├── qgif.dll │ ├── qicns.dll │ ├── qico.dll │ ├── qjpeg.dll │ ├── qpdf.dll │ ├── qsvg.dll │ ├── qtga.dll │ ├── qtiff.dll │ ├── qwbmp.dll │ └── qwebp.dll │ ├── libEGL.dll │ ├── libGLESv2.dll │ ├── libgcc_s_seh-1.dll │ ├── libstdc++-6.dll │ ├── libusb-1.0.dll │ ├── libwinpthread-1.dll │ ├── networkinformation │ └── qnetworklistmanager.dll │ ├── opengl32sw.dll │ ├── platforms │ └── qwindows.dll │ ├── styles │ └── qwindowsvistastyle.dll │ └── tls │ ├── qcertonlybackend.dll │ ├── qopensslbackend.dll │ └── qschannelbackend.dll ├── hardware ├── README.md ├── model_2 │ ├── Build_1_1.jpg │ ├── Build_1_2.jpg │ ├── Build_2_1.jpg │ ├── Build_2_2.jpg │ ├── Build_2_3.jpg │ ├── Capture3.PNG │ ├── Capture4.PNG │ ├── Encoder Bracket Base.STL │ ├── Encoder Pivot.STL │ ├── GT2 Large Adjusted 05.STL │ ├── Motor Support Beam.STL │ ├── Pivot Clamp.STL │ ├── Pivot End LH.STL │ ├── Pivot End RH.STL │ ├── Stand LH.STL │ ├── Stand RH.STL │ ├── motor_clamp.stl │ ├── qr_hub_v1.1.stl │ └── qr_wheel_v1.1.stl └── print_parts │ ├── BASE.STEP │ ├── ENCODER_HOLDER.STEP │ ├── HTD_3M_PULLEY_ENCODER.STEP │ └── HTD_3M_PULLEY_MOTOR.STEP ├── logo.png └── screen ├── guieffects.jpg ├── guihardware.jpg └── scheme.jpg /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/bldc-ffb-wheel.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/.idea/bldc-ffb-wheel.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/README.md -------------------------------------------------------------------------------- /docs/codemasters_games.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/docs/codemasters_games.md -------------------------------------------------------------------------------- /docs/cube-programmer/download_firmware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/docs/cube-programmer/download_firmware.jpg -------------------------------------------------------------------------------- /docs/cube-programmer/programmer_connect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/docs/cube-programmer/programmer_connect.jpg -------------------------------------------------------------------------------- /docs/cube-programmer/programmer_file.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/docs/cube-programmer/programmer_file.jpg -------------------------------------------------------------------------------- /docs/ru/index.md: -------------------------------------------------------------------------------- 1 | Все что -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/hex/ffbeast-odrive-240124.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/hex/ffbeast-odrive-240124.hex -------------------------------------------------------------------------------- /firmware/settings-ui/D3Dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/D3Dcompiler_47.dll -------------------------------------------------------------------------------- /firmware/settings-ui/ForceTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/ForceTest.exe -------------------------------------------------------------------------------- /firmware/settings-ui/Qt6Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/Qt6Core.dll -------------------------------------------------------------------------------- /firmware/settings-ui/Qt6Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/Qt6Gui.dll -------------------------------------------------------------------------------- /firmware/settings-ui/Qt6Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/Qt6Network.dll -------------------------------------------------------------------------------- /firmware/settings-ui/Qt6Pdf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/Qt6Pdf.dll -------------------------------------------------------------------------------- /firmware/settings-ui/Qt6Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/Qt6Svg.dll -------------------------------------------------------------------------------- /firmware/settings-ui/Qt6Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/Qt6Widgets.dll -------------------------------------------------------------------------------- /firmware/settings-ui/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/SDL2.dll -------------------------------------------------------------------------------- /firmware/settings-ui/SimConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/SimConnect.dll -------------------------------------------------------------------------------- /firmware/settings-ui/ffbeast-hardware-settings-ui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/ffbeast-hardware-settings-ui.exe -------------------------------------------------------------------------------- /firmware/settings-ui/ffbeast_hardware_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/ffbeast_hardware_icon.png -------------------------------------------------------------------------------- /firmware/settings-ui/ffbeast_logo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/ffbeast_logo_icon.png -------------------------------------------------------------------------------- /firmware/settings-ui/ffbeast_logo_icon_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/ffbeast_logo_icon_inverted.png -------------------------------------------------------------------------------- /firmware/settings-ui/generic/qtuiotouchplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/generic/qtuiotouchplugin.dll -------------------------------------------------------------------------------- /firmware/settings-ui/i18n/hardware_settings_ui_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/i18n/hardware_settings_ui_ru.qm -------------------------------------------------------------------------------- /firmware/settings-ui/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qgif.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qicns.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qico.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qpdf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qpdf.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qsvg.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qtga.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qtiff.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /firmware/settings-ui/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/imageformats/qwebp.dll -------------------------------------------------------------------------------- /firmware/settings-ui/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/libEGL.dll -------------------------------------------------------------------------------- /firmware/settings-ui/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/libGLESv2.dll -------------------------------------------------------------------------------- /firmware/settings-ui/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /firmware/settings-ui/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/libstdc++-6.dll -------------------------------------------------------------------------------- /firmware/settings-ui/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/libusb-1.0.dll -------------------------------------------------------------------------------- /firmware/settings-ui/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/libwinpthread-1.dll -------------------------------------------------------------------------------- /firmware/settings-ui/networkinformation/qnetworklistmanager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/networkinformation/qnetworklistmanager.dll -------------------------------------------------------------------------------- /firmware/settings-ui/opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/opengl32sw.dll -------------------------------------------------------------------------------- /firmware/settings-ui/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/platforms/qwindows.dll -------------------------------------------------------------------------------- /firmware/settings-ui/styles/qwindowsvistastyle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/styles/qwindowsvistastyle.dll -------------------------------------------------------------------------------- /firmware/settings-ui/tls/qcertonlybackend.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/tls/qcertonlybackend.dll -------------------------------------------------------------------------------- /firmware/settings-ui/tls/qopensslbackend.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/tls/qopensslbackend.dll -------------------------------------------------------------------------------- /firmware/settings-ui/tls/qschannelbackend.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/firmware/settings-ui/tls/qschannelbackend.dll -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/README.md -------------------------------------------------------------------------------- /hardware/model_2/Build_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Build_1_1.jpg -------------------------------------------------------------------------------- /hardware/model_2/Build_1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Build_1_2.jpg -------------------------------------------------------------------------------- /hardware/model_2/Build_2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Build_2_1.jpg -------------------------------------------------------------------------------- /hardware/model_2/Build_2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Build_2_2.jpg -------------------------------------------------------------------------------- /hardware/model_2/Build_2_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Build_2_3.jpg -------------------------------------------------------------------------------- /hardware/model_2/Capture3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Capture3.PNG -------------------------------------------------------------------------------- /hardware/model_2/Capture4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Capture4.PNG -------------------------------------------------------------------------------- /hardware/model_2/Encoder Bracket Base.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Encoder Bracket Base.STL -------------------------------------------------------------------------------- /hardware/model_2/Encoder Pivot.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Encoder Pivot.STL -------------------------------------------------------------------------------- /hardware/model_2/GT2 Large Adjusted 05.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/GT2 Large Adjusted 05.STL -------------------------------------------------------------------------------- /hardware/model_2/Motor Support Beam.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Motor Support Beam.STL -------------------------------------------------------------------------------- /hardware/model_2/Pivot Clamp.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Pivot Clamp.STL -------------------------------------------------------------------------------- /hardware/model_2/Pivot End LH.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Pivot End LH.STL -------------------------------------------------------------------------------- /hardware/model_2/Pivot End RH.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Pivot End RH.STL -------------------------------------------------------------------------------- /hardware/model_2/Stand LH.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Stand LH.STL -------------------------------------------------------------------------------- /hardware/model_2/Stand RH.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/Stand RH.STL -------------------------------------------------------------------------------- /hardware/model_2/motor_clamp.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/motor_clamp.stl -------------------------------------------------------------------------------- /hardware/model_2/qr_hub_v1.1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/qr_hub_v1.1.stl -------------------------------------------------------------------------------- /hardware/model_2/qr_wheel_v1.1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/model_2/qr_wheel_v1.1.stl -------------------------------------------------------------------------------- /hardware/print_parts/BASE.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/print_parts/BASE.STEP -------------------------------------------------------------------------------- /hardware/print_parts/ENCODER_HOLDER.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/print_parts/ENCODER_HOLDER.STEP -------------------------------------------------------------------------------- /hardware/print_parts/HTD_3M_PULLEY_ENCODER.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/print_parts/HTD_3M_PULLEY_ENCODER.STEP -------------------------------------------------------------------------------- /hardware/print_parts/HTD_3M_PULLEY_MOTOR.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/hardware/print_parts/HTD_3M_PULLEY_MOTOR.STEP -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/logo.png -------------------------------------------------------------------------------- /screen/guieffects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/screen/guieffects.jpg -------------------------------------------------------------------------------- /screen/guihardware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/screen/guihardware.jpg -------------------------------------------------------------------------------- /screen/scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o-devices/bldc-ffb-wheel/HEAD/screen/scheme.jpg --------------------------------------------------------------------------------