Search found 110 matches

by jandidden
Tue Jun 13, 2023 9:00 pm
Forum: General
Topic: RTC_ESP32_NTP date/time return format
Replies: 3
Views: 907

Re: RTC_ESP32_NTP date/time return format

I changed the format specification bit to see what happens. If I change the GetTimeString format it deletes the seconds and displays HH:MM only, which is according to spec. Changing the Get DateString format has no effect, it still displays 01/01/226. I do not plan to wait a year to see whether it t...
by jandidden
Tue Jun 13, 2023 6:39 pm
Forum: General
Topic: RTC_ESP32_NTP date/time return format
Replies: 3
Views: 907

RTC_ESP32_NTP date/time return format

To verify that I could connect my ESP32 project to the 'net and communicate with another site I thought getting the time would be a good case. Basically I can gather the date and time but the format isn't what I expected. The returned RTC_ESP32_NPT1::GetTimeString(1) returns 00:00:00 and repeated ca...
by jandidden
Tue Jun 13, 2023 9:59 am
Forum: General
Topic: Erasing text on graphic LCD
Replies: 11
Views: 1323

Re: Erasing text on graphic LCD

It is possible to buffer the display I did it for a demo here https://www.flowcode.co.uk/forums/viewtopic.php?f=10&t=1569&p=9135&hilit=Cheeting#p9135 However you need to use less bit depth- - I used 2,4 and 8 bit versions to fit in the available memory (on esp32) You could use a similar technique t...
by jandidden
Tue Jun 13, 2023 9:54 am
Forum: General
Topic: Erasing text on graphic LCD
Replies: 11
Views: 1323

Re: Erasing text on graphic LCD

Hi Probably doable but it seems you are eating up memory. What about just having two branches? Branch one with B1 variables writes your operational screen with whatever background and fixed graphics etc whilst branch two with B2 variables writes your setup screen? As long as you didn't change any v...
by jandidden
Tue Jun 13, 2023 7:54 am
Forum: General
Topic: Erasing text on graphic LCD
Replies: 11
Views: 1323

Re: Erasing text on graphic LCD

Ben a follow-up to the Display Manager if I may. I was looking at a way to 'page' the display. Like when switching between an operational screen and a setup screen. I was thinking I could save a whole screen to memory, display the other screen and then recall the first screen. Mem wise it would need...
by jandidden
Tue Jun 13, 2023 7:17 am
Forum: Feature Requests
Topic: Increase number of SSID reported by scan-for-SSID in ESP32
Replies: 14
Views: 3451

Re: Increase number of SSID reported by scan-for-SSID in ESP32

Ages ago I used a mobile phone to configure. Basically if the ESP couldn't connect it then went it to a "configure routine". This routine created an AP and published a page with all found SSIDs. You could then select the required one and enter a password. That is the way my audio streamer works; it...
by jandidden
Mon Jun 12, 2023 6:52 pm
Forum: Feature Requests
Topic: Increase number of SSID reported by scan-for-SSID in ESP32
Replies: 14
Views: 3451

Re: Increase number of SSID reported by scan-for-SSID in ESP32

Great topic! Will certainly come in handy for me!

Jan
by jandidden
Mon Jun 12, 2023 3:55 pm
Forum: Feature Requests
Topic: Increase number of SSID reported by scan-for-SSID in ESP32
Replies: 14
Views: 3451

Re: Increase number of SSID reported by scan-for-SSID in ESP32

Set it to 32 and all is fine.
Now that people get home from work I'm flooded with no less than 23 active networks.

Next is to figger out to make a scrollable list and how to select from it.
Should be fun.

Thanks Ben!

Jan
by jandidden
Mon Jun 12, 2023 3:47 pm
Forum: Feature Requests
Topic: Increase number of SSID reported by scan-for-SSID in ESP32
Replies: 14
Views: 3451

Re: Increase number of SSID reported by scan-for-SSID in ESP32

Thanks Ben, I'll try that.
The 256 was a bit tongue-in-cheek of course - but something like 16 or 32 should be doable. The mem in that ESP32 is huge.

Jan
by jandidden
Mon Jun 12, 2023 12:29 pm
Forum: General
Topic: Erasing text on graphic LCD
Replies: 11
Views: 1323

Re: Erasing text on graphic LCD

Ben do you mean a function in the component? I don't see it there.
Is there a separate Display Manager somewhere?

Jan