delay VS esp-wifi

Compare delay vs esp-wifi and see what are their differences.

delay

arduino-like delay routines based on busy-wait loops (by avr-rust)

esp-wifi

A WiFi, Bluetooth and ESP-NOW driver for use with Espressif chips and bare-metal Rust (by esp-rs)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
delay esp-wifi
3 7
15 378
- 4.8%
0.0 8.9
almost 2 years ago 4 days ago
Rust Rust
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

delay

Posts with mentions or reviews of delay. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-17.
  • AVR-GCC Compiler Makes Questionable Code
    2 projects | news.ycombinator.com | 17 Dec 2022
    Took a while but this issue was fixed this year. Until then, you could compile a patched version of LLVM, or use an older nightly.

    And the code generation was quite broken indeed. Most importantly the saving of registers within interrupt handlers. Hard to understand the bug, but I had documented a simple ask inline solution on the issue. It has been fixed since then.

    My last experience was quite good. And I didn't notice wrong codegen.

    As an aside, the inline asm combines pretty well with generics to produce custom machine code during compilation. For example I was able to reproduce the gcc-avr built-in for delays: https://github.com/avr-rust/delay/blob/cycacc/src/delay_cycl...

  • Embedded Rust Development
    9 projects | /r/embedded | 30 Jul 2022
    I recently got an Arduino Uno to blink without much hassle, very excited about the 328p having built-in support. Will be even easier when a new release of a couple libraries gets released to crates.io, hopefully soon? (https://github.com/avr-rust/delay/issues/19)
  • Code works fine copy/pasted into my main.rs, but is ignored when run from its own external crate
    2 projects | /r/rust | 4 May 2021
    tl;dr I'm trying to figure out why the avr-delay::delay function doesn't seem to do anything when imported as an external crate, but when copy/pasting the code into my main.rs, it all works. Source code here https://github.com/avr-rust/delay

esp-wifi

Posts with mentions or reviews of esp-wifi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-30.
  • Rust on Espressif chips – 29-09-2023
    2 projects | news.ycombinator.com | 30 Sep 2023
    Good question! As far as I can tell from the docs, it looks like I2C is still synchronous [1], but this will be my first async embedded Rust project, so I'm still unfamiliar with the general shape and functionality of things.

    For comparison, things like WiFi are definitely async [2]

    [1] https://docs.rs/esp32s2-hal/latest/esp32s2_hal/i2c/index.htm...

    [2] https://github.com/esp-rs/esp-wifi/blob/main/examples-esp32s...

  • The Embedded Rust ESP Development Ecosystem
    7 projects | dev.to | 15 Sep 2023
    Among these several abstractions, we can program a microcontroller device at any level we like. Additionally, we can develop code with a mix of low-level and high-level abstractions. Obviously, to make code more portable it's better to stick to higher-level abstractions. Also in addition to the above, there exists other crates supporting other functions in no-std development. These include wifi services in the esp-wifi repository, heap allocators in the esp-alloc repository, logging features in the esp-println repository, exception handlers in the esp-backtrace repository, and finally embedded storage traits in the esp-storage repository.
  • ESP32-C3 Wireless Adventure: A Comprehensive Guide to IoT [pdf]
    9 projects | news.ycombinator.com | 14 Jun 2023
    I haven't done much with it yet, but I'm excited about the bare-metal (no_std) rust support for the esp32c3 (as opposed to some other variants that require a custom toolchain as I understand it).

    Lots of details at <https://mabez.dev/blog/posts/>, and some examples of wifi on bare-metal at <https://github.com/esp-rs/esp-wifi>.

    I hope to eventually get it working with MQTT (there may be examples already, I haven't yet looked in-depth), at which point I think this will be my go-to for the majority of my IOT projects going forward!

  • Switching from C++ to Rust
    7 projects | news.ycombinator.com | 13 Mar 2023
    Esp-wifi is very actively being updated, looks like C3 is supposed to work[0][1], so if you tried more than a few weeks ago it probably changed.

    [0]: https://github.com/esp-rs/esp-wifi#current-support

  • Rust for Embedded Development (e.g. microcontrollers)
    5 projects | /r/rust | 6 Dec 2022
    I previously used the esp32-c3 both with bare-metal and with the idf in rust, but I did not like the experience. With the idf you get poor ide support and poor documentation and with bare metal you used to get no wifi at all, but the experience is a lot better. I have seen the new rust wifi driver https://github.com/esp-rs/esp-wifi and i am very interested, but this is still a sync driver afaik.
  • Embedded Rust Development
    9 projects | /r/embedded | 30 Jul 2022
    Also got an ESP32C3 to connect to my wifi network, which was really exciting: https://github.com/esp-rs/esp-wifi
  • ESP32 Packet Sniffing and Manipulation
    1 project | /r/rust | 14 Apr 2022
    Check the project https://github.com/esp-rs/esp-wifi, it implement bindings to the official SDK.

What are some alternatives?

When comparing delay and esp-wifi you can also consider the following projects:

esp-idf-svc - Type-Safe Rust Wrappers for various ESP-IDF services (WiFi, Network, Httpd, Logging, etc.)

rust-esp32-std-demo - Rust on ESP32 STD demo app. A demo STD binary crate for the ESP32[XX] and ESP-IDF, which connects to WiFi, Ethernet, drives a small HTTP server and draws on a LED screen.

esp-idf-template - Template application for https://github.com/espressif/esp-idf

esp-pacs - Peripheral Access Crates for Espressif SoCs and modules

mo - 🦄 Monads and popular FP abstractions, powered by Go 1.18+ Generics (Option, Result, Either...)

espup - Tool for installing and maintaining Espressif Rust ecosystem.

esp-hal - no_std Hardware Abstraction Layers for ESP32 microcontrollers

Reticulum - The cryptography-based networking stack for building unstoppable networks with LoRa, Packet Radio, WiFi and everything in between.

esp-backtrace - backtrace for ESP32 bare-metal

go-sumtype - A simple utility for running exhaustiveness checks on Go "sum types."

willow - Open source, local, and self-hosted Amazon Echo/Google Home competitive Voice Assistant alternative

espthernet - ESP8266 10-Base-T Ethernet Driver