Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
M5stack | 1,026 | 3 days ago | 29 | mit | C | |||||
M5Stack Arduino Library | ||||||||||
Esp Dash | 771 | 24 days ago | 12 | gpl-3.0 | C++ | |||||
Blazing fast library to create a functional dashboard for ESP8266 and ESP32 | ||||||||||
Tmrpcm | 483 | a year ago | 8 | C++ | ||||||
Arduino library for asynchronous playback of PCM/WAV files direct from SD card. Arduino Uno,Nano,Mega etc supported | ||||||||||
Peeqo Robot | 360 | 5 years ago | gpl-3.0 | JavaScript | ||||||
The world's first robot to interact through GIFs...'nuf said | ||||||||||
Runcpm | 308 | 13 days ago | mit | C | ||||||
RunCPM is a multi-platform, portable, Z80 CP/M 2.2 emulator. | ||||||||||
Reference Cards | 286 | 6 years ago | ||||||||
Business card-sized references for Arduino and basic electronics | ||||||||||
Bitlash | 283 | 5 years ago | 36 | mit | C | |||||
Bitlash: a programmable command shell for arduino | ||||||||||
Wirelessprinting | 272 | a year ago | 26 | C++ | ||||||
Print wirelessly from Cura, PrusaSlicer or Slic3r to your 3D printer connected to an ESP8266 (in the future also ESP32) module | ||||||||||
M5stack Sd Updater | 249 | 14 days ago | 89 | mit | C++ | |||||
💾 Customizable menu system for M5Stack and ESP32-Chimera-Core - loads apps from the Micro SD card. Easily add you own apps | ||||||||||
Tinybasicplus | 235 | 5 years ago | 21 | C++ | ||||||
A C implementation of Tiny Basic, with a focus on support for Arduino |
Recently, there have been some projects trying to use the RSSI signal of an RX5808 5.8GHz video receiver to detect when a quadcopter is passing close to the "base-station" to be able to count the laptimes.
I wanted to try this with my 90mm brushless quad in my little garden racetrack.
Unfortunately, it seems the RSSI signal is not really usable in such close ranges. That's why I've more-or-less abandoned this project.
The whole project consists of an Arduino Micro, a 128x64 I2C OLED display, an SD card module and of course the RX5808 module with the SPI mod done.
The pins used on the Arduino can be modified at the beginning of the included Sketch.
The CSV logfile stored on the SD card looks like this:
4058, 159
4212, 161
4367, 163
4521, 161
4674, 160
4826, 160
4977, 160
The fist column contains the milliseconds uptime of the Arduino. The seconds column contains the averaged RSSI value read from the ADC hardware.
The included overlay.py
Python-script can be used to render an overlay plot of the logged RSSI data over flight footage.
See the beginning of the script file for the configuration options you have to change!
The SPI and RX5808 interfacing code has been taken and modified from the Chorus-RF-Laptimer by Andrey Voroshkov. This code, as well as all of my code, is released under the MIT license. See the COPYING
file in this repository.