Skip to content

Commit

Permalink
Merge pull request #285 from kike-canaries/improv_fix_header
Browse files Browse the repository at this point in the history
Improv fix header
  • Loading branch information
hpsaturn authored Dec 14, 2024
2 parents 9580f7d + 2732fb4 commit 8556eac
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 4 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Scheduled

on:
schedule:
- cron: '30 10 * * 4'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U platformio
pio pkg update
- name: PlatformIO Build Test
run: |
pio run -e TTGO_T7 -e ESP32DEVKIT -e TTGO_TDISPLAY -e M5STICKCPLUS -e ESP32C3LOLIN
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
<h1 align="center">CanAirIO Project</h1>

[![PlatformIO](https://github.com/kike-canaries/canairio_firmware/workflows/PlatformIO/badge.svg)](https://github.com/kike-canaries/canairio_firmware/actions/) ![ViewCount](https://views.whatilearened.today/views/github/kike-canaries/canairio_firmware.svg) [![Liberapay Status](http://img.shields.io/liberapay/receives/CanAirIO.svg?logo=liberapay)](https://liberapay.com/CanAirIO) [![Telegram Group](https://img.shields.io/endpoint?color=neon&style=flat-square&url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Fcanairio)](https://t.me/canairio)
<p align="center">
<a href="https://github.com/kike-canaries/canairio_firmware/actions/"><img alt="Discord" src="https://github.com/kike-canaries/canairio_firmware/workflows/PlatformIO/badge.svg"/></a>
<a href="https://t.me/canairio"> <img src="https://img.shields.io/endpoint?color=neon&style=flat-square&url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Fcanairio" alt="Support Group"/></a>
<a href="https://github.com/kike-canaries/canairio_firmware"><img src="https://views.whatilearened.today/views/github/kike-canaries/canairio_firmware.svg" alt="Visitors"/></a>
<a href="https://liberapay.com/CanAirIO/"><img alt="Liberapay patrons" src="https://img.shields.io/liberapay/patrons/CanAirIO"></a>
<a href="https://canair.io/docs"><img src="https://img.shields.io/badge/user-docs-white.svg" alt="CanAirIO Documentation"/></a>
<a href="LICENSE"><img src="https://img.shields.io/static/v1?label=license&message=GPLv3&color=white&style=flat" alt="License"/></a>
<br>
<br><a href="https://canair.io">CanAirIO</a>‎ ‎ |‎ ‎ <a href="https://canair.io/docs/">Documentation</a><br>
</p>

# CanAirIO firmware
> [!NOTE]
> **CanAirIO 0.7.0** is almost here.
>
> Please help test the [development branch](https://github.com/kike-canaries/canairio_firmware/tree/devel) and share your experience in our [Telegram Group](https://t.me/canairio). Please install the "testing version" from the [CanAirIO installer](https://canair.io/installer), configure your WiFi, and you'll receive the latest version soon.
![CanAirIO Community](/images/canairio_collage_community.jpg)
<br>

<img alt="CanAirIO AirQuality Project" src="https://raw.githubusercontent.com/kike-canaries/canairio_firmware/master/images/canairio_collage_community.jpg">

<a href="https://play.google.com/store/apps/details?id=hpsaturn.pollutionreporter" target="_blank"><img src="https://raw.githubusercontent.com/kike-canaries/android-hpma115s0/master/assets/googleplay/gplayicon.png" align="left" style="margin: 2px" width="140" ></a>

Expand All @@ -17,6 +32,9 @@ A citizen science project that employs both mobile and fixed sensors to measure
</tr>
</table>

> [!NOTE]
> **CanAirIO Android App is down now!** sorry, we are working on that, please download a signed version of our [GitHub](https://github.com/kike-canaries/canairio_android/releases)
## Features

- Super easy [web installer](https://canair.io/installer), via Chrome or Edge
Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build_flags =
; -D ENABLE_OTA # disable for memory saving, we have FOTA enable
lib_deps =
bblanchon/ArduinoJson @ 6.21.2
hpsaturn/ESP32 Wifi CLI @ 0.2.1
hpsaturn/ESP32 Wifi CLI @ 0.2.2
https://github.com/chrisjoyce911/esp32FOTA.git#2bbc9cb
https://github.com/rlogiacco/CircularBuffer.git#f29cf01
https://github.com/256dpi/arduino-mqtt.git#7afcfb1
Expand Down

0 comments on commit 8556eac

Please sign in to comment.