dmarc1234

Results 15 comments of dmarc1234

Hi Timo I understand and I would be interested in paying to have this work done as I think it is a good feature for everyone to share. What would...

Its only part of the group functionality that is required for the alert implementation. I have attached a spreadsheet supplied by Raymarine that outlines the alert process I am looking...

Just wondering if anyone can help with this ?

It would be great if someone could help with this, anyone ? David

That line did come out right above, should be: snmp->addReadWriteStringHandler(".1.3.6.1.4.1.38218.1.3.1.0", (char**)(*conf).sensor_name, 40, true);

Thank you for your reply. Yes, `(*conf).sensor_name` is a `char` within the CONFIG_REG structure. I have tried: `snmp->addReadWriteStringHandler(".1.3.6.1.4.1.38218.1.3.1.0", &(*conf).sensor_name, 40, true);` but it will not compile, I need to cast...

This is how CONFIG_REG is defined: ``` // Structure to contain configuration information typedef struct { char sensor_name[40]; // Sensor name char sensor_location[40]; // Sensor location } CONFIG_REG; ``` and...

@0neblock did you see my message in relation to the structure, still struggling to get this to work.

It would be really good to get this supported as we have been using ESPAsyncWebServer for a number of years and the consensus of opinion is that webservers without security...

Hello, great to see that this is being looked at, thank you. However I am a little confused, beginSecure() will now compile, as its included within AsyncTCP.h, but there is...