diff --git a/host_gui/make.sh b/host_gui/make.sh
index 56fb9f7caed59379b764cce7cb1e0d894dd3e88e..36a876f3e7075b901c9ecf221333d6a4c26563ec 100755
--- a/host_gui/make.sh
+++ b/host_gui/make.sh
@@ -1,5 +1,21 @@
 #!/bin/sh -ex
+
 pwd=$(pwd)
 cd ${ESP8266ARDUINO}/tests/host
 make FORCE32=0 ssl
-make -j 10 FORCE32=0 D=1 USERCFLAGS="-I ${ARDUINOLIB}/emuAsync/replacement" ULIBDIRS=${ARDUINOLIB}/emuAsync:${ARDUINOLIB}/ESPUI:${ARDUINOLIB}/ArduinoJson:${ARDUINOLIB}/arduinoWebSockets ${pwd}/../pousseseringue-arduino
\ No newline at end of file
+make -j 10 FORCE32=0 D=1 USERCFLAGS="-I ${ARDUINOLIB}/emuAsync/replacement" ULIBDIRS=${ARDUINOLIB}/emuAsync:${ARDUINOLIB}/ESPUI:${ARDUINOLIB}/ArduinoJson:${ARDUINOLIB}/arduinoWebSockets ${pwd}/../pousseseringue-arduino
+
+(./bin/pousseseringue-arduino/pousseseringue-arduino -b "$@" 2>&1 | grep -v '^http-server loop: conn=') & pid=$!
+trap "kill ${pid}" EXIT INT
+
+sleep 1
+true '----------------------------------------'
+true '----------- starting firefox -----------'
+true '----------------------------------------'
+sleep 4
+firefox -new-window http://localhost:9080
+
+while true; do
+    true '^C to quit'
+    read junk
+done
diff --git a/motor.h b/motor.h
index 5d72027baeb858005ff243fa33a789b5031d266c..4b0b65fc018f34e16d17c098f00f7efa17a7552a 100644
--- a/motor.h
+++ b/motor.h
@@ -1,4 +1,5 @@
 
+#pragma once
 
 class Motor
 {
@@ -10,5 +11,3 @@ private:
 	int current_step_count = 0;
 };
 
-// Global object
-extern Motor motor;
diff --git a/pousseseringue-arduino.cpp b/pousseseringue-arduino.cpp
index 22bd1e117e9db7da227ea547ea5819a027218ebe..ed4a1eb9823fe17b28db09610cd6782a1272e4ec 100644
--- a/pousseseringue-arduino.cpp
+++ b/pousseseringue-arduino.cpp
@@ -55,6 +55,7 @@
 #include <AccelStepper.h>
 #endif // !CORE_MOCK
 #include "Debouncer.h"          // local, debouncer, short counter, long detector
+#include "syringe.h"
 #include "common.h"
 
 
@@ -90,7 +91,8 @@ int stepDurationMs = STEP_DURATION_DEFAULT_MS;
 float stepsPerDuration2rpm () { return 60.0 * stepsPerDuration / ((MOTOR_STEPS * MICROSTEPS_CONF) * (stepDurationMs / 1000.0)); }
 int rpming = 0; // -1, 0 or +1
 
-
+// single syringe global instance
+Syringe syringe;
 
 const char* oledMode ()
 {
@@ -268,10 +270,16 @@ void loop()
 {
     nowMs = millis();
    
+  #if CORE_MOCK
+    bool changeA = false;
+    bool changeB = false;
+    bool changeC = false;
+  #else
     // button management (nowMs must be updated)
     bool changeA = bA.update(!digitalRead(BTNA));
     bool changeB = bB.update(!digitalRead(BTNB));
     bool changeC = bC.update(!digitalRead(BTNC));
+  #endif
 
     if (changeA)
     {
diff --git a/pousseseringue-arduino.ino b/pousseseringue-arduino.ino
index 9207b3375a8c57e97944e3c5108a586406edd119..e70951cbf584db88608da47144d6c847bb6d8936 100644
--- a/pousseseringue-arduino.ino
+++ b/pousseseringue-arduino.ino
@@ -1,8 +1,10 @@
 
 // please edit this file: pousseseringue-arduino.cpp
 
-// Pour la compilation local sur le PC
+// Pour la compilation locale sur le PC
 #if CORE_MOCK
   #include "pousseseringue-arduino.cpp"
   #include "web.cpp"
+  #include "syringe.cpp"
+  #include "motor.cpp"
 #endif // !CORE_MOCK
diff --git a/syringe.cpp b/syringe.cpp
index efdf0a6dde1506ec46f6b92383ad081e1fb67035..7a831b35bb0534fb3399e8761f9798699438bffd 100644
--- a/syringe.cpp
+++ b/syringe.cpp
@@ -1,12 +1,6 @@
 #include <math.h>
 
 #include "syringe.h"
-#include "motor.h"
-
-// Global object
-Syringe syringe;
-
-// Members definitions
 
 float Syringe::volumeToDistance(float volume)
 {
diff --git a/syringe.h b/syringe.h
index f28710fc0a389d2db72c89c97f2a12e8f175b71b..49dea578113e5d65ed020218cd2830f5d604ddd5 100644
--- a/syringe.h
+++ b/syringe.h
@@ -1,5 +1,7 @@
 
+#pragma once
 
+#include "motor.h"
 
 class Syringe
 {
@@ -41,7 +43,6 @@ private:
 	bool is_configured = false;
 	float remaining_volume = 0;
 	float piston_surface = 0;
+	
+	Motor motor;
 };
-
-// Global object
-extern Syringe syringe;
diff --git a/web.cpp b/web.cpp
index 48e8c2422f2e9bba42c0dad7a203cf3d7abf4728..b2b0794b03f37f23bac52961981caa58a16eb180 100644
--- a/web.cpp
+++ b/web.cpp
@@ -12,6 +12,8 @@ uint16_t button1;
 uint16_t millisLabelId;
 uint16_t switchOne;
 
+extern Syringe syringe;
+
 
 void numberCall( Control* sender, int type ) {
   Serial.println( sender->value );