Skip to content

Commit

Permalink
Rename file and fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewHDYT committed Nov 15, 2024
1 parent 5df7d3c commit cb4e0e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/esp32-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- examples/0011-esp8266_esp32_subscribe_OTA_MQTT/0011-esp8266_esp32_subscribe_OTA_MQTT.ino
- examples/0012-esp8266_esp32_request_shared_attribute/0012-esp8266_esp32_request_shared_attribute.ino
- examples/0013-esp8266_esp32_request_rpc/0013-esp8266_esp32_request_rpc.ino
- examples/0019_esp8266_esp32_send_attributes/0019_esp8266_esp32_send_attributes.ino
- examples/0019-esp8266_esp32_send_attributes/0019_esp8266_esp32_send_attributes.ino
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}/${{ env.SKETCHES_REPORTS_NAME }}
enable-warnings-report: 'true'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/esp8266-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- examples/0011-esp8266_esp32_subscribe_OTA_MQTT/0011-esp8266_esp32_subscribe_OTA_MQTT.ino
- examples/0012-esp8266_esp32_request_shared_attribute/0012-esp8266_esp32_request_shared_attribute.ino
- examples/0013-esp8266_esp32_request_rpc/0013-esp8266_esp32_request_rpc.ino
- examples/0019_esp8266_esp32_send_attributes/0019_esp8266_esp32_send_attributes.ino
- examples/0019-esp8266_esp32_send_attributes/0019_esp8266_esp32_send_attributes.ino
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}/${{ env.SKETCHES_REPORTS_NAME }}
enable-warnings-report: 'true'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,11 +224,10 @@ void loop() {
{ ACTIVE_KEY, true },
};

Telemetry* begin = data;
Telemetry* end = data + ATTRIBUTES_SIZE;
Telemetry* begin = attributes;
Telemetry* end = attributes + ATTRIBUTES_SIZE;
tb.sendAttributes<ATTRIBUTES_SIZE>(begin, end);


#if !USING_HTTPS
tb.loop();
#endif
Expand Down

0 comments on commit cb4e0e5

Please sign in to comment.