Skip to content

Commit

Permalink
Update ardiuno code + binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
alexose committed Dec 17, 2023
1 parent 8ef617a commit 4fafbd2
Show file tree
Hide file tree
Showing 8 changed files with 2,303 additions and 2,302 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4,594 changes: 2,296 additions & 2,298 deletions arduino/synthwave/build/esp32.esp32.heltec_wifi_kit_32_V3/synthwave.ino.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions arduino/synthwave/synthwave.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#define DEVICE_RELEASE1 45
#define DEVICE_RELEASE2 42

const char *ssid = "Thompson Creek Yacht Club";
const char *password = "winecountry";
const char *ssid = "YOUR_SSID";
const char *password = "YOUR_PASSWORD";

AsyncWebServer server(80);

Expand Down
7 changes: 5 additions & 2 deletions model/synthwave.scad
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ render_pump_bracket = 0;
render_container_cover = 0;
render_standoffs = 0;

if (render_base) base();
difference() {
if (render_base) base();
cube(350, center=true);
}
if (render_base_no_lid) base(false);
if (render_electrode_holder) electrode_holder();
if (render_pump_bracket) pump_bracket();
Expand Down Expand Up @@ -203,7 +206,7 @@ module shelf_bracket() {

difference() {
hull() {
translate([o, -d/2 + 3, h]) scale(1.06) vac_footprint(v);
translate([o - 0.7, -d/2 + 3, h]) scale(1.06) vac_footprint(v);
sphere(t);
}
translate([o + 0.6, -d/2 + 3, h+1]) vac_footprint(v);
Expand Down

0 comments on commit 4fafbd2

Please sign in to comment.