Skip to content

Commit

Permalink
Added some TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
connornishijima committed Feb 6, 2024
1 parent aab5d38 commit baab7ea
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions data/js/render_controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ let modes = [];
let sliders = [];
let toggles = [];

// TODO: Add UI for toggles to setting gallery

// TODO: "Help" screens for each slider/toggle can be stored in a JSON served by Emotiscope

function render_modes(){
let mode_bin = document.getElementById("mode_bin");
mode_bin.innerHTML = "";
Expand Down
2 changes: 2 additions & 0 deletions data/js/tint_icons.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// TODO: Don't tint SVGs with JS, pre-tint the assets themselves

function tint_svg_images() {
// Select all <img> elements
const images = document.querySelectorAll('img');
Expand Down
3 changes: 3 additions & 0 deletions src/YOUR_secrets.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// secrets.h
#define WIFI_SSID "SSID"
#define WIFI_PASSWORD "P@SS"
1 change: 1 addition & 0 deletions src/gpio.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// TODO: Move all GPIO pin number definitions to gpio.h
1 change: 1 addition & 0 deletions src/microphone.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const float recip_scale = 1.0 / 80000000.0;
volatile bool waveform_locked = false;
volatile bool waveform_sync_flag = false;

// TODO: Get SPH0645 microphone tested/working
void init_i2s_microphone() {
uint16_t profiler_index = start_function_timing(__func__);

Expand Down
4 changes: 3 additions & 1 deletion src/notes.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
// | | | | | (_) | | |_ | __/ \__ \ _ | | | |
// |_| |_| \___/ \__| \___| |___/ (_) |_| |_|
//
// Notes for development purposes, shared with you because I love you
// Notes for development purposes, shared with you because I love you

// TODO: Remove FastLED Dependency

// ##################################################################################################################################################
// HOW TO GET JTAG WORKING ON PLATFORMIO WITH ESP32S3 DEV BOARD WITH TWO USB PORTS:
Expand Down
2 changes: 1 addition & 1 deletion src/system.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void init_serial(uint32_t baud_rate) {
Serial.begin(baud_rate);
Serial.println('\n');
Serial.println("######################");
Serial.println("SENSORY OVERLOAD REDUX");
Serial.printf( "EMOTISCOPE v%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
Serial.println("######################");

end_function_timing(profiler_index);
Expand Down

0 comments on commit baab7ea

Please sign in to comment.