Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bitluni/ESP32CompositeVideo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: PIBSAS/ESP32CompositeVideo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 11 commits
  • 7 files changed
  • 1 contributor

Commits on Apr 30, 2025

  1. Update CompositeGraphics.h to ESP-IDf v5.4 on Arduino IDE and PlatformIO

    Arduino Platform:
    Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4
    Board Manager -> esp32 by Espressif Systems version 3.2.0
    
    GitHub: https://github.com/espressif/arduino-esp32/releases
    
    Platformio:
    VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4.
    Board -> Espressif 32 Dev Module
    Platform -> Espressif 32 Version 6.10.0
    
    GitHub: https://github.com/platformio/platform-espressif32/releases
    
    Changes on files:
    On CompositeGraphics.h
    
    #include <algorithm>
    
    68 void print(char *str) -> void print(const char *str) [char -> const char]
    
    129 backbuffer[y][x] = min(54, color + backbuffer[y][x]); -> backbuffer[y][x] = std::min(54, color + backbuffer[y][x]); [min() -> std:min()]
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    9504255 View commit details
    Browse the repository at this point in the history
  2. Update CompositeOutput.h to ESP-IDF v5.4 for Arduino IDE and PlatformIO

    Arduino Platform:
    Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4
    Board Manager -> esp32 by Espressif Systems version 3.2.0
    
    GitHub: https://github.com/espressif/arduino-esp32/releases
    
    Platformio:
    VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4.
    Board -> Espressif 32 Dev Module
    Platform -> Espressif 32 Version 6.10.0
    
    GitHub: https://github.com/platformio/platform-espressif32/releases
    
    Changes on file:
    On CompositeOutput.h:
    
    After Line 2 add: #include "soc/i2s_reg.h"
    166 .communication_format = I2S_COMM_FORMAT_I2S_MSB -> I2S_COMM_FORMAT_STAND_I2S,
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    ac16f87 View commit details
    Browse the repository at this point in the history
  3. Update CompositeVideoSimple.ino add directive for include arduino.h f…

    …or PlatformIO
    
    #ifdef PLATFORMIO
    #include <Arduino.h>
    #endif
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    79b2fce View commit details
    Browse the repository at this point in the history
  4. Update CompositeVideoSimple.ino add directive for include arduino.h f…

    …or PlatformIO
    
    #ifdef ARDUINO
    #include <Arduino.h>
    #endif
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    fdaf982 View commit details
    Browse the repository at this point in the history
  5. Update CompositeVideo.ino add directive for PlatformIO

    #ifdef ARDUINO
    #include <Arduino.h>
    #endif
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    ff4737c View commit details
    Browse the repository at this point in the history
  6. Update Mesh.h max() to std::max()

    On Mesh.h
    
    After line 2 add:
    #include <algorithm>
    
    68 const float NdotL = max(0.0f, nx * L[0] + ny * L[1] + nz * L[2]); -> const float NdotL = std::max(0.0f, nx * L[0] + ny * L[1] + nz * L[2]); [max() -> std::max()]
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    56e8ee5 View commit details
    Browse the repository at this point in the history
  7. Update CompositeVideoSimple.ino

    remove directive, wrong file example
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    03e6ecf View commit details
    Browse the repository at this point in the history
  8. Update CompositeGraphics.h to ESP-IDf v5.4 on Arduino IDE and PlatformIO

    Arduino Platform:
    Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4
    Board Manager -> esp32 by Espressif Systems version 3.2.0
    
    GitHub: https://github.com/espressif/arduino-esp32/releases
    
    Platformio:
    VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4.
    Board -> Espressif 32 Dev Module
    Platform -> Espressif 32 Version 6.10.0
    
    GitHub: https://github.com/platformio/platform-espressif32/releases
    
    Changes on file:
    On CompositeGraphics.h
    
    After line 3 add:
    #include <algorithm>
    
    68 void print(char *str) -> void print(const char *str) [char -> const char]
    
    129 backbuffer[y][x] = min(54, color + backbuffer[y][x]); -> backbuffer[y][x] = std::min(54, color + backbuffer[y][x]); [min() -> std:min()]
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    63e6083 View commit details
    Browse the repository at this point in the history
  9. Update CompositeOutput.h to ESP-IDF v5.4 for Arduino IDE and PlatformIO

    Arduino Platform:
    Upgrade to Arduino 3.2.0 based on ESP-IDF v5.4
    Board Manager -> esp32 by Espressif Systems version 3.2.0
    
    GitHub: https://github.com/espressif/arduino-esp32/releases
    
    Platformio:
    VsCode withh Platformio for Espressif 32 Dev Module Version 6.10.0 based on ESP-IDF v5.4.
    Board -> Espressif 32 Dev Module
    Platform -> Espressif 32 Version 6.10.0
    
    GitHub: https://github.com/platformio/platform-espressif32/releases
    
    Changes on file:
    On CompositeOutput.h:
    
    After Line 2 add: #include "soc/i2s_reg.h"
    166 .communication_format = I2S_COMM_FORMAT_I2S_MSB -> I2S_COMM_FORMAT_STAND_I2S
    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    7984612 View commit details
    Browse the repository at this point in the history
  10. Update README.md

    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    8cd36ee View commit details
    Browse the repository at this point in the history
  11. Update README.md

    PIBSAS authored Apr 30, 2025
    Configuration menu
    Copy the full SHA
    162c4b3 View commit details
    Browse the repository at this point in the history
Loading