Skip to content

Commit

Permalink
Development continues...
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieucarbou committed Mar 21, 2024
1 parent 6fc90c9 commit 0eb8624
Show file tree
Hide file tree
Showing 28 changed files with 41 additions and 2,049 deletions.
9 changes: 1 addition & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,9 @@

version: 2
updates:
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
reviewers:
- "mathieucarbou"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
reviewers:
- "mathieucarbou"
2 changes: 1 addition & 1 deletion .github/workflows/build-oss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Release
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
body: ${{steps.github_release.outputs.changelog}}
draft: false
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/cpplint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:
--exclude=lib/ElegantOTAPro \
--exclude=lib/ESPDASH \
--exclude=lib/ESPDASHPro \
--exclude=lib/WebSerialLite \
lib \
include \
src
20 changes: 0 additions & 20 deletions .github/workflows/dependabot.yml

This file was deleted.

4 changes: 1 addition & 3 deletions lib/MycilaTime/MycilaTime.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
*/
#pragma once

#include <MycilaNTP.h>

#include <WString.h>
#include <time.h>

Expand Down Expand Up @@ -33,7 +31,7 @@ namespace Mycila {
static time_t getUnixTime() {
time_t now;
struct tm timeinfo;
if (!NTP.isSynced() || !getLocalTime(&timeinfo, 5))
if (!getLocalTime(&timeinfo, 5))
return 0;
time(&now);
return now;
Expand Down
1 change: 1 addition & 0 deletions lib/MycilaZeroCrossDetection/MycilaZeroCrossDetection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ void Mycila::ZeroCrossDetectionClass::begin(const uint8_t pin, const uint8_t fre
Thyristor::setFrequency(frequency);
Thyristor::frequencyMonitorAlwaysOn(true);
Thyristor::setSyncPin(_pin);
Thyristor::setSyncDir(RISING);
Thyristor::begin();

_enabled = true;
Expand Down
35 changes: 0 additions & 35 deletions lib/WebSerialLite/.gitignore

This file was deleted.

Loading

0 comments on commit 0eb8624

Please sign in to comment.