-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Global] Minor All-Around Cleanup (#590)
* new pr: squashing commits of dev-cleanup * fixed conflicts * Platform IO stage * missed 2. * some fixes. * refactor timer setup and fix misaligned setting underline * new pr: squashing commits of dev-cleanup * fixed conflicts * Platform IO stage * missed 2. * some fixes. * fixes * oops * fixes * relocate MII.h * cleanup * fix * add cache? * testing the cache * Wrap * cache * Add information on how to create new devices * Added layout * change to readme * oops * add more device information * added Central Timezone * shrunk the wifi icon to look better * Dev Info - Fuel Gauge * battery stuff * Battery stuff * fix(ir_read.cpp): resume irrecv after device save * fix(custom_ir.cpp): remove spaces from NEC address and command * fix(sirc): fix SIRC (Sony) protocol * RAW RF enhancement and IR custom little fix * pcbs! merry xmas every1 * fixed md * small little fixes * fix ir_read.cpp ir reader fix, now raw is forced and sending works without problems. * Fix fo RcStiwch decoded saved signals This issue appeared 3 commits before * Updated comment language ir-read.cpp * Update comm. lang. ir_read.cpp * Add Mifare Ultralight Tag read and write with PN532 BLE. * Rebase * Fixed #590 (comment) * #590 (comment) Fix * Fixes --------- Co-authored-by: Cody Ardoin <[email protected]> Co-authored-by: Rennan Cockles <[email protected]> Co-authored-by: Lamn <[email protected]> Co-authored-by: Pirata <[email protected]> Co-authored-by: Pirata <[email protected]> Co-authored-by: pr3y <[email protected]> Co-authored-by: pr3y <[email protected]> Co-authored-by: MayLaOwn <[email protected]> Co-authored-by: whywilson <[email protected]>
- Loading branch information
1 parent
aa560a2
commit 9a8389a
Showing
222 changed files
with
7,439 additions
and
4,571 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
``` | ||
. | ||
├── boards | ||
│ ├── [board] | ||
│ │ └── interface.cpp | ||
│ ├── pinouts | ||
│ │ ├── pins_arduino.h | ||
│ │ └── [board].h | ||
│ ├── [board].json | ||
│ └── [board].ini | ||
├── html | ||
├── media | ||
├── lib | ||
│ ├── utility | ||
│ └─ ... | ||
├── include | ||
│ └─ ... | ||
├── src | ||
│ ├── core | ||
│ ├── modules | ||
│ └── main.cpp | ||
├── test | ||
└── platformio.ini | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "esp32_out.ld" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DARDUINO_ESP32_DEV", | ||
"-DCYD_2432S028" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "40000000L", | ||
"flash_mode": "dio", | ||
"mcu": "esp32", | ||
"variant": "pinouts" | ||
}, | ||
"connectivity": [ | ||
"wifi", | ||
"bluetooth", | ||
"ethernet", | ||
"can" | ||
], | ||
"debug": { | ||
"openocd_board": "esp-wroom-32.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "Espressif ESP32 Dev Module", | ||
"upload": { | ||
"flash_size": "4MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 4194304, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://en.wikipedia.org/wiki/ESP32", | ||
"vendor": "Espressif" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.