Aidan Cyr

Results 9 comments of Aidan Cyr

Hi @touffy67 @FairWindCo @ttamiozzo Sorry for the late reply. This library should allow it to work on non-ESP versions of Arduino: https://github.com/mike-matera/ArduinoSTL I will update the README to indicate this.

HI Niich, Sorry for not looking at this yet. I'll have a look through your code and see if I can't refactor my code base to make it easier to...

Hey @shortbloke, I've been working on it slowly over the last couple of weeks, you can find my progress on the 'https://github.com/0neblock/Arduino_SNMP/tree/snmp-manager' branch. I'm struggling around some specifics of the...

Hey there, could you make a PR with this change?

Hi @dmarc1234. What is the type of `(*conf).sensor_name`? If it is a `char*`, then you'll need to pass the reference of it to `addReadWriteStringHandler()`. For example: `snmp->addReadWriteStringHandler(".1.3.6.1.4.1.38218.1.3.1.0", &(*conf).sensor_name, 40, true);`...

@dmarc1234 Can you show me the declaration of the `CONFIG_REG` type? What data type is `sensor_name`?

Hi @ae-zero, Interesting find with this bug. As you can see from the OID Encoding method here: https://github.com/0neblock/Arduino_SNMP/blob/8ace14f7c8ac380fe531f3ddfacde8ccb0469cda/src/BEREncode.cpp#L145-L181 I assume that all OID's are prefixed with `.1.3` I can't remember...

Thanks for this, nice find. Maybe if you'd like to make a PR for this change in the example `SNMPTrap.h` file?

Hi @workpage2. There is a type for it; `NetworkAddress`, but there is no `addhandler()` for it. I will try to add this in for you in the next few days...