Smart-Home am Beispiel der Präsenzerkennung im Raum Projektarbeit Lennart Heimbs, Johannes Krug, Sebastian Dohle und Kevin Holzschuh bei Prof. Oliver Hofmann SS2019
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mainpage.dox 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. @mainpage MySensors library and examples documentation
  3. Are you a sketch developer/user, see @ref publics
  4. Are you a core/library developer, see @ref internals
  5. @copyright (C) 2013-2018 Sensnology AB
  6. Full contributor list: https://github.com/mysensors/MySensors/graphs/contributors
  7. */
  8. /*
  9. * Doxygen groups that are spread across files/sections
  10. */
  11. /**
  12. * @defgroup publics MySensors public APIs and functionalities
  13. * @brief The public APIs and functionalities are directly accessible to sketch developers/users.
  14. *
  15. * @defgroup internals MySensors internal APIs and functionalities
  16. * @brief The interal APIs and functionalities should only be used by library developers/advanced
  17. * users.
  18. *
  19. */
  20. /**
  21. * @defgroup MyConfigGrp Library customisation
  22. * @ingroup publics
  23. *
  24. * @brief The MySensors library can be customized in various ways.
  25. *
  26. * All customizations are set in the sketch. @note It is important to define any customizations
  27. * before including the primary library header. @see MySensors.h
  28. */
  29. /**
  30. * @defgroup memorysavings Tips for reducing memory footprint
  31. * @ingroup MyConfigGrp
  32. *
  33. * @brief Some settings are optional but add significantly to the memory footprint size.
  34. *
  35. * By disabeling optional features that you don't need you can save memory which can be a valuable
  36. * resource on cheaper hardware like the atmega328p.
  37. * These options can be defined in your sketch to disable such features.
  38. */