digital gauges for beamng
-
Prerequisites
- Install Node.js (version 16 or higher)
- Install Git
- A code editor (we recommend Visual Studio Code)
-
Clone the Repository
# Open your terminal/command prompt git clone https://github.com/your-username/gauges.git cd gauges
-
Install Dependencies
npm install
-
Start the Development Server
npm run dev
This will start the development server at
http://localhost:3000
-
Create Your First Gauge
- Navigate to the
src/components/gauges
folder - Create a new file for your gauge (e.g.,
MyGauge.tsx
) - Use the following template to get started:
import { useGaugeData } from '@/hooks/useGaugeData'; export const MyGauge = () => { const { value } = useGaugeData('engineRPM'); // Replace with desired data point return ( <div className="gauge"> <h2>My Gauge</h2> <div>{value}</div> </div> ); };
- Navigate to the
-
Test Your Gauge
- Import and add your gauge to
src/pages/index.tsx
- The gauge will automatically update with live data when connected to BeamNG
- Import and add your gauge to
-
Basic Customization
- Modify the CSS in your gauge component
- Use the provided hooks to access different vehicle data
- Experiment with different layouts and visualizations