├── .DS_Store ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GUI ├── .DS_Store ├── .sync_75cdc8a1dfb7.db ├── Android │ ├── .DS_Store │ ├── UC2-TheBox │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── debug │ │ │ │ ├── app-debug.apk │ │ │ │ └── output.json │ │ │ ├── libs │ │ │ │ ├── HikariCP-2.4.7.jar │ │ │ │ ├── bugsnag-3.6.1.jar │ │ │ │ ├── commons-codec-1.10.jar │ │ │ │ ├── h2-mvstore-1.4.196.jar │ │ │ │ ├── jackson-annotations-2.9.0.jar │ │ │ │ ├── jackson-core-2.9.1.jar │ │ │ │ ├── jackson-databind-2.9.1.jar │ │ │ │ ├── librato-java-2.1.0.jar │ │ │ │ ├── log4j-1.2.17.jar │ │ │ │ ├── metrics-core-3.2.2.jar │ │ │ │ ├── metrics-jvm-3.2.2.jar │ │ │ │ ├── metrics-librato-5.1.0.jar │ │ │ │ ├── moquette-0.12.1.jar │ │ │ │ ├── moquette-broker-0.12.1.jar │ │ │ │ ├── netty-buffer-4.1.22.Final.jar │ │ │ │ ├── netty-codec-4.1.22.Final.jar │ │ │ │ ├── netty-codec-http-4.1.22.Final.jar │ │ │ │ ├── netty-codec-mqtt-4.1.22.Final.jar │ │ │ │ ├── netty-common-4.1.22.Final.jar │ │ │ │ ├── netty-handler-4.1.22.Final.jar │ │ │ │ ├── netty-resolver-4.1.22.Final.jar │ │ │ │ ├── netty-transport-4.1.22.Final.jar │ │ │ │ ├── netty-transport-native-epoll-4.1.22.Final-linux-x86_64.jar │ │ │ │ ├── netty-transport-native-unix-common-4.1.22.Final.jar │ │ │ │ ├── org.eclipse.paho.android.service-1.1.1.jar │ │ │ │ ├── org.eclipse.paho.client.mqttv3-1.1.1.jar │ │ │ │ ├── slf4j-api-1.7.25.jar │ │ │ │ └── slf4j-log4j12-1.7.5.jar │ │ │ ├── proguard-rules.pro │ │ │ ├── release │ │ │ │ ├── app-release.apk │ │ │ │ └── output.json │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── de │ │ │ │ │ └── nanoimaging │ │ │ │ │ └── uc2controler │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MqttUtil.java │ │ │ │ │ ├── broker │ │ │ │ │ ├── MQTTBroker.java │ │ │ │ │ ├── MQTTNotificationBroker.java │ │ │ │ │ ├── MQTTService.java │ │ │ │ │ └── ServerInstance.java │ │ │ │ │ └── util │ │ │ │ │ ├── InputFilterMinMax.java │ │ │ │ │ └── Utils.java │ │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_robot.xml │ │ │ │ ├── layout │ │ │ │ └── main_view.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── code │ │ │ └── main_mqttstandalone_ledarray │ │ │ │ └── main_mqttstandalone_ledarray.ino │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── images │ │ │ ├── Android_GUI.png │ │ │ └── MQTT_GUI.png │ │ └── settings.gradle │ ├── UC2-basic │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── debug │ │ │ │ └── output.json │ │ │ ├── libs │ │ │ │ ├── org.eclipse.paho.android.service-1.1.1.jar │ │ │ │ └── org.eclipse.paho.client.mqttv3-1.1.1.jar │ │ │ ├── proguard-rules.pro │ │ │ ├── release │ │ │ │ └── output.json │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── de │ │ │ │ │ └── nanoimaging │ │ │ │ │ └── uc2controller │ │ │ │ │ ├── BrokerService.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MqttUtil.java │ │ │ │ │ └── MyView.java │ │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── main_view.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── images │ │ │ ├── Android_GUI.png │ │ │ └── MQTT_GUI.png │ │ └── settings.gradle │ └── UC2Serial │ │ ├── .gitignore │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── openuc2 │ │ │ │ └── uc2serial │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── openuc2 │ │ │ │ ├── uc2serial │ │ │ │ ├── CustomProber.java │ │ │ │ ├── DevicesFragment.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── TerminalFragment.java │ │ │ │ └── util │ │ │ │ └── HexDump.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_delete_white_24dp.xml │ │ │ └── ic_send_white_24dp.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── device_list_header.xml │ │ │ ├── device_list_item.xml │ │ │ └── fragment_terminal.xml │ │ │ ├── menu │ │ │ ├── menu_devices.xml │ │ │ └── menu_terminal.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ ├── arrays.xml │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── device_filter.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── NVIDIA_JETSON │ ├── IMAGES │ │ ├── screenshots │ │ │ ├── Screenshot_0.png │ │ │ ├── Screenshot_1.png │ │ │ ├── Screenshot_10.png │ │ │ ├── Screenshot_11.png │ │ │ ├── Screenshot_12.png │ │ │ ├── Screenshot_13.png │ │ │ ├── Screenshot_2.png │ │ │ ├── Screenshot_3.png │ │ │ ├── Screenshot_4.png │ │ │ ├── Screenshot_5.png │ │ │ ├── Screenshot_6.png │ │ │ ├── Screenshot_7.png │ │ │ ├── Screenshot_8.png │ │ │ └── Screenshot_9.png │ │ ├── script01.png │ │ ├── script02.png │ │ ├── script03.png │ │ ├── script04.png │ │ ├── script05.png │ │ ├── script06.png │ │ ├── script07.png │ │ ├── script08.png │ │ ├── script09.png │ │ ├── script10.png │ │ └── writeISO2SD.png │ ├── README.md │ ├── SCRIPTS │ │ ├── FIX_date │ │ │ ├── README.md │ │ │ ├── date_manfix.py │ │ │ ├── date_manfix_py27.py │ │ │ ├── fixdate.sh │ │ │ └── fixdate_py27.sh │ │ ├── MQTT_fluo.py │ │ ├── README.md │ │ ├── SETUP_UC2env │ │ │ ├── 00-UC2_Prerequisites.sh │ │ │ ├── 01-UC2_Berryconda.sh │ │ │ ├── 02-UC2_CreateEnvironment.sh │ │ │ ├── 2019-08-07-062518_1824x984_scrot.png │ │ │ ├── 2019-08-07-062835_1824x984_scrot.png │ │ │ ├── LICENSE.txt │ │ │ └── README.md │ │ ├── SETUP_sparseGITloader │ │ │ └── sparseGITloader.sh │ │ └── START_gui │ │ │ └── UC2.sh │ └── python3 │ │ ├── .\log\startup.txt │ │ ├── .gitignore │ │ ├── .pep8 │ │ ├── I2CBus.py │ │ ├── I2CDevice.py │ │ ├── MQTTDevice.py │ │ ├── MQTTdemo_client.py │ │ ├── MQTTdemo_server.py │ │ ├── SerialDevice.py │ │ ├── SimpleGUI.py │ │ ├── Test_I2C_motor.py │ │ ├── Test_Serial_motor.py │ │ ├── Test_Serial_sweeplens).py │ │ ├── __init__.py │ │ ├── config │ │ ├── autofocus_properties.yaml │ │ ├── backup │ │ │ ├── autofocus_properties.bak │ │ │ ├── camera_autofocus.bak │ │ │ ├── camera_properties.bak │ │ │ ├── camera_properties_fluo.bak │ │ │ ├── communication.bak │ │ │ ├── experiment_properties.bak │ │ │ ├── image │ │ │ │ └── lena.jpg │ │ │ ├── imaging_properties.bak │ │ │ ├── light_patterns.bak │ │ │ ├── light_properties.bak │ │ │ ├── logging.bak │ │ │ ├── main_config.bak │ │ │ ├── motor_properties.bak │ │ │ └── tomography_properties.bak │ │ ├── bak_creator.sh │ │ ├── camera_autofocus.yaml │ │ ├── camera_properties.yaml │ │ ├── camera_properties_fluo.yaml │ │ ├── communication.yaml │ │ ├── experiment_properties.yaml │ │ ├── imaging_properties.yaml │ │ ├── light_patterns.yaml │ │ ├── light_properties.yaml │ │ ├── logging.ini │ │ ├── logging.yaml │ │ ├── main_config.yaml │ │ ├── motor_properties.yaml │ │ └── tomography_properties.yaml │ │ ├── fluidException.py │ │ ├── fluidiscope.kv │ │ ├── fluidiscopeAutofocus.py │ │ ├── fluidiscopeCalculate.py │ │ ├── fluidiscopeGlobVar.py │ │ ├── fluidiscopeIO.py │ │ ├── fluidiscopeInit.py │ │ ├── fluidiscopeLogging.py │ │ ├── fluidiscopeTomography.py │ │ ├── fluidiscopeToolbox.py │ │ ├── fluidiscopeToolbox_bakvimba.py │ │ ├── main.py │ │ ├── vimba │ │ ├── features.txt │ │ ├── vimba_asynchronousframe.py │ │ ├── vimba_asynchronousframe_thread.py │ │ ├── vimba_listfeatures.py │ │ ├── vimba_multithreading_opencv.py │ │ ├── vimba_saveframes.py │ │ ├── vimba_synchrounousframe.py │ │ └── vimba_synchrounousframe_thread.py │ │ └── vimba_camera.py ├── NVIDIA_Micromanager │ └── README.md ├── RASPBERRY_PI │ ├── IMAGES │ │ ├── fix01_gpumem-01.jpg │ │ ├── fix01_gpumem-02.jpg │ │ ├── fix01_gpumem-03.jpg │ │ ├── pi-desktop.jpg │ │ ├── piwiz2.jpg │ │ ├── script01.jpg │ │ ├── script02.jpg │ │ ├── script03.jpg │ │ ├── script04.jpg │ │ ├── script05.jpg │ │ ├── script06.jpg │ │ ├── script07.jpg │ │ ├── script08.jpg │ │ ├── script09.jpg │ │ ├── script10.jpg │ │ ├── script11.jpg │ │ └── writeISO2SD.jpg │ ├── RASPIapp_py27 │ │ ├── I2CBus.py │ │ ├── I2CDevice.py │ │ ├── __init__.py │ │ ├── config │ │ │ ├── autofocus_properties.yaml │ │ │ ├── backup │ │ │ │ ├── autofocus_properties.bak │ │ │ │ ├── camera_properties.bak │ │ │ │ ├── camera_properties_fluo.bak │ │ │ │ ├── experiment_properties.bak │ │ │ │ ├── image │ │ │ │ │ └── lena.jpg │ │ │ │ ├── imaging_properties.bak │ │ │ │ ├── light_patterns.bak │ │ │ │ ├── light_properties.bak │ │ │ │ ├── main_config.bak │ │ │ │ └── motor_properties.bak │ │ │ ├── camera_properties.yaml │ │ │ ├── camera_properties_fluo.yaml │ │ │ ├── experiment_properties.yaml │ │ │ ├── imaging_properties.yaml │ │ │ ├── light_patterns.yaml │ │ │ ├── light_properties.yaml │ │ │ ├── main_config.yaml │ │ │ └── motor_properties.yaml │ │ ├── fluidException.py │ │ ├── fluidiscope.kv │ │ ├── fluidiscopeAutofocus.py │ │ ├── fluidiscopeGlobVar.py │ │ ├── fluidiscopeIO.py │ │ ├── fluidiscopeInit.py │ │ ├── fluidiscopeToolbox.py │ │ ├── fluidiscopeToolbox.py.8858d843f29c304d3ce80cbf8d306313.py │ │ └── main.py │ ├── RASPIapp_py3 │ │ ├── %HOMEDRIVE%%HOMEPATH% │ │ │ └── .matplotlib │ │ │ │ ├── fontlist-v310.json │ │ │ │ └── fontlist-v310.json.matplotlib-lock │ │ ├── .gitignore │ │ ├── .pep8 │ │ ├── GPIODevice.py │ │ ├── I2CBus.py │ │ ├── I2CDevice.py │ │ ├── MQTTDevice.py │ │ ├── MQTTdemo_client.py │ │ ├── MQTTdemo_server.py │ │ ├── SCRIPTS │ │ │ └── MQTT_fluo.py │ │ ├── SerialDevice.py │ │ ├── Test_Serial_motor.py │ │ ├── __init__.py │ │ ├── config │ │ │ ├── autofocus_properties.yaml │ │ │ ├── backup │ │ │ │ ├── autofocus_properties.bak │ │ │ │ ├── camera_autofocus.bak │ │ │ │ ├── camera_properties.bak │ │ │ │ ├── camera_properties_fluo.bak │ │ │ │ ├── communication.bak │ │ │ │ ├── experiment_properties.bak │ │ │ │ ├── image │ │ │ │ │ └── lena.jpg │ │ │ │ ├── imaging_properties.bak │ │ │ │ ├── light_patterns.bak │ │ │ │ ├── light_properties.bak │ │ │ │ ├── logging.bak │ │ │ │ ├── main_config.bak │ │ │ │ ├── motor_properties.bak │ │ │ │ └── tomography_properties.bak │ │ │ ├── bak_creator.sh │ │ │ ├── camera_autofocus.yaml │ │ │ ├── camera_properties.yaml │ │ │ ├── camera_properties_fluo.yaml │ │ │ ├── communication.yaml │ │ │ ├── experiment_properties.yaml │ │ │ ├── imaging_properties.yaml │ │ │ ├── light_patterns.yaml │ │ │ ├── light_properties.yaml │ │ │ ├── logging.ini │ │ │ ├── logging.yaml │ │ │ ├── main_config.yaml │ │ │ ├── motor_properties.yaml │ │ │ └── tomography_properties.yaml │ │ ├── config_old │ │ │ ├── autofocus_properties.yaml │ │ │ ├── backup │ │ │ │ ├── autofocus_properties.bak │ │ │ │ ├── camera_autofocus.bak │ │ │ │ ├── camera_properties.bak │ │ │ │ ├── camera_properties_fluo.bak │ │ │ │ ├── communication.bak │ │ │ │ ├── experiment_properties.bak │ │ │ │ ├── image │ │ │ │ │ └── lena.jpg │ │ │ │ ├── imaging_properties.bak │ │ │ │ ├── light_patterns.bak │ │ │ │ ├── light_properties.bak │ │ │ │ ├── logging.bak │ │ │ │ ├── main_config.bak │ │ │ │ ├── motor_properties.bak │ │ │ │ └── tomography_properties.bak │ │ │ ├── bak_creator.sh │ │ │ ├── camera_autofocus.yaml │ │ │ ├── camera_properties.yaml │ │ │ ├── camera_properties_fluo.yaml │ │ │ ├── communication.yaml │ │ │ ├── experiment_properties.yaml │ │ │ ├── imaging_properties.yaml │ │ │ ├── light_patterns.yaml │ │ │ ├── light_properties.yaml │ │ │ ├── logging.ini │ │ │ ├── logging.ini.bak │ │ │ ├── logging.yaml │ │ │ ├── main_config.yaml │ │ │ ├── motor_properties.yaml │ │ │ └── tomography_properties.yaml │ │ ├── fluidException.py │ │ ├── fluidiscope.kv │ │ ├── fluidiscopeAutofocus.py │ │ ├── fluidiscopeCalculate.py │ │ ├── fluidiscopeGlobVar.py │ │ ├── fluidiscopeIO.py │ │ ├── fluidiscopeInit.py │ │ ├── fluidiscopeLogging.py │ │ ├── fluidiscopeTomography.py │ │ ├── fluidiscopeToolbox.py │ │ └── main.py │ ├── README.md │ └── SCRIPTS │ │ ├── FIX_date │ │ ├── README.md │ │ ├── date_manfix.py │ │ ├── date_manfix_py27.py │ │ ├── fixdate.sh │ │ └── fixdate_py27.sh │ │ ├── README.md │ │ ├── SETUP_UC2env │ │ ├── 00-UC2_Prerequisites.sh │ │ ├── 01-UC2_Berryconda.sh │ │ ├── 02-UC2_CreateEnvironment.sh │ │ ├── 2019-08-07-062518_1824x984_scrot.png │ │ ├── 2019-08-07-062835_1824x984_scrot.png │ │ ├── LICENSE.txt │ │ └── README.md │ │ ├── SETUP_sparseGITloader │ │ └── sparseGITloader.sh │ │ └── START_gui │ │ └── UC2.sh └── README.md ├── HARDWARE_CONTROL ├── .DS_Store ├── ARDUINO │ ├── GENERAL │ │ ├── deltastage │ │ │ └── deltastage.ino │ │ ├── deltastage_berlin │ │ │ └── deltastage_berlin.ino │ │ ├── ledarr │ │ │ └── ledarr.ino │ │ ├── motors │ │ │ └── motors.ino │ │ └── motors_and_fluo │ │ │ └── motors_and_fluo.ino │ ├── IMAGES │ │ └── Control_I2C_system.jpg │ ├── MINIMALS │ │ ├── Test_LED_setup_func--TESTER.py │ │ ├── Test_LED_setup_func │ │ │ └── Test_LED_setup_func.ino │ │ ├── arduino_minimal_i2c │ │ │ └── arduino_minimal_i2c.ino │ │ ├── ledfluo │ │ │ └── ledfluo.ino │ │ └── minimal_i2c_nosleep │ │ │ └── minimal_i2c_nosleep.ino │ ├── README.md │ └── libraries │ │ ├── Adafruit_GFX │ │ ├── .gitignore │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── Fonts │ │ │ ├── FreeMono12pt7b.h │ │ │ ├── FreeMono18pt7b.h │ │ │ ├── FreeMono24pt7b.h │ │ │ ├── FreeMono9pt7b.h │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ ├── FreeSans12pt7b.h │ │ │ ├── FreeSans18pt7b.h │ │ │ ├── FreeSans24pt7b.h │ │ │ ├── FreeSans9pt7b.h │ │ │ ├── FreeSansBold12pt7b.h │ │ │ ├── FreeSansBold18pt7b.h │ │ │ ├── FreeSansBold24pt7b.h │ │ │ ├── FreeSansBold9pt7b.h │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ ├── FreeSerif12pt7b.h │ │ │ ├── FreeSerif18pt7b.h │ │ │ ├── FreeSerif24pt7b.h │ │ │ ├── FreeSerif9pt7b.h │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ ├── Org_01.h │ │ │ ├── Picopixel.h │ │ │ ├── Tiny3x3a2pt7b │ │ │ └── TomThumb.h │ │ ├── README.md │ │ ├── fontconvert │ │ │ ├── Makefile │ │ │ ├── fontconvert.c │ │ │ ├── fontconvert_win.md │ │ │ └── makefonts.sh │ │ ├── gfxfont.h │ │ ├── glcdfont.c │ │ ├── library.properties │ │ └── license.txt │ │ ├── Adafruit_NeoMatrix │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── Adafruit_NeoMatrix.cpp │ │ ├── Adafruit_NeoMatrix.h │ │ ├── COPYING │ │ ├── README.md │ │ ├── examples │ │ │ ├── matrixtest │ │ │ │ └── matrixtest.pde │ │ │ └── tiletest │ │ │ │ └── tiletest.pde │ │ ├── extras │ │ │ └── gamma.c │ │ ├── gamma.h │ │ └── library.properties │ │ ├── Adafruit_NeoPixel │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .travis.yml │ │ ├── Adafruit_NeoPixel.cpp │ │ ├── Adafruit_NeoPixel.h │ │ ├── COPYING │ │ ├── README.md │ │ ├── esp8266.c │ │ ├── examples │ │ │ ├── RGBWstrandtest │ │ │ │ ├── .esp8266.test.skip │ │ │ │ ├── .trinket.test.skip │ │ │ │ └── RGBWstrandtest.ino │ │ │ ├── StrandtestBLE │ │ │ │ ├── .test.skip │ │ │ │ ├── BLESerial.cpp │ │ │ │ ├── BLESerial.h │ │ │ │ └── StrandtestBLE.ino │ │ │ ├── buttoncycler │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── buttoncycler.ino │ │ │ ├── simple │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── simple.ino │ │ │ └── strandtest │ │ │ │ ├── .esp8266.test.skip │ │ │ │ └── strandtest.ino │ │ ├── keywords.txt │ │ └── library.properties │ │ ├── ArduinoTimerObject │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TimerObject.cpp │ │ ├── TimerObject.h │ │ ├── examples │ │ │ └── Example │ │ │ │ └── Example.ino │ │ └── keywords.txt │ │ ├── StepMotor │ │ ├── StepMotor_Beispiel │ │ │ ├── I2C_StepMotor_Beispiel.ino │ │ │ └── I2C_StepMotor_Beispiel │ │ │ │ └── I2C_StepMotor_Beispiel.ino │ │ ├── keywords.txt │ │ ├── library.properties │ │ └── src │ │ │ ├── StepMotor.cpp │ │ │ └── StepMotor.h │ │ ├── Time │ │ ├── DateStrings.cpp │ │ ├── Readme.txt │ │ ├── Time.cpp │ │ ├── Time.h │ │ ├── TimeLib.h │ │ ├── examples │ │ │ ├── Processing │ │ │ │ └── SyncArduinoClock │ │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ │ └── readme.txt │ │ │ ├── TimeArduinoDue │ │ │ │ └── TimeArduinoDue.ino │ │ │ ├── TimeGPS │ │ │ │ └── TimeGPS.ino │ │ │ ├── TimeNTP │ │ │ │ └── TimeNTP.ino │ │ │ ├── TimeNTP_ESP8266WiFi │ │ │ │ └── TimeNTP_ESP8266WiFi.ino │ │ │ ├── TimeRTC │ │ │ │ └── TimeRTC.ino │ │ │ ├── TimeRTCLog │ │ │ │ └── TimeRTCLog.ino │ │ │ ├── TimeRTCSet │ │ │ │ └── TimeRTCSet.ino │ │ │ ├── TimeSerial │ │ │ │ └── TimeSerial.ino │ │ │ ├── TimeSerialDateStrings │ │ │ │ └── TimeSerialDateStrings.ino │ │ │ └── TimeTeensy3 │ │ │ │ └── TimeTeensy3.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ └── library.properties │ │ ├── WSWire │ │ ├── WSWire.cpp │ │ ├── WSWire.h │ │ ├── examples │ │ │ ├── SFRRanger_reader │ │ │ │ └── SFRRanger_reader.ino │ │ │ ├── digital_potentiometer │ │ │ │ └── digital_potentiometer.ino │ │ │ ├── master_reader │ │ │ │ └── master_reader.ino │ │ │ ├── master_writer │ │ │ │ └── master_writer.ino │ │ │ ├── slave_receiver │ │ │ │ └── slave_receiver.ino │ │ │ └── slave_sender │ │ │ │ └── slave_sender.ino │ │ ├── keywords.txt │ │ └── utility │ │ │ ├── twi.c │ │ │ └── twi.h │ │ └── readme.txt ├── ESP32 │ ├── .DS_Store │ ├── GENERAL │ │ ├── ESP32_ledarr │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── include │ │ │ │ └── README │ │ │ ├── platformio.ini │ │ │ └── src │ │ │ │ ├── ESP32_ledarr │ │ │ │ └── ESP32_ledarr.ino │ │ │ │ └── main.cpp │ │ ├── ESP32_ledarr_minimal_with_Button │ │ │ └── MinimalLED.cpp │ │ ├── ESP32_motor_fluo │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── include │ │ │ │ └── README │ │ │ ├── platformio.ini │ │ │ └── src │ │ │ │ └── main.cpp │ │ ├── IMAGES │ │ │ ├── ESP32_SetupBoard.png │ │ │ └── ESP32_ledarrINO.png │ │ ├── MQTTtest │ │ │ ├── MQTTDevice.py │ │ │ └── cmdInterface.py │ │ └── README.md │ ├── IMAGES │ │ ├── Control_MQTT_system.jpg │ │ ├── arduinoidePATH.png │ │ ├── bak │ │ │ └── mqtt01.png │ │ └── mqtt01m.png │ ├── LIBRARIES │ │ └── pubsubclient │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── mqtt_auth │ │ │ │ └── mqtt_auth.ino │ │ │ ├── mqtt_basic │ │ │ │ └── mqtt_basic.ino │ │ │ ├── mqtt_esp8266 │ │ │ │ └── mqtt_esp8266.ino │ │ │ ├── mqtt_large_message │ │ │ │ └── mqtt_large_message.ino │ │ │ ├── mqtt_publish_in_callback │ │ │ │ └── mqtt_publish_in_callback.ino │ │ │ ├── mqtt_reconnect_nonblocking │ │ │ │ └── mqtt_reconnect_nonblocking.ino │ │ │ └── mqtt_stream │ │ │ │ └── mqtt_stream.ino │ │ │ ├── keywords.txt │ │ │ ├── library.json │ │ │ ├── library.properties │ │ │ ├── src │ │ │ ├── PubSubClient.cpp │ │ │ └── PubSubClient.h │ │ │ └── tests │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── src │ │ │ ├── connect_spec.cpp │ │ │ ├── keepalive_spec.cpp │ │ │ ├── publish_spec.cpp │ │ │ ├── receive_spec.cpp │ │ │ └── subscribe_spec.cpp │ │ │ ├── testcases │ │ │ ├── __init__.py │ │ │ ├── mqtt_basic.py │ │ │ ├── mqtt_publish_in_callback.py │ │ │ └── settings.py │ │ │ └── testsuite.py │ ├── README.md │ ├── SERIAL │ │ ├── ESP32_lenslaser │ │ │ ├── ESP32_lenslaser.ino │ │ │ └── test_esp32_lenslaser.py │ │ └── ESP32_motor_led │ │ │ ├── ESP32_motor_led.ino │ │ │ └── test_esp32_lenslaser.py │ └── forANDROID │ │ ├── ESP32_MQTT_TheBox │ │ └── ESP32_MQTT_TheBox.ino │ │ ├── ESP32_MQTT_UC2_APP_Xy │ │ └── ESP32_MQTT_UC2_APP_Xy.ino │ │ ├── ESP32_MQTT_minimalExample_with_IP_fetch │ │ ├── README.md │ │ ├── include │ │ │ └── README │ │ ├── platformio.ini │ │ └── src │ │ │ ├── main.cpp │ │ │ └── main │ │ │ └── main.ino │ │ ├── ESP32_deltastage_xyz │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── include │ │ │ └── README │ │ ├── platformio.ini │ │ └── src │ │ │ ├── main.cpp │ │ │ └── main │ │ │ └── main.ino │ │ └── ESP32_motor_s-stage │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── include │ │ └── README │ │ ├── platformio.ini │ │ └── src │ │ ├── main.cpp │ │ └── main │ │ └── main.ino └── README.md ├── IMAGES ├── .DS_Store ├── HW_Controll.png ├── UC2_Logo.png ├── UC2_Raspi_Gui_1.jpg ├── UC2_Raspi_Gui_1.png ├── UC2_Workshop_Wallpaper.png ├── UC2_logo_text.png ├── icon_UC2Software.png ├── icon_git.png ├── icon_tw.png ├── icon_yt.png └── sitemap.png ├── License.md ├── PROCESSING ├── README.md └── uc2_tools.py ├── Readme.md ├── SITEMAP.md └── WORKSHOPS ├── 01_INLINE-HOLOGRAMM ├── FIJI │ ├── DIHM-0.1.jar │ ├── DIHM-0.1_build-tree.zip │ └── README.md ├── MATLAB │ ├── BugHologram.m │ ├── FresnelPropagator.m │ └── TestHologram.m ├── PYTHON │ ├── FresnelPropagator.py │ ├── IMAGES │ │ ├── Tut1.png │ │ ├── Tut2.png │ │ ├── Tut3.png │ │ ├── Tut4.png │ │ ├── Tut5.png │ │ ├── Tut6.png │ │ ├── Tut7.png │ │ └── Tut8.png │ ├── Listings_0_Toyexamples.ipynb │ ├── Listings_1_ReconHoloInline.ipynb │ ├── MultiSliceViewer.py │ ├── README.md │ ├── funwithft.py │ └── main.py ├── Readme.md └── Testimages │ ├── beads_holo_3.jpg │ ├── chip.jpg │ ├── test.jpg │ ├── test1.jpg │ ├── test_baumwolleo.jpg │ ├── test_microplastic.jpg │ └── test_potato.jpg ├── 02_LIGHTSHEET ├── IMAGES │ ├── Assembly_simple_Lightsheet_v1.png │ ├── Folie1.png │ └── PDFico.png ├── Readme.md └── SOFTWARE │ ├── NodeRed-01-LED_andSerial_Example.json │ ├── NodeRed-02-Lightsheet-Nodes.json │ ├── Raspi-Python_MQTT_Control_Camery.py │ ├── demo_paho.py │ └── nohup.out └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/.DS_Store -------------------------------------------------------------------------------- /GUI/.sync_75cdc8a1dfb7.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/.sync_75cdc8a1dfb7.db -------------------------------------------------------------------------------- /GUI/Android/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/.DS_Store -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/.gitignore -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/LICENSE -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/README.md -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/build.gradle -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/debug/app-debug.apk -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/debug/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/debug/output.json -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/HikariCP-2.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/HikariCP-2.4.7.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/bugsnag-3.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/bugsnag-3.6.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/commons-codec-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/commons-codec-1.10.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/h2-mvstore-1.4.196.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/h2-mvstore-1.4.196.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/jackson-annotations-2.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/jackson-annotations-2.9.0.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/jackson-core-2.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/jackson-core-2.9.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/jackson-databind-2.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/jackson-databind-2.9.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/librato-java-2.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/librato-java-2.1.0.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/log4j-1.2.17.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/metrics-core-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/metrics-core-3.2.2.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/metrics-jvm-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/metrics-jvm-3.2.2.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/metrics-librato-5.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/metrics-librato-5.1.0.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/moquette-0.12.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/moquette-0.12.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/moquette-broker-0.12.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/moquette-broker-0.12.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-buffer-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-buffer-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-codec-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-codec-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-codec-http-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-codec-http-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-codec-mqtt-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-codec-mqtt-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-common-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-common-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-handler-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-handler-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-resolver-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-resolver-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-transport-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-transport-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-transport-native-epoll-4.1.22.Final-linux-x86_64.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-transport-native-epoll-4.1.22.Final-linux-x86_64.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/netty-transport-native-unix-common-4.1.22.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/netty-transport-native-unix-common-4.1.22.Final.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/org.eclipse.paho.android.service-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/org.eclipse.paho.android.service-1.1.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/org.eclipse.paho.client.mqttv3-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/org.eclipse.paho.client.mqttv3-1.1.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/slf4j-api-1.7.25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/slf4j-api-1.7.25.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/libs/slf4j-log4j12-1.7.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/libs/slf4j-log4j12-1.7.5.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/proguard-rules.pro -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/release/app-release.apk -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/release/output.json -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/MainActivity.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/MqttUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/MqttUtil.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/MQTTBroker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/MQTTBroker.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/MQTTNotificationBroker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/MQTTNotificationBroker.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/MQTTService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/MQTTService.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/ServerInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/broker/ServerInstance.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/util/InputFilterMinMax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/util/InputFilterMinMax.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/java/de/nanoimaging/uc2controler/util/Utils.java -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/drawable/ic_robot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/drawable/ic_robot.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/layout/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/layout/main_view.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/build.gradle -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/code/main_mqttstandalone_ledarray/main_mqttstandalone_ledarray.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/code/main_mqttstandalone_ledarray/main_mqttstandalone_ledarray.ino -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/gradle.properties -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/gradlew -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/gradlew.bat -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/images/Android_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/images/Android_GUI.png -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/images/MQTT_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-TheBox/images/MQTT_GUI.png -------------------------------------------------------------------------------- /GUI/Android/UC2-TheBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/.gitignore -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/LICENSE -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/README.md -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/build.gradle -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/debug/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/debug/output.json -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/libs/org.eclipse.paho.android.service-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/libs/org.eclipse.paho.android.service-1.1.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/libs/org.eclipse.paho.client.mqttv3-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/libs/org.eclipse.paho.client.mqttv3-1.1.1.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/proguard-rules.pro -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/release/output.json -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/BrokerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/BrokerService.java -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/MainActivity.java -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/MqttUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/MqttUtil.java -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/MyView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/java/de/nanoimaging/uc2controller/MyView.java -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/layout/main_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/layout/main_view.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/build.gradle -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/gradle.properties -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/gradlew -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/gradlew.bat -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/images/Android_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/images/Android_GUI.png -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/images/MQTT_GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2-basic/images/MQTT_GUI.png -------------------------------------------------------------------------------- /GUI/Android/UC2-basic/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/.gitignore -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/build.gradle -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/proguard-rules.pro -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/androidTest/java/com/openuc2/uc2serial/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/androidTest/java/com/openuc2/uc2serial/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/CustomProber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/CustomProber.java -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/DevicesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/DevicesFragment.java -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/MainActivity.java -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/TerminalFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/java/com/openuc2/uc2serial/TerminalFragment.java -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/java/com/openuc2/util/HexDump.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/java/com/openuc2/util/HexDump.java -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/drawable/ic_delete_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/drawable/ic_delete_white_24dp.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/drawable/ic_send_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/drawable/ic_send_white_24dp.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/layout/device_list_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/layout/device_list_header.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/layout/device_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/layout/device_list_item.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/layout/fragment_terminal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/layout/fragment_terminal.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/menu/menu_devices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/menu/menu_devices.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/menu/menu_terminal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/menu/menu_terminal.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/app/src/main/res/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/app/src/main/res/xml/device_filter.xml -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/build.gradle -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/gradle.properties -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/gradlew -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/gradlew.bat -------------------------------------------------------------------------------- /GUI/Android/UC2Serial/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/Android/UC2Serial/settings.gradle -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_0.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_1.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_10.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_11.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_12.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_13.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_2.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_3.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_4.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_5.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_6.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_7.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_8.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/screenshots/Screenshot_9.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script01.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script02.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script03.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script04.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script05.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script06.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script07.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script08.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script09.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/script10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/script10.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/IMAGES/writeISO2SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/IMAGES/writeISO2SD.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/README.md -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/README.md: -------------------------------------------------------------------------------- 1 | # Fix the date-issue 2 | -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/date_manfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/date_manfix.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/date_manfix_py27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/date_manfix_py27.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/fixdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/fixdate.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/fixdate_py27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/FIX_date/fixdate_py27.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/MQTT_fluo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/MQTT_fluo.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/README.md -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/00-UC2_Prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/00-UC2_Prerequisites.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/01-UC2_Berryconda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/01-UC2_Berryconda.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/02-UC2_CreateEnvironment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/02-UC2_CreateEnvironment.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/2019-08-07-062518_1824x984_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/2019-08-07-062518_1824x984_scrot.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/2019-08-07-062835_1824x984_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/2019-08-07-062835_1824x984_scrot.png -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/LICENSE.txt -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_UC2env/README.md -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/SETUP_sparseGITloader/sparseGITloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/SETUP_sparseGITloader/sparseGITloader.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/SCRIPTS/START_gui/UC2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/SCRIPTS/START_gui/UC2.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/.\log\startup.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/.gitignore -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/.pep8: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | max_line_length = 200 3 | ignore = E501 -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/I2CBus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/I2CBus.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/I2CDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/I2CDevice.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/MQTTDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/MQTTDevice.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/MQTTdemo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/MQTTdemo_client.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/MQTTdemo_server.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/SerialDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/SerialDevice.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/SimpleGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/SimpleGUI.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/Test_I2C_motor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/Test_I2C_motor.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/Test_Serial_motor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/Test_Serial_motor.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/Test_Serial_sweeplens).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/Test_Serial_sweeplens).py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/autofocus_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/autofocus_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/autofocus_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/autofocus_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/camera_autofocus.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/camera_autofocus.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/camera_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/camera_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/camera_properties_fluo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/camera_properties_fluo.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/communication.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/communication.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/experiment_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/experiment_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/image/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/image/lena.jpg -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/imaging_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/imaging_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/light_patterns.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/light_patterns.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/light_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/light_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/logging.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/logging.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/main_config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/main_config.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/motor_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/motor_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/backup/tomography_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/backup/tomography_properties.bak -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/bak_creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/bak_creator.sh -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/camera_autofocus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/camera_autofocus.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/camera_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/camera_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/camera_properties_fluo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/camera_properties_fluo.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/communication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/communication.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/experiment_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/experiment_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/imaging_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/imaging_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/light_patterns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/light_patterns.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/light_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/light_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/logging.ini -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/logging.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/main_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/main_config.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/motor_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/motor_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/config/tomography_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/config/tomography_properties.yaml -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidException.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscope.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscope.kv -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeAutofocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeAutofocus.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeCalculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeCalculate.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeGlobVar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeGlobVar.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeIO.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeInit.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeLogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeLogging.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeTomography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeTomography.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeToolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeToolbox.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/fluidiscopeToolbox_bakvimba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/fluidiscopeToolbox_bakvimba.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/main.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/features.txt -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_asynchronousframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_asynchronousframe.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_asynchronousframe_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_asynchronousframe_thread.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_listfeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_listfeatures.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_multithreading_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_multithreading_opencv.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_saveframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_saveframes.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_synchrounousframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_synchrounousframe.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba/vimba_synchrounousframe_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba/vimba_synchrounousframe_thread.py -------------------------------------------------------------------------------- /GUI/NVIDIA_JETSON/python3/vimba_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_JETSON/python3/vimba_camera.py -------------------------------------------------------------------------------- /GUI/NVIDIA_Micromanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/NVIDIA_Micromanager/README.md -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/fix01_gpumem-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/fix01_gpumem-01.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/fix01_gpumem-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/fix01_gpumem-02.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/fix01_gpumem-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/fix01_gpumem-03.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/pi-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/pi-desktop.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/piwiz2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/piwiz2.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script01.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script02.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script03.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script04.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script05.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script06.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script07.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script08.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script09.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script10.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/script11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/script11.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/IMAGES/writeISO2SD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/IMAGES/writeISO2SD.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/I2CBus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/I2CBus.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/I2CDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/I2CDevice.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/autofocus_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/autofocus_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/autofocus_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/autofocus_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/camera_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/camera_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/camera_properties_fluo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/camera_properties_fluo.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/experiment_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/experiment_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/image/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/image/lena.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/imaging_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/imaging_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/light_patterns.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/light_patterns.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/light_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/light_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/main_config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/main_config.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/motor_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/backup/motor_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/camera_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/camera_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/camera_properties_fluo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/camera_properties_fluo.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/experiment_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/experiment_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/imaging_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/imaging_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/light_patterns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/light_patterns.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/light_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/light_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/main_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/main_config.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/config/motor_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/config/motor_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidException.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscope.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscope.kv -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeAutofocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeAutofocus.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeGlobVar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeGlobVar.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeIO.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeInit.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeToolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeToolbox.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeToolbox.py.8858d843f29c304d3ce80cbf8d306313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/fluidiscopeToolbox.py.8858d843f29c304d3ce80cbf8d306313.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py27/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py27/main.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/%HOMEDRIVE%%HOMEPATH%/.matplotlib/fontlist-v310.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/%HOMEDRIVE%%HOMEPATH%/.matplotlib/fontlist-v310.json -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/%HOMEDRIVE%%HOMEPATH%/.matplotlib/fontlist-v310.json.matplotlib-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/.gitignore -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/.pep8: -------------------------------------------------------------------------------- 1 | [pycodestyle] 2 | max_line_length = 200 3 | ignore = E501 -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/GPIODevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/GPIODevice.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/I2CBus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/I2CBus.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/I2CDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/I2CDevice.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/MQTTDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/MQTTDevice.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/MQTTdemo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/MQTTdemo_client.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/MQTTdemo_server.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/SCRIPTS/MQTT_fluo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/SCRIPTS/MQTT_fluo.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/SerialDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/SerialDevice.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/Test_Serial_motor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/Test_Serial_motor.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/autofocus_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/autofocus_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/autofocus_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/autofocus_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/camera_autofocus.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/camera_autofocus.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/camera_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/camera_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/camera_properties_fluo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/camera_properties_fluo.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/communication.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/communication.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/experiment_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/experiment_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/image/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/image/lena.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/imaging_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/imaging_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/light_patterns.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/light_patterns.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/light_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/light_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/logging.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/logging.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/main_config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/main_config.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/motor_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/motor_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/tomography_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/backup/tomography_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/bak_creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/bak_creator.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/camera_autofocus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/camera_autofocus.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/camera_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/camera_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/camera_properties_fluo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/camera_properties_fluo.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/communication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/communication.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/experiment_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/experiment_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/imaging_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/imaging_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/light_patterns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/light_patterns.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/light_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/light_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/logging.ini -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/logging.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/main_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/main_config.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/motor_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/motor_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config/tomography_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config/tomography_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/autofocus_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/autofocus_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/autofocus_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/autofocus_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/camera_autofocus.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/camera_autofocus.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/camera_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/camera_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/camera_properties_fluo.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/camera_properties_fluo.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/communication.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/communication.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/experiment_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/experiment_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/image/lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/image/lena.jpg -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/imaging_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/imaging_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/light_patterns.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/light_patterns.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/light_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/light_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/logging.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/logging.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/main_config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/main_config.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/motor_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/motor_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/tomography_properties.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/backup/tomography_properties.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/bak_creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/bak_creator.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/camera_autofocus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/camera_autofocus.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/camera_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/camera_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/camera_properties_fluo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/camera_properties_fluo.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/communication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/communication.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/experiment_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/experiment_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/imaging_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/imaging_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/light_patterns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/light_patterns.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/light_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/light_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/logging.ini -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/logging.ini.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/logging.ini.bak -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/logging.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/main_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/main_config.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/motor_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/motor_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/config_old/tomography_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/config_old/tomography_properties.yaml -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidException.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidException.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscope.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscope.kv -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeAutofocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeAutofocus.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeCalculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeCalculate.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeGlobVar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeGlobVar.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeIO.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeInit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeInit.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeLogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeLogging.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeTomography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeTomography.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeToolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/fluidiscopeToolbox.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/RASPIapp_py3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/RASPIapp_py3/main.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/README.md -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/FIX_date/README.md: -------------------------------------------------------------------------------- 1 | # Fix the date-issue 2 | -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/FIX_date/date_manfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/FIX_date/date_manfix.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/FIX_date/date_manfix_py27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/FIX_date/date_manfix_py27.py -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/FIX_date/fixdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/FIX_date/fixdate.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/FIX_date/fixdate_py27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/FIX_date/fixdate_py27.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/README.md -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/00-UC2_Prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/00-UC2_Prerequisites.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/01-UC2_Berryconda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/01-UC2_Berryconda.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/02-UC2_CreateEnvironment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/02-UC2_CreateEnvironment.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/2019-08-07-062518_1824x984_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/2019-08-07-062518_1824x984_scrot.png -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/2019-08-07-062835_1824x984_scrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/2019-08-07-062835_1824x984_scrot.png -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/LICENSE.txt -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_UC2env/README.md -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/SETUP_sparseGITloader/sparseGITloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/SETUP_sparseGITloader/sparseGITloader.sh -------------------------------------------------------------------------------- /GUI/RASPBERRY_PI/SCRIPTS/START_gui/UC2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/RASPBERRY_PI/SCRIPTS/START_gui/UC2.sh -------------------------------------------------------------------------------- /GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/GUI/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/.DS_Store -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/GENERAL/deltastage/deltastage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/GENERAL/deltastage/deltastage.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/GENERAL/deltastage_berlin/deltastage_berlin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/GENERAL/deltastage_berlin/deltastage_berlin.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/GENERAL/ledarr/ledarr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/GENERAL/ledarr/ledarr.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/GENERAL/motors/motors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/GENERAL/motors/motors.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/GENERAL/motors_and_fluo/motors_and_fluo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/GENERAL/motors_and_fluo/motors_and_fluo.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/IMAGES/Control_I2C_system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/IMAGES/Control_I2C_system.jpg -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/MINIMALS/Test_LED_setup_func--TESTER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/MINIMALS/Test_LED_setup_func--TESTER.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/MINIMALS/Test_LED_setup_func/Test_LED_setup_func.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/MINIMALS/Test_LED_setup_func/Test_LED_setup_func.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/MINIMALS/arduino_minimal_i2c/arduino_minimal_i2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/MINIMALS/arduino_minimal_i2c/arduino_minimal_i2c.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/MINIMALS/ledfluo/ledfluo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/MINIMALS/ledfluo/ledfluo.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/MINIMALS/minimal_i2c_nosleep/minimal_i2c_nosleep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/MINIMALS/minimal_i2c_nosleep/minimal_i2c_nosleep.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/.gitignore -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Adafruit_GFX.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/Org_01.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/Picopixel.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/Tiny3x3a2pt7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/Tiny3x3a2pt7b -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/Fonts/TomThumb.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/Makefile -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/fontconvert_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/fontconvert_win.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/gfxfont.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/glcdfont.c -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/library.properties -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_GFX/license.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/Adafruit_NeoMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/Adafruit_NeoMatrix.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/Adafruit_NeoMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/Adafruit_NeoMatrix.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/COPYING -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/examples/matrixtest/matrixtest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/examples/matrixtest/matrixtest.pde -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/examples/tiletest/tiletest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/examples/tiletest/tiletest.pde -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/extras/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/extras/gamma.c -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/gamma.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoMatrix/library.properties -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/.travis.yml -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/Adafruit_NeoPixel.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/COPYING -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/esp8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/esp8266.c -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/RGBWstrandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/RGBWstrandtest/.trinket.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/RGBWstrandtest/RGBWstrandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/RGBWstrandtest/RGBWstrandtest.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/BLESerial.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/StrandtestBLE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/StrandtestBLE/StrandtestBLE.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/buttoncycler/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/buttoncycler/buttoncycler.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/simple/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/simple/simple.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/strandtest/.esp8266.test.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/examples/strandtest/strandtest.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/keywords.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Adafruit_NeoPixel/library.properties -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/LICENSE -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/TimerObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/TimerObject.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/TimerObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/TimerObject.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/examples/Example/Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/examples/Example/Example.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/ArduinoTimerObject/keywords.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/StepMotor_Beispiel/I2C_StepMotor_Beispiel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/StepMotor_Beispiel/I2C_StepMotor_Beispiel.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/StepMotor_Beispiel/I2C_StepMotor_Beispiel/I2C_StepMotor_Beispiel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/StepMotor_Beispiel/I2C_StepMotor_Beispiel/I2C_StepMotor_Beispiel.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/keywords.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/library.properties -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/src/StepMotor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/src/StepMotor.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/src/StepMotor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/StepMotor/src/StepMotor.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/DateStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/DateStrings.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/Readme.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/Time.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/Time.h: -------------------------------------------------------------------------------- 1 | #include "TimeLib.h" 2 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/TimeLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/TimeLib.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/Processing/SyncArduinoClock/SyncArduinoClock.pde -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/Processing/SyncArduinoClock/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/Processing/SyncArduinoClock/readme.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeArduinoDue/TimeArduinoDue.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeArduinoDue/TimeArduinoDue.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeGPS/TimeGPS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeGPS/TimeGPS.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeNTP/TimeNTP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeNTP/TimeNTP.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeNTP_ESP8266WiFi/TimeNTP_ESP8266WiFi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeNTP_ESP8266WiFi/TimeNTP_ESP8266WiFi.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeRTC/TimeRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeRTC/TimeRTC.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeRTCLog/TimeRTCLog.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeRTCLog/TimeRTCLog.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeRTCSet/TimeRTCSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeRTCSet/TimeRTCSet.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeSerial/TimeSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeSerial/TimeSerial.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeSerialDateStrings/TimeSerialDateStrings.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeTeensy3/TimeTeensy3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/examples/TimeTeensy3/TimeTeensy3.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/keywords.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/library.json -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/Time/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/Time/library.properties -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/WSWire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/WSWire.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/WSWire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/WSWire.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/digital_potentiometer/digital_potentiometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/digital_potentiometer/digital_potentiometer.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/keywords.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/utility/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/utility/twi.c -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/WSWire/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/WSWire/utility/twi.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ARDUINO/libraries/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ARDUINO/libraries/readme.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/.DS_Store -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/.gitignore -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/.travis.yml -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/include/README -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/platformio.ini -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/src/ESP32_ledarr/ESP32_ledarr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/src/ESP32_ledarr/ESP32_ledarr.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr/src/main.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr_minimal_with_Button/MinimalLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_ledarr_minimal_with_Button/MinimalLED.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/.gitignore -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/.travis.yml -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/include/README -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/platformio.ini -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/ESP32_motor_fluo/src/main.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/IMAGES/ESP32_SetupBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/IMAGES/ESP32_SetupBoard.png -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/IMAGES/ESP32_ledarrINO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/IMAGES/ESP32_ledarrINO.png -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/MQTTtest/MQTTDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/MQTTtest/MQTTDevice.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/MQTTtest/cmdInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/MQTTtest/cmdInterface.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/GENERAL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/GENERAL/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/IMAGES/Control_MQTT_system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/IMAGES/Control_MQTT_system.jpg -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/IMAGES/arduinoidePATH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/IMAGES/arduinoidePATH.png -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/IMAGES/bak/mqtt01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/IMAGES/bak/mqtt01.png -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/IMAGES/mqtt01m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/IMAGES/mqtt01m.png -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/.gitignore -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/.travis.yml -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/CHANGES.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/LICENSE.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_auth/mqtt_auth.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_auth/mqtt_auth.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_basic/mqtt_basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_basic/mqtt_basic.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_esp8266/mqtt_esp8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_esp8266/mqtt_esp8266.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_large_message/mqtt_large_message.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_large_message/mqtt_large_message.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_publish_in_callback/mqtt_publish_in_callback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_publish_in_callback/mqtt_publish_in_callback.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_reconnect_nonblocking/mqtt_reconnect_nonblocking.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_reconnect_nonblocking/mqtt_reconnect_nonblocking.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_stream/mqtt_stream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/examples/mqtt_stream/mqtt_stream.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/keywords.txt -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/library.json -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/library.properties -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/src/PubSubClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/src/PubSubClient.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/src/PubSubClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/src/PubSubClient.h -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | tmpbin 3 | logs 4 | *.pyc 5 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/Makefile -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/connect_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/connect_spec.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/keepalive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/keepalive_spec.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/publish_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/publish_spec.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/receive_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/receive_spec.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/subscribe_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/src/subscribe_spec.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/mqtt_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/mqtt_basic.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/mqtt_publish_in_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/mqtt_publish_in_callback.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testcases/settings.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/LIBRARIES/pubsubclient/tests/testsuite.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/README.md -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/SERIAL/ESP32_lenslaser/ESP32_lenslaser.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/SERIAL/ESP32_lenslaser/ESP32_lenslaser.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/SERIAL/ESP32_lenslaser/test_esp32_lenslaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/SERIAL/ESP32_lenslaser/test_esp32_lenslaser.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/SERIAL/ESP32_motor_led/ESP32_motor_led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/SERIAL/ESP32_motor_led/ESP32_motor_led.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/SERIAL/ESP32_motor_led/test_esp32_lenslaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/SERIAL/ESP32_motor_led/test_esp32_lenslaser.py -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_TheBox/ESP32_MQTT_TheBox.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_TheBox/ESP32_MQTT_TheBox.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_UC2_APP_Xy/ESP32_MQTT_UC2_APP_Xy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_UC2_APP_Xy/ESP32_MQTT_UC2_APP_Xy.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/include/README -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/platformio.ini -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/src/main.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/src/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_MQTT_minimalExample_with_IP_fetch/src/main/main.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/.gitignore -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/.travis.yml -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/include/README -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/platformio.ini -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/src/main.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/src/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_deltastage_xyz/src/main/main.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/.gitignore -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/.travis.yml -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/include/README -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/platformio.ini -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/src/main.cpp -------------------------------------------------------------------------------- /HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/src/main/main.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/ESP32/forANDROID/ESP32_motor_s-stage/src/main/main.ino -------------------------------------------------------------------------------- /HARDWARE_CONTROL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/HARDWARE_CONTROL/README.md -------------------------------------------------------------------------------- /IMAGES/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/.DS_Store -------------------------------------------------------------------------------- /IMAGES/HW_Controll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/HW_Controll.png -------------------------------------------------------------------------------- /IMAGES/UC2_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/UC2_Logo.png -------------------------------------------------------------------------------- /IMAGES/UC2_Raspi_Gui_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/UC2_Raspi_Gui_1.jpg -------------------------------------------------------------------------------- /IMAGES/UC2_Raspi_Gui_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/UC2_Raspi_Gui_1.png -------------------------------------------------------------------------------- /IMAGES/UC2_Workshop_Wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/UC2_Workshop_Wallpaper.png -------------------------------------------------------------------------------- /IMAGES/UC2_logo_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/UC2_logo_text.png -------------------------------------------------------------------------------- /IMAGES/icon_UC2Software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/icon_UC2Software.png -------------------------------------------------------------------------------- /IMAGES/icon_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/icon_git.png -------------------------------------------------------------------------------- /IMAGES/icon_tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/icon_tw.png -------------------------------------------------------------------------------- /IMAGES/icon_yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/icon_yt.png -------------------------------------------------------------------------------- /IMAGES/sitemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/IMAGES/sitemap.png -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/License.md -------------------------------------------------------------------------------- /PROCESSING/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/PROCESSING/README.md -------------------------------------------------------------------------------- /PROCESSING/uc2_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/PROCESSING/uc2_tools.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/Readme.md -------------------------------------------------------------------------------- /SITEMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/SITEMAP.md -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/FIJI/DIHM-0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/FIJI/DIHM-0.1.jar -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/FIJI/DIHM-0.1_build-tree.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/FIJI/DIHM-0.1_build-tree.zip -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/FIJI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/FIJI/README.md -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/MATLAB/BugHologram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/MATLAB/BugHologram.m -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/MATLAB/FresnelPropagator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/MATLAB/FresnelPropagator.m -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/MATLAB/TestHologram.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/MATLAB/TestHologram.m -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/FresnelPropagator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/FresnelPropagator.py -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut1.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut2.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut3.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut4.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut5.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut6.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut7.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/IMAGES/Tut8.png -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/Listings_0_Toyexamples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/Listings_0_Toyexamples.ipynb -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/Listings_1_ReconHoloInline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/Listings_1_ReconHoloInline.ipynb -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/MultiSliceViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/MultiSliceViewer.py -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/README.md -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/funwithft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/funwithft.py -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/PYTHON/main.py -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Readme.md -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/beads_holo_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/beads_holo_3.jpg -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/chip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/chip.jpg -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test.jpg -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test1.jpg -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test_baumwolleo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test_baumwolleo.jpg -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test_microplastic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test_microplastic.jpg -------------------------------------------------------------------------------- /WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test_potato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/01_INLINE-HOLOGRAMM/Testimages/test_potato.jpg -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/IMAGES/Assembly_simple_Lightsheet_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/IMAGES/Assembly_simple_Lightsheet_v1.png -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/IMAGES/Folie1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/IMAGES/Folie1.png -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/IMAGES/PDFico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/IMAGES/PDFico.png -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/Readme.md -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/SOFTWARE/NodeRed-01-LED_andSerial_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/SOFTWARE/NodeRed-01-LED_andSerial_Example.json -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/SOFTWARE/NodeRed-02-Lightsheet-Nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/SOFTWARE/NodeRed-02-Lightsheet-Nodes.json -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/SOFTWARE/Raspi-Python_MQTT_Control_Camery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/SOFTWARE/Raspi-Python_MQTT_Control_Camery.py -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/SOFTWARE/demo_paho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/02_LIGHTSHEET/SOFTWARE/demo_paho.py -------------------------------------------------------------------------------- /WORKSHOPS/02_LIGHTSHEET/SOFTWARE/nohup.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WORKSHOPS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openUC2/UC2-Software-GIT/HEAD/WORKSHOPS/README.md --------------------------------------------------------------------------------