nesper
nesper copied to clipboard
Program the ESP32 with Nim! Wrappers around ESP-IDF API's.
Hey there, trying to set this up! ``` PS C:\Users\JoshGirvin\Code\firmware-nesper> nimble esp_setup Executing task esp_setup in C:\Users\JoshGirvin\Code\firmware-nesper\esp32_nim_example.nimble [Nesper ESP] setting up project: ...create project source directory ...writing cmake lists io.nim(853)...
I'm trying to use a peripheral from Adafruit which communicates over I2C. The same setup works fine with their Arduino library. I copied the protocol from there, and I can't...
I was wondering if any progress had been made yet on SSL support? Namely I just tried getting the nim_imap library working but getting horribly deep stack traces due to...
Setup CI to run all unit tests and then also run a full build against ESP-IDF. Ideally this could be expanded to include all stable branches of ESP-IDF as well...
There are a number of fixes / modifications on `devel` branch. They need to be tested all together and a new release created.
I've added some more ergonomic nim wrappers around the esp library for interacting with pins, tasks, buttons and errors. The button code needs a little more testing and I should...
Esp32c3
Added support for esp32c3 board
Hello, This issue is from copy of a post on this [thread](https://forum.nim-lang.org/t/10083). I have been following the installation guide on your github page and having an issue with nimbe esp_setup...
Disclaimer: I don't know what I'm doing, I have very little experience with electronics and embedded development. Maybe its just a daft beginner mistake. I'm trying to use the UART...
This definition in `pcnt.nim`: ```nim type pcnt_evt_type_t* {.size: sizeof(cint).} = enum PCNT_EVT_L_LIM = 0, ## !< PCNT watch point event: Minimum counter value PCNT_EVT_H_LIM = 1, ## !< PCNT watch...