Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
beniroquai committed Nov 2, 2022
2 parents 310f495 + 1774ed6 commit c63db6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UC2REST
Submodule UC2REST updated 71 files
+ .DS_Store
+35 −10 .github/workflows/compile_firmware.yml
+30 −0 .github/workflows/create_wheel.yml
+0 −1 .gitignore
+647 −0 DOCUMENTATION/.ipynb_checkpoints/DOC_UC2Client-checkpoint.ipynb
+279 −0 DOCUMENTATION/.ipynb_checkpoints/DOC_Updater-checkpoint.ipynb
+647 −0 DOCUMENTATION/DOC_UC2Client.ipynb
+279 −0 DOCUMENTATION/DOC_Updater.ipynb
+ ESP32/.DS_Store
+4 −1 ESP32/README.md
+ ESP32/build/boot_app0.bin
+ ESP32/build/main.ino.bin
+ ESP32/build/main.ino.bootloader.bin
+ ESP32/build/main.ino.elf
+152,331 −0 ESP32/build/main.ino.map
+ ESP32/build/main.ino.partitions.bin
+0 −1 ESP32/libraries/PS4-esp32-master/src/PS4Controller.cpp
+32 −33 ESP32/libraries/PS4-esp32-master/src/ps4_parser.c
+1 −1 ESP32/libraries/PS4-esp32-master/src/ps4_spp.c
+ ESP32/main/build/esp32.esp32.esp32/boot_app0.bin
+ ESP32/main/build/esp32.esp32.esp32/main.ino.bin
+ ESP32/main/build/esp32.esp32.esp32/main.ino.elf
+56,293 −57,300 ESP32/main/build/esp32.esp32.esp32/main.ino.map
+18 −16 ESP32/main/control_LEDarray.ino
+5 −5 ESP32/main/control_PS3.ino
+15 −16 ESP32/main/control_PS4.ino
+78 −54 ESP32/main/control_config.ino
+189 −76 ESP32/main/control_motor.ino
+8 −1 ESP32/main/control_state.ino
+38 −47 ESP32/main/control_wifi.ino
+30 −0 ESP32/main/docs.cpp
+84 −43 ESP32/main/main.ino
+148 −30 ESP32/main/parameters_config.h
+0 −1 ESP32/main/parameters_ledarr.h
+11 −0 ESP32/main/parameters_motor.h
+298 −4 ESP32/main/parameters_wifi.h
+9 −1 ESP32/main/pindef.h
+39 −0 ESP32/main/pindefUC2Standalone.h
+ docs/source/.doctrees/environment.pickle
+ docs/source/.doctrees/index.doctree
+ docs/source/.doctrees/module.doctree
+0 −183 docs/source/conf.py
+0 −13 docs/source/index.rst
+0 −8 docs/source/modules.rst
+1 −1 setup.py
+0 −1,030 uc2rest/ESP32Client.py
+0 −948 uc2rest/TEST/ESP32Client.py
+0 −0 uc2rest/TEST/TEST_ESP32Client.py
+0 −0 uc2rest/TEST/TEST_ESP32_SetConfig.py
+18 −0 uc2rest/TEST/TEST_ESP32_Updater.py
+0 −0 uc2rest/TEST/TEST_Tutorial.py
+22 −0 uc2rest/TEST/TEST_esp32camera.py
+54 −0 uc2rest/TEST/TEST_esp32client_2.py
+148 −0 uc2rest/UC2Client.py
+2 −2 uc2rest/__init__.py
+1 −1 uc2rest/__version__.py
+23 −0 uc2rest/analog.py
+57 −0 uc2rest/camera.py
+34 −29 uc2rest/config.py
+17 −0 uc2rest/digital.py
+83 −0 uc2rest/galvo.py
+46 −0 uc2rest/laser.py
+134 −16 uc2rest/ledmatrix.py
+9 −0 uc2rest/logger.py
+367 −0 uc2rest/motor.py
+285 −0 uc2rest/mserial.py
+25 −0 uc2rest/pid.py
+69 −0 uc2rest/slm.py
+73 −0 uc2rest/state.py
+147 −32 uc2rest/updater.py
+95 −0 uc2rest/wifi.py

0 comments on commit c63db6b

Please sign in to comment.