Search found 4 matches

by Hailwiz9
Tue Apr 12, 2022 9:22 am
Forum: ESP32 Arduino
Topic: Motivation of using esp32 arduino?
Replies: 5
Views: 3918

Re: Motivation of using esp32 arduino?

Well I actually wanted to write the code in pure ESP-IDF, wanted to have more control over evertyhing and learn the inside out of the chip but there are some libraries I need like the DMD library to write on P10 Led Panels, and I tried to convert the arduino library to ESP-IDF but was not successful...
by Hailwiz9
Mon Apr 11, 2022 7:20 pm
Forum: ESP32 Arduino
Topic: ESP32 Arduino FreeRTOS Software Timer
Replies: 2
Views: 3026

Re: ESP32 Arduino FreeRTOS Software Timer

void progTimerEventHandler(uint8_t state) { // State == 1 conditions if (state == 1) { if (progState == 0) { if( progTimer1 != NULL ) // If the timer has been created { progTimer1Started = xTimerStart(progTimer1, 10); // Starts the timer Serial.println("The Timer 1 has been issued"); remTimeDisplay...
by Hailwiz9
Sun Apr 10, 2022 1:24 pm
Forum: ESP32 Arduino
Topic: ESP32 Arduino FreeRTOS Software Timer
Replies: 2
Views: 3026

ESP32 Arduino FreeRTOS Software Timer

Hello, I was trying to learn about freeRtos but I've encountered a problem so I've decided to put up a program. I am using platform IO What I intend to do is this: - We have 2 one-shot timers (I actually wanted to use more but tried with 2 after trying with 1) - I wanted to define them as static. - ...
by Hailwiz9
Fri Mar 18, 2022 9:47 pm
Forum: ESP-IDF
Topic: Cannot include <stdint.h> , Eclipse ESP-IDF
Replies: 0
Views: 1820

Cannot include <stdint.h> , Eclipse ESP-IDF

Hello, I have used arduino before and I can be said to be a beginner in terms of C, C++ I wanted to learn more in-depth coding by diving into the ESP-IDF environment, I'm using Eclipse IDE, I'm trying to convert the DMD32 library which was written for arduino to be used in ESP-IDF but got stuck at s...