Files
Avii c50bb6c344
All checks were successful
CI / Rust checks (push) Successful in 2m2s
we don't need this right now
2024-10-20 13:13:22 +02:00
..
2024-10-20 13:13:22 +02:00

SimConnect SDK Examples

Checkout the repository

git clone git@github.com:mihai-dinculescu/simconnect-sdk-rs.git
cd simconnect-sdk-rs

Receiving data

cargo run --bin data

Receiving data with tracing

To see all tracing information at the trace level and above (most verbose), run:

RUST_LOG=trace cargo run --bin data_with_tracing

To see all tracing information at the debug level and above (less verbose than info), run:

RUST_LOG=debug cargo run --bin data_with_tracing

Receiving data without the derive macro

cargo run --bin data_without_macro

Receiving data using multiple objects

cargo run --bin data_multiple_objects

Receiving facilities from cache

cargo run --bin facilities

Subscribe to client events

cargo run --bin subscribe_to_client_events

Subscribe to system events

cargo run --bin subscribe_to_system_events