Multi-Channel Soft PWM library (#579)
This commit is contained in:
parent
49343e9c68
commit
8d4b4aa7a3
4 changed files with 58 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -34,3 +34,6 @@
|
||||||
[submodule "extras/libesphttpd/libesphttpd/lib/heatshrink"]
|
[submodule "extras/libesphttpd/libesphttpd/lib/heatshrink"]
|
||||||
path = extras/libesphttpd/libesphttpd/lib/heatshrink
|
path = extras/libesphttpd/libesphttpd/lib/heatshrink
|
||||||
url = https://github.com/atomicobject/heatshrink
|
url = https://github.com/atomicobject/heatshrink
|
||||||
|
[submodule "extras/multipwm"]
|
||||||
|
path = extras/multipwm
|
||||||
|
url = https://github.com/nochkin/multipwm
|
||||||
|
|
4
examples/multipwm/Makefile
Normal file
4
examples/multipwm/Makefile
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
# Simple makefile for multipwm example
|
||||||
|
PROGRAM=multipwm_test
|
||||||
|
EXTRA_COMPONENTS = extras/multipwm
|
||||||
|
include ../../common.mk
|
50
examples/multipwm/multipwm_test.c
Normal file
50
examples/multipwm/multipwm_test.c
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
/* An example for the multipwm library
|
||||||
|
* Connect LEDs to pins 12, 13, 15 to see the light changes
|
||||||
|
*
|
||||||
|
* Part of esp-open-rtos
|
||||||
|
* Copyright (c) Sashka Nochkin (https://github.com/nochkin)
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "espressif/esp_common.h"
|
||||||
|
#include "esp/uart.h"
|
||||||
|
#include "FreeRTOS.h"
|
||||||
|
#include "task.h"
|
||||||
|
|
||||||
|
#include "multipwm.h"
|
||||||
|
|
||||||
|
void multipwm_task(void *pvParameters)
|
||||||
|
{
|
||||||
|
uint32_t counts[] = {500, 2100, 3000};
|
||||||
|
int32_t steps[] = {100, 300, 200};
|
||||||
|
uint8_t pins[] = { 12, 13, 15};
|
||||||
|
|
||||||
|
pwm_info_t pwm_info;
|
||||||
|
pwm_info.channels = 3;
|
||||||
|
|
||||||
|
multipwm_init(&pwm_info);
|
||||||
|
for (uint8_t ii=0; ii<pwm_info.channels; ii++) {
|
||||||
|
multipwm_set_pin(&pwm_info, ii, pins[ii]);
|
||||||
|
}
|
||||||
|
|
||||||
|
while(1) {
|
||||||
|
multipwm_stop(&pwm_info);
|
||||||
|
for (uint8_t ii=0; ii<pwm_info.channels; ii++) {
|
||||||
|
multipwm_set_duty(&pwm_info, ii, counts[ii]);
|
||||||
|
counts[ii] += steps[ii];
|
||||||
|
if ((counts[ii] >= 10000) || (counts[ii] == 0)) {
|
||||||
|
steps[ii] = -steps[ii];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
multipwm_start(&pwm_info);
|
||||||
|
vTaskDelay(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void user_init(void)
|
||||||
|
{
|
||||||
|
uart_set_baud(0, 115200);
|
||||||
|
printf("SDK version:%s\n", sdk_system_get_sdk_version());
|
||||||
|
|
||||||
|
xTaskCreate(multipwm_task, "multipwm", 256, NULL, 2, NULL);
|
||||||
|
}
|
1
extras/multipwm
Submodule
1
extras/multipwm
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 44ecea5757bee0112c65f33eadb44e91a8923535
|
Loading…
Reference in a new issue