Hello, I’m trying to use snmp trap to my Bluewalker UPS VI1500 model, I started to see if I could run snmpwalk from my windows pc, and if I run the following command:
snmpwalk -v2c -c public 192.168.50.246 1.3.6.1.2.1.33.1.4.4.1.2.1
I get:
SNMPv2-SMI::mib-2.33.1.4.4.1.2.1 = INTEGER: 226
where 226 is the output voltage.
So I created a new yaml file into homeassistant called sensors_ups.yaml and then I included into the configuration.yaml file.
Inside the sensors_ups.yaml file I create the following sensor:
- platform: snmp
name: "UPS Output Voltage"
host: 192.168.50.246
community: "public"
baseoid: 1.3.6.1.2.1.33.1.4.4.1.2.1
unit_of_measurement: "V"
I restarted HA, but no sensor with this name was created. Which is wrong in this?