From a55e5e1ec25a3404ae138bc834a8664dd4ede9e6 Mon Sep 17 00:00:00 2001 From: Fabian Schlenz Date: Sun, 10 Jan 2021 16:34:06 +0100 Subject: [PATCH] Cleanup of stuff. --- platformio.ini | 4 +++- src/node.cpp | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/platformio.ini b/platformio.ini index 6454f13..f540b6d 100644 --- a/platformio.ini +++ b/platformio.ini @@ -12,7 +12,9 @@ platform = espressif8266 board = d1_mini framework = arduino -upload_port = /dev/cu.wchusbserial* +;upload_port = /dev/cu.wchusbserial* +upload_protocol = espota +upload_port = espleaf-prod.local upload_speed = 921600 monitor_port = /dev/cu.wchusbserial* monitor_speed = 74880 diff --git a/src/node.cpp b/src/node.cpp index 6aa1315..0011b29 100644 --- a/src/node.cpp +++ b/src/node.cpp @@ -49,7 +49,6 @@ Node* Node::create_neighbour(uint8_t edge) { } void Node::blend_to(CRGB color, uint16_t effect_id, uint8_t effect_speed) { - //LOGln("Node::blend_to called. this:%p", this); if (effect_speed == 0) effect_speed = random8(2)+1; if (effect_id == 0) effect_id = random16(); for(Corner* corner : this->_corners) {