Skip to content

Commit 0aedf0a

Browse files
authored
Merge pull request #12 from jaswch/main
Update platformio.ini and README.md
2 parents c1a4d2d + 888f44c commit 0aedf0a

2 files changed

Lines changed: 10 additions & 15 deletions

File tree

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ When we look at the current smart watches (especially the cheap ones) the are pr
2121
5. Connect the Stemma qt connector to the TQT Pro
2222

2323
# Installation (for platformio users)
24-
Create a new project and paste all of the files in your project's directory and upload the code (Note:- You may need to change the build flags in ```platformio.ini``` if using an 8MB version of TQT Pro)
24+
Clone the repository and upload the code (Note:-If using an 8MB version of TQT Pro uncomment line 10 and comment line 11 and 17 in ```platformio.ini``` file)
2525

2626
# Installation (for arduino users)
27-
All of the required code is in the ```src``` directory, just rename the file ```main.cpp``` to ```main.ino``` and install ```Button2``` and ```TFT_eSPI``` (according to LILYGO TFT_eSPI version 2.0.14 or lower is recommended) in the ide and upload the code
27+
All of the required code is in the ```src``` directory, just rename the file ```main.cpp``` to ```main.ino``` and install ```Button2```, ```TFT_eSPI``` (according to LILYGO TFT_eSPI version 2.0.14 or lower is recommended), ```Adafruit GFX```, ```Adafruit MPU6050``` and ```Adafruit Unified Sensor``` in the ide and upload the code
2828

2929
# Features
3030
1. Home screen with custom background
@@ -47,7 +47,7 @@ All of the required code is in the ```src``` directory, just rename the file ```
4747
4. While playing pong scroll button moves the paddle up and the menu button moves the paddle down
4848

4949
# Release Notes
50-
1. **V0.3** - New UI, multiple watch faces, Wifi support, time synchronisation, back option in menus, accelerometer support and apps and sub menus sepereted from the ```main.cpp``` file.
50+
1. **V0.3** - New UI (created using [lopaka.app](https://lopaka.app/sandbox)), multiple watch faces, Wifi support, time synchronisation, back option in menus, accelerometer support and apps and sub menus sepereted from the ```main.cpp``` file.
5151
2. **V0.2.1** - Added refinements to the OS navigation, added a manual in the ```README.md``` and changed the tone of the speaker.
5252
3. **V0.2** - A significant update compared to V0.1, as it introduced menus, pong, interaction with peripherals (torch and speaker), OS being open sourced, matrix effect, settings menu.
5353
4. **V0.1** - The initial release it just had a home screen and an about screen.
@@ -59,10 +59,9 @@ By V0.7 or V0.8 we could start making SDKs for developers to make apps and games
5959
Yes, you can contribute to the project by the following ways :
6060
1. Help us add features to the project by making a PR.
6161
2. Help us test and find bugs.
62-
3. Give feature suggestions by making an issue.
62+
3. Give feature suggestions in this [issue](https://github.com/OpenTimeWatch-Project/OpenTimeWatch-OS/issues/1).
6363
4. Help us test or review PRs.
64-
5. Leave a star ✨ if you like the project.
65-
6. PS : If you have a better logo for the project please let us know by opening a new issue (don't worry we will credit you)
64+
5. PS : If you have a better logo for the project please let us know by opening a new issue (don't worry we will credit you)
6665

6766
# Images
6867
![Alt text](images/IMG_20241119_201516.jpg)

platformio.ini

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
11
; PlatformIO Project Configuration File
2-
;
3-
; Build options: build flags, source filter
4-
; Upload options: custom upload port, speed and extra flags
5-
; Library options: dependencies, extra library storages
6-
; Advanced options: extra scripting
7-
;
8-
; Please visit documentation for the other options and examples
9-
; https://docs.platformio.org/page/projectconf.html
2+
103

114
[platformio]
125
boards_dir = ./board
136
default_envs = T-QT-Pro-N4R2
14-
description = Open source watch OS
7+
description = Open source watch OS for ESP32 based watches
158

9+
; uncomment the below line if you have 8mb of flash and no PSRAM and comment the line below it
10+
;[env:T-QT-Pro-N8]
1611
[env:T-QT-Pro-N4R2]
1712
platform = espressif32@6.6.0
1813
board = esp32-s3-t-qt-pro
1914
framework = arduino
2015
build_flags =
16+
; comment the below line if you don't have PSRAM
2117
-DBOARD_HAS_PSRAM
2218
lib_deps =
2319
lennarthennigs/Button2@^2.3.3

0 commit comments

Comments
 (0)