EPROM-EMU-NG
EPROM Emulator Project with Arduino (by Kris-Sekula)
WiFiManager
ESP8266 WiFi Connection manager with web captive portal (by tzapu)
EPROM-EMU-NG | WiFiManager | |
---|---|---|
4 | 41 | |
137 | 6,711 | |
0.7% | 1.2% | |
6.2 | 6.5 | |
20 days ago | about 1 month ago | |
C++ | C++ | |
Apache License 2.0 | MIT License |
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.
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.
EPROM-EMU-NG
Posts with mentions or reviews of EPROM-EMU-NG.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-14.
-
Motorola 6800 EXORciser development system simulator
I actually used one of these things[0] during development of the DX9/7 firmware mod. I like your Mirage tools by the way! I've actually got a very battered Ensoniq Mirage I picked up for free that's badly in need of some maintenance. If I can get that running I'd love to give your firmware a try!
[0] https://mygeekyhobby.com/2020/07/05/eprom-emulator/
-
Coding x86 Pong as a BIOS extension - start to finish. Feedback appreciated!
Well, the static RAM that the EPROM emulator uses has an access time of 55 nanoseconds. Here's a better description of the hardware.
-
Hello, i have found myself a korg poly-800 that does not have an EPROM, and some suspicious jumpers. I need help. Help about both jumpers, why does it not work and help about EPROM and maybe hexdump.
To use an arduino you'd need to design debug and code something like this specifically to emulate the expected EPROM in the poly-800. An arduino isn't pin-compatible, you can't just shove one in there. Guessing based on the size of the dump file, it's 8k x 8bit, or 64kbit, so probably either 24 or 28 pins? Kind of boils down to how valuable you consider your own time and how much you want to spend to build something for what is basically a one-off, because nobody really needs that.
-
In circuit EEPROM programming for the 6502?
I’ve recently started using the EPROM-EMU-NG to replace the EEPROM with a second SRAM chip, along with an Arduino Nano and some shift registers to be able to program the SRAM from your development station. It holds RST low on the 6502 while it’s doing its work, and can be powered by either USB or the EEPROM power rails.
WiFiManager
Posts with mentions or reviews of WiFiManager.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-27.
- Need some opinions on a clock I'm planning to sell online that involves ESP8266
- Trouble changing clock format from 24 hour to 12 hour
-
I built a website running in ESP32 with separate frontend and backend. The frontend is made with VueJS + TailwindCSS, the backend is coded in C++
Many examples in Arduino tell you to embed HTML to your C++ code (look https://github.com/tzapu/WiFiManager/blob/master/wm_strings_en.h), but my approach is different: The frontend is written in different language (TypeScript + Vue), with separate build process (no C compiler involved). It even is tested independently from Arduino code, on PC.
-
Esp-Idf wifi manager
Hello. Some time ago I' ve strugled with seting up wifi manager in esp_idf framework. Most popular wifi manager made by tzapu was not working on esp-idf framework inside PlatformIo. So I have found tonyp7. It started to work after many changes in library code and makefiles. I have some free time and I can make WifiManager suited to bare esp-idf and esp-idf inside PlatformIo. My question is- do somebody need this ? Maybe there are alternatives which i did not find and my work is pointless. Please share your opinion
-
Best way to communicate WiFi details to Adafruit Feather Huzzah ESP8266
#include // Using the Arduino Library Manager, install "WifiManager by tzapu" - lib at https://github.com/tzapu/WiFiManager void setup() { WiFiManager wifiManager; // Start a Wifi link wifiManager.autoConnect("NewDevice"); // (on first use: will set up as a Wifi name; set up by selecting new Wifi network on iPhone for instance) } void loop() { }
-
Easy way to program wifi credentials on a pre- programmed board?
include // Using the Arduino Library Manager, // install "WifiManager by tzapu" // lib at https://github.com/tzapu/WiFiManager void setup() { WiFiManager wifiManager; // Start a Wifi link. wifiManager.autoConnect("NewDevice"); // (on first use: will set up as // a Wifi name; set up by // selecting new Wifi network on // iPhone for instance) }
-
Making it easy for customer/ client to put in wifi credentials onto a pre-programmed IoT device
Is that fork needed still? It seems like the main project claims support for esp32 now? https://github.com/tzapu/WiFiManager
- Making it easy for client/customer to program SSID and password into IoT devices?
-
ESP_WiFiManager deprecated?
Use this one instead: https://github.com/tzapu/WiFiManager
- SOFT AP Mode for ws2812b LED Matrix Sign using esp8266 and Adafruit Neomatrix library.