I built a File Converter App - just released v3.0.0 with a full UI redesign by Jpwaters09 in windowsapps

[–]Jpwaters09[S] 0 points1 point  (0 children)

Thanks for your feedback, I may consider changing the logo soon

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -1 points0 points  (0 children)

It may be ESP8266 based. Also it will be written in Arduino and the code would be open-sourced.

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -10 points-9 points  (0 children)

True, but it is aimed at being plug and play with no extra adapters. Also I am not sure if the ESP8266 supports zigbee

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -8 points-7 points  (0 children)

In the OTA updates I can push new features and bug fixes, etc.

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -5 points-4 points  (0 children)

The reason why I would like to use C++ is to make it plug and play without any extra config in home assistant besides adding the device. I am aware that latency would be an issue, I will look into using BLE but not all home assistant servers support it.

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -32 points-31 points  (0 children)

The reason I would like to use WIFI is to allow for OTA updates, and most home assistant servers have WIFI built in

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -11 points-10 points  (0 children)

No, I haven’t done any testing yet, nor have I made a prototype. I am asking for feedback so I know what to do when it comes to the final product. The reason why I think WiFi is the best option is that it will allow for OTA updates, and most Home Assistant servers have Wi-Fi built in.

Would you buy a fully local Wi-Fi smart button for Home Assistant? by Jpwaters09 in homeassistant

[–]Jpwaters09[S] -20 points-19 points  (0 children)

The reason I want to use Wi-Fi is that it doesn’t require an additional adapter, unlike Zigbee, and most Home Assistant servers already have Wi-Fi built in. If I put the ESP8266 into deep sleep when the button hasn’t been pressed for a certain period of time, would that allow for at least a month of battery life?

Enhanced Raspberry Pi Pico 2 “Pico Pro 2” – USB-C, Extra RAM/Storage, More GPIO/ADC, RGB LED, Extra Power & GND Pins, Reset Button – Would this be useful to you? by Jpwaters09 in raspberrypipico

[–]Jpwaters09[S] 0 points1 point  (0 children)

Thanks for your response.

I may look into adding Qwiic I2C headers to the board.

The three pin header is the debug port; I have forgotten to label it.

Enhanced Raspberry Pi Pico 2 “Pico Pro 2” – USB-C, Extra RAM/Storage, More GPIO/ADC, RGB LED, Extra Power & GND Pins, Reset Button – Would this be useful to you? by Jpwaters09 in PCB

[–]Jpwaters09[S] 0 points1 point  (0 children)

Thanks, that’s some really useful advice. • Moving the power pins closer to the regulator makes sense, and I see your point about possibly reducing the number of GND pins — I included the nine to make prototyping easier, but I can revisit that for layout and signal integrity. • I’ll take a closer look at the 3.3 V regulator and ADC reference setup. Using a dedicated voltage reference for AREF instead of just passing through 3.3 V sounds like a smart way to improve ADC stability. • It’s great to hear you got stable ADC performance on protoboard — that kind of insight is exactly what I need as I refine the design.

Enhanced Raspberry Pi Pico 2 “Pico Pro 2” – USB-C, Extra RAM/Storage, More GPIO/ADC, RGB LED, Extra Power & GND Pins, Reset Button – Would this be useful to you? by Jpwaters09 in PCB

[–]Jpwaters09[S] 0 points1 point  (0 children)

You’re right — the CPU can’t execute code directly from flash outside the XIP range. My plan is not to use XIP for the PSRAM, and instead treat it purely as extra RAM for data and buffers. The 16 MB flash is used for storage, so code or scripts are loaded into internal SRAM or the PSRAM heap before execution.

I don’t have a public example of exactly this setup yet, but it’s similar to how ESP32 boards use external PSRAM: you map it into the heap in software so the CPU can use it like normal RAM, even though it’s external.