bellrichm / WeeWX-MQTTSubscribe

A WeeWX service and driver that receives data from MQTT.
GNU General Public License v3.0
52 stars 13 forks source link

Allow setting `ignore = true` for a subfield #204

Closed bellrichm closed 6 months ago

bellrichm commented 6 months ago

Currently this is required

            [[[[solar_uvi]]]]
                [[[[[subfields]]]]]
                    [[[[[[label]]]]]]
                    [[[[[[data]]]]]]
                    [[[[[[unit]]]]]]
            [[[[solar_uvi_label]]]]
                ignore = true
            [[[[solar_uvi_unit]]]]
                ignore = true

Allow this

            [[[[solar_uvi]]]]
                [[[[[subfields]]]]]
                    [[[[[[label]]]]]]
                        ignore = true
                    [[[[[[data]]]]]]
                    [[[[[[unit]]]]]]
                        ignore = true

See #201

bellrichm commented 6 months ago

Closing, correct implementation will be done via #205