diff --git a/examples/simple_producer/src/main.rs b/examples/simple_producer/src/main.rs index 82784ea..963c469 100644 --- a/examples/simple_producer/src/main.rs +++ b/examples/simple_producer/src/main.rs @@ -140,13 +140,13 @@ async fn main() -> Result<(), Box> { tokio::time::sleep_until(next_time).await; sin_tlm_handle.publish( Value::Float32( - (f32::TAU() * (index as f32) / (1000.0_f32)).sin() + (f32::TAU() * (index as f32) / (1000.0_f32)).sin() + (index as f32) / (1000.0_f32) ), chrono::Utc::now(), ).await?; cos_tlm_handle.publish( Value::Float64( - (f64::TAU() * (index as f64) / (1000.0_f64)).cos() + (f64::TAU() * (index as f64) / (1000.0_f64)).cos() + (index as f64) / (1000.0_f64) ), chrono::Utc::now(), ).await?; diff --git a/frontend/src/components/Axis.vue b/frontend/src/components/Axis.vue index d843ad2..db10217 100644 --- a/frontend/src/components/Axis.vue +++ b/frontend/src/components/Axis.vue @@ -1,24 +1,183 @@ \ No newline at end of file diff --git a/frontend/src/components/Graph.vue b/frontend/src/components/Graph.vue index bfbdfca..373d07f 100644 --- a/frontend/src/components/Graph.vue +++ b/frontend/src/components/Graph.vue @@ -1,13 +1,14 @@ \ No newline at end of file diff --git a/frontend/src/components/Line.vue b/frontend/src/components/Line.vue index bf0d63d..6714659 100644 --- a/frontend/src/components/Line.vue +++ b/frontend/src/components/Line.vue @@ -1,6 +1,6 @@