Skip to content

Instantly share code, notes, and snippets.

@sfambach
Created January 2, 2021 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sfambach/3c718756795ae6be4a6f7efb4f868942 to your computer and use it in GitHub Desktop.
Save sfambach/3c718756795ae6be4a6f7efb4f868942 to your computer and use it in GitHub Desktop.
/** idf example
*
* Simple hello world example with single output on the console
*
* Some parts are copied from the official idf examples found on
* https://docs.espressif.com/projects/esp-idf/en/latest/esp32/
*
* Modified by SteFam @ http://www.fambach.net
*
* GPLv3
* Blah blah blah, free to use.
* I invested some time and mony in those examples if you want to delete this header
* please do not forget to mention at least my website, thanks!
*/
#include <stdio.h>
void app_main(void)
{
// single console output
printf("www.fambach.net\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment