Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/platformio-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# CI documents: https://docs.platformio.org/en/latest/integration/ci/github-actions.html#integration
name: PlatformIO CI

on: [push]

jobs:
build-simple:
runs-on: ubuntu-latest
strategy:
matrix:
pio_env: ["m5stack-core2-realtime", "m5stack-cores3-realtime"]
steps:
- uses: actions/checkout@v6
- uses: actions/cache@v5
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO
run: pio run --environment=$PIO_ENV
working-directory: ./firmware
env:
PIO_ENV: ${{ matrix.pio_env }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[English](README_en.md)

# AI Stack-chan Ex
[![PlatformIO CI](https://github.com/ronron-gh/AI_StackChan_Ex/actions/workflows/platformio-ci.yml/badge.svg)](https://github.com/ronron-gh/AI_StackChan_Ex/actions/workflows/platformio-ci.yml)

robo8080さんの[AIスタックチャン](https://github.com/robo8080/AI_StackChan2)をベースに、次のように機能拡張しています。
- AI機能の拡張
- Module LLM(M5Stackの拡張モジュール)によるAI会話機能の完全ローカル化
Expand Down
2 changes: 2 additions & 0 deletions README_en.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[日本語](README.md)

# AI Stack-chan Ex
[![PlatformIO CI](https://github.com/ronron-gh/AI_StackChan_Ex/actions/workflows/platformio-ci.yml/badge.svg)](https://github.com/ronron-gh/AI_StackChan_Ex/actions/workflows/platformio-ci.yml)

Based on robo8080's [AI Stack-chan](https://github.com/robo8080/AI_StackChan2), we have added the following functions.
- Expanding AI capabilities
- Full localization of AI conversation functions using Module LLM (an expansion module for M5Stack)
Expand Down
2 changes: 1 addition & 1 deletion firmware/src/mod/QRdisplay/QRdisplayMod.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef _QR_DISPLAY_MOD_H
#define _QR_DISPLAY_MOD_H

#include <arduino.h>
#include <Arduino.h>
#include "mod/ModBase.h"


Expand Down
2 changes: 1 addition & 1 deletion firmware/src/share/Version.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef _VERSION_H
#define _VERSION_H

#define FW_VERSION "0.22.0"
#define FW_VERSION "0.22.1"

#endif