hb020

Results 6 issues of hb020

Situation: vindriktning with small self-made esp8266 board that sends the values to my IOT system. Readout function based on this git repo. Over the last 2 months the pm2.5 values...

getDistance and getRangeStatus go together. No use reading getDistance if one does not know the range status, as the status will tell if the distance read is valid or not....

...because ```python TEXT_REGEX = re.compile(r"TEXT (-?\d+)\s+(-?\d+)\s+(Left|Right|Top|Bottom)\s(\d+)\s*(?P[!;])(?P.*)", re.IGNORECASE) ``` does not detect VLeft, VRight,... Since the relevant code is undergoing movements (TEXT_REGEX is in asc_editor.py in the public version, but it...

... as the file encoding is UTF-16 LE, without BOM. As a result, you get a NotImplementedError exception in reset_netlist. There is no easy way out, one needs to test...

Pretty simple one here: Inside ```AscEditor.add_instruction```: ```python while i < len(self.directives): directive = self.directives[i] if directive.type == TextTypeEnum.COMMENT: continue # this is a comment ``` should become ```python while i...

There is an incoherence between SpiceEditor and AscEditor: * ```SpiceEditor``` handles all components of the values of a component as one value, and they can be set via ```set_component_value```. *...