diff --git a/bash.log b/bash.log
index ca4556ce117b4d5448e3dd9822844ab85e2b842c..b97e3085e1d4f2dc38ac6e14122f2b8d41577bb1 100644
--- a/bash.log
+++ b/bash.log
@@ -1,3 +1,13 @@
 2022-06-08 12:53:41
 fatal: unable to access 'https://github.com/SirWalross/MessdatenSilo.git/': Could not resolve host: github.com
 
+[main c7812e5] New data
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+fatal: unable to access 'https://github.com/SirWalross/MessdatenSilo.git/': Could not resolve host: github.com
+
+2022-06-08 12:53:42, WARNING, [main_logger.main:136]	Starting
+2022-06-08 12:53:42, WARNING, [main_logger.get_offset:81]	Didn't find any old offsets, so starting at 0.
+2022-06-08 12:53:42, WARNING, [main_logger.main:146]	Connected to serial ports
+2022-06-08 13:03:02
+fatal: unable to access 'https://github.com/SirWalross/MessdatenSilo.git/': Could not resolve host: github.com
+
diff --git a/config.yml b/config.yml
index d3fe474fd6ca3f674dd6c1a9056c27ef7c420ad7..813b81c4765127e83504d5c7744334e4b0cda13f 100644
--- a/config.yml
+++ b/config.yml
@@ -14,6 +14,6 @@ InfoLogger:
         - WARNING
 
 Data:
-    factors: [9.6474, 0, 10.9132, -11.6764] # factors for the 4 dms
+    factors: [1.74, 0, 0.9, -0.96] # factors for the 4 dms
     delta_time: 30 # time between logging data
     smoothing: false # whether to smoothe the logged data
diff --git a/main.py b/main.py
index b3c5fa8041cc7779e5e74ed9ce4d10fd076498e9..76b4d1d7021b482cd1db9554d06ad37592ec8a02 100644
--- a/main.py
+++ b/main.py
@@ -182,7 +182,7 @@ def main(config: Any) -> None:
 
             if time.time() - last_write > delta_time:
                 # write data
-                data_logger.info(",".join([f"{value/n * factors[i]:.5f}" for i, value in enumerate(data)]) + f",{n}")
+                data_logger.info(",".join([f"{(value/n) * factors[i]:.5f}" for i, value in enumerate(data)]) + f",{n}")
                 logger.debug("Wrote data")
                 n = 0
                 data = np.zeros((8,))