diff --git a/syringe.cpp b/syringe.cpp index ebb9f37c31b0d639d1e1526c4564713cab81811f..e2e3a56d5c30c7213f4b9dcbecb194e1bab17d95 100644 --- a/syringe.cpp +++ b/syringe.cpp @@ -39,22 +39,6 @@ string Syringe :: get_id() -void Syringe :: setupJsonSyringe( float total_volume_mL, float internal_diameter_mm, int id) -{ - - //ADD INITIALISATION VALUES TO THE DOC - SyringeJSON["total_volume_mL"] = total_volume_mL; - SyringeJSON["internal_diameter_mm"] = internal_diameter_mm; - SyringeJSON["id"] = id; - - -} - - - - - - diff --git a/syringe.h b/syringe.h index 05bb5722ed9366ca04424e339ed92cda1a0a6b8b..0536ac8713c4ec55aadd0823b1bcde5a58f30ff0 100644 --- a/syringe.h +++ b/syringe.h @@ -27,7 +27,6 @@ class Syringe //JSON DOCUMENT StaticJsonDocument<200> SyringeJSON; //200 = RAM allocated to this document - void setupJsonSyringe( float total_volume_mL, float internal_diameter_mm, int id); }; diff --git a/syringefilled.cpp b/syringefilled.cpp index aee95ee507f01c1b23e2887213274affcfe6d38c..17f42b7401bb84089c4e033fa61123929f3f6a31 100644 --- a/syringefilled.cpp +++ b/syringefilled.cpp @@ -89,23 +89,6 @@ bool SyringeFilled :: get_emergency() } -void SyringeFilled :: setupJsonSyringeFilled(float exchange_throughput_uL_per_sec, float exchange_volume_mL, float remaining_volume_mL, bool push, Syringe* id_syringe, float screw_thread_mm, bool clockwise_equals_push) -{ - - //ADD INITIALISATION VALUES TO THE DOC - SyringeFilledJSON["exchange_throughput_uL_per_sec"] = exchange_throughput_uL_per_sec; - SyringeFilledJSON["exchange_volume_mL"] = exchange_volume_mL; - SyringeFilledJSON["remaining_volume_mL"] = remaining_volume_mL; - SyringeFilledJSON["push"] = push; - SyringeFilledJSON["id_syringe"] = SyringeJSON["id"]; - SyringeFilledJSON["screw_thread_mm"] = screw_thread_mm; - SyringeFilledJSON["clockwise_equals_push"] = clockwise_equals_push; - - - -} - - //CONVERSIONS float SyringeFilled::volume_to_distance(float volume_mL, Syringe* id_syringe) diff --git a/syringefilled.h b/syringefilled.h index 8cbfe8b56ef7008c5080105a7aa2be9a498f59ba..4724fd7765f7d6573bc58fbba75e5b13d7585f65 100644 --- a/syringefilled.h +++ b/syringefilled.h @@ -66,8 +66,6 @@ class SyringeFilled : public Motor //JSON DOCUMENT StaticJsonDocument<200> SyringeFilledJSON; //200 = RAM allocated to this document - void setupJsonSyringeFilled(float exchange_throughput_uL_per_sec, float exchange_volume_mL, float remaining_volume_mL, bool push, Syringe* id_syringe, float screw_thread_mm, bool clockwise_equals_push); - //CONVERSIONS float volume_to_distance(float volume_mL, Syringe* id_syringe);