forked from esphome/esphome-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename esphomelib to esphome-core (esphome#494)
* Rename esphomelib to esphome-core * Only apply for transition effect * Fix merge * Update CMakeLists.txt * Fix merge * Remove examples
- Loading branch information
1 parent
b31dabb
commit 896a321
Showing
357 changed files
with
3,958 additions
and
4,870 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,54 +1,54 @@ | ||
cmake_minimum_required(VERSION 3.2) | ||
project(esphomelib) | ||
|
||
include(CMakeListsPrivate.txt) | ||
|
||
add_custom_target( | ||
PLATFORMIO_BUILD ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_UPLOAD ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target upload | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_CLEAN ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target clean | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_TEST ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion test | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_PROGRAM ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target program | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_UPLOADFS ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target uploadfs | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_UPDATE_ALL ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion update | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_REBUILD_PROJECT_INDEX ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion init --ide clion | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_executable(${PROJECT_NAME} ${SRC_LIST}) | ||
cmake_minimum_required(VERSION 3.2) | ||
project(esphome-core) | ||
|
||
include(CMakeListsPrivate.txt) | ||
|
||
add_custom_target( | ||
PLATFORMIO_BUILD ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_UPLOAD ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target upload | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_CLEAN ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target clean | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_TEST ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion test | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_PROGRAM ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target program | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_UPLOADFS ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion run --target uploadfs | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_UPDATE_ALL ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion update | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_custom_target( | ||
PLATFORMIO_REBUILD_PROJECT_INDEX ALL | ||
COMMAND ${PLATFORMIO_CMD} -f -c clion init --ide clion | ||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | ||
) | ||
|
||
add_executable(${PROJECT_NAME} ${SRC_LIST}) |
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 |
---|---|---|
@@ -1,15 +1,14 @@ | ||
# Contributing to esphomelib | ||
# Contributing to ESPHome Core | ||
|
||
esphomelib is the C++ framework that powers the whole esphomelib project. | ||
ESPHome-Core is the C++ framework that powers the whole ESPHome project. | ||
|
||
For a detailed guide, please see https://esphomelib.com/esphomeyaml/guides/contributing.html#contributing-to-esphomelib | ||
For a detailed guide, please see https://esphome.io/eguides/contributing.html#contributing-to-esphomelib | ||
|
||
Things to note when contributing: | ||
- Please test your changes :) | ||
- If a new feature is added or an existing user-facing feature is changed, you should also | ||
update the [docs](https://github.com/OttoWinter/esphomedocs). See [contributing to esphomedocs](https://esphomelib.com/esphomeyaml/guides/contributing.html#contributing-to-esphomedocs) | ||
update the [docs](https://github.com/esphome/esphome-docs). See [contributing to esphome-docs](https://esphome.io/guides/contributing.html#contributing-to-esphomedocs) | ||
for more information. | ||
- Please also create a YAML counterpart of new features in [esphomeyaml](https://github.com/OttoWinter/esphomeyaml) so that more users | ||
can profit from it. | ||
- Please also create a YAML counterpart of new features in [esphome](https://github.com/esphome/esphome). | ||
- Sometimes I will let pull requests linger because I'm not 100% sure about them. Please feel free to ping | ||
me after some time. |
Oops, something went wrong.