diff --git a/.idea/captdevicecontrol.iml b/.idea/captdevicecontrol.iml
index 90ae0426576fa004fd2b106728d4e6fde6c57b95..26456f591c9b6fa76a53f99e762aa6e1d8be1ab5 100644
--- a/.idea/captdevicecontrol.iml
+++ b/.idea/captdevicecontrol.iml
@@ -6,8 +6,9 @@
<sourceFolder url="file://$MODULE_DIR$/src/CaptDeviceControl" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/src/CaptDeviceControl/adcaptdevicecontrol" />
<excludeFolder url="file://$MODULE_DIR$/src/CaptDeviceControl/old" />
+ <excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
- <orderEntry type="jdk" jdkName="Python 3.11 (.venv312_al) (3)" jdkType="Python SDK" />
+ <orderEntry type="jdk" jdkName="Python 3.10 (captdevicecontrol)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="PyDocumentationSettings">
diff --git a/.idea/misc.xml b/.idea/misc.xml
index e3b41e72e2dab35323f978bfdb232027760736f3..c29ee7b6697d02c42ae45ebec1079c1703f3b22c 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -3,5 +3,5 @@
<component name="Black">
<option name="sdkName" value="Python 3.11 (.venv312_al) (3)" />
</component>
- <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11 (.venv312_al) (3)" project-jdk-type="Python SDK" />
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (captdevicecontrol)" project-jdk-type="Python SDK" />
</project>
\ No newline at end of file
diff --git a/examples/config.yaml b/examples/config.yaml
index e71a55b479112ba470307961db8d106f6dd37cc4..d3bf9f950994d53a58988b9acb64c32b091e0e21 100644
--- a/examples/config.yaml
+++ b/examples/config.yaml
@@ -1,4 +1,4 @@
-# - Configuration file stored 2023-11-11 17:00:09.246929 -
+# - Configuration file stored 2023-11-21 15:48:11.683307 -
CaptDeviceConfig: #!!python/object:controller.CaptDeviceConfig
sample_rate: 50000 # Sample rate: Sample rate of the device
streaming_rate: 500 # Streaming rate: Streaming rate in Hz (should be below 1kHz)
diff --git a/examples/main.py b/examples/main.py
index 765617a57d1f6f0a96f7ec20f58b7a5a4c26fb4a..d91a43c25f3729285069671f48e7edf22a00a095 100644
--- a/examples/main.py
+++ b/examples/main.py
@@ -2,13 +2,13 @@ import logging
import sys
import os
-sys.path.append('../src/')
+sys.path.append('..')
from PySide6.QtWidgets import QApplication
from rich.logging import RichHandler
-import src.CaptDeviceControl as CaptDevice
+import CaptDeviceControl as CaptDevice
if __name__ == "__main__":
diff --git a/requirements.txt b/requirements.txt
index 52b462db1c530f0d18da3a911a32b013f42f9c0b..e061be5e3eb6e2593320c309d1cc46cf0cbce277 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -6,5 +6,5 @@ scipy~=1.10.1
rich
# add the git repo
git+https://gitlab.tugraz.at/flexsensor-public/confighandler.git@develop
-#git+https://gitlab.tugraz.at/flexsensor-public/fswidgets.git@develop
-../fswidgets
+git+https://gitlab.tugraz.at/flexsensor-public/fswidgets.git@develop
+#../fswidgets
diff --git a/src/CaptDeviceControl (1)/adcaptdevicecontrol/.idea/adcaptdevicecontrol.iml b/src/CaptDeviceControl/adcaptdevicecontrol/.idea/adcaptdevicecontrol.iml
similarity index 100%
rename from src/CaptDeviceControl (1)/adcaptdevicecontrol/.idea/adcaptdevicecontrol.iml
rename to src/CaptDeviceControl/adcaptdevicecontrol/.idea/adcaptdevicecontrol.iml