hb020
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```. *...
Yes, a lot of things here. * SDS800X-HD series oscilloscope is now supported (low level communication got changed) * Python 3 (thanks to Don Becker) * AD9910 Arduino Shield AWG...
..since that scope uses UDP instead of TCP for the port mapping, and this script does not fully respect the port mapping protocols by only offering mapping on TCP. (a...
ngspice is now better integrated with kicad, and is multi platform. This means that more people will likely be interested in better support for ngspice. I am planning to work...
This PR allows a better integration with ngspice: calling and raw file reading is improved. Unfortunately the present ngspice version did not clearly identify itself in the raw files, and...