1. update licenses for example 2. modify button api in test code 3. fix some warnings in oled test code 4. add config for button 5. improve button driver and test code. 6. modify relay component 7. update power meter component 8. fix unit-test compile issue 9. update status led component
18 lines
482 B
C
18 lines
482 B
C
/* Example
|
|
|
|
For other examples please check:
|
|
https://github.com/espressif/esp-iot-solution/tree/master/examples
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
*/
|
|
|
|
#include "example2.h"
|
|
#include <stdio.h>
|
|
void example2()
|
|
{
|
|
printf("example2\n");
|
|
}
|