Skip to content

ej020586/gauges

Repository files navigation

gauges

digital gauges for beamng

Getting Started

  1. Prerequisites

  2. Clone the Repository

    # Open your terminal/command prompt
    git clone https://github.com/your-username/gauges.git
    cd gauges
  3. Install Dependencies

    npm install
  4. Start the Development Server

    npm run dev

    This will start the development server at http://localhost:3000

  5. 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>
      );
    };
  6. 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
  7. Basic Customization

    • Modify the CSS in your gauge component
    • Use the provided hooks to access different vehicle data
    • Experiment with different layouts and visualizations

Use Gauges

hook up to mod

About

digital gauges for beamng

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published