├── .github └── workflows │ └── build.yml ├── .gitignore ├── .ignore ├── Deprecated └── IV.py ├── LICENSE ├── README.md ├── Rodriguez.qrc ├── Rodriguez └── Rodriguez.ino ├── Rodriguez_rc.py ├── Rodriquez.e4p ├── Schematic ├── Breadboard │ ├── Rodriguez-pebble-NPN.png │ ├── Rodriguez-pebble-NPN.txt │ ├── Rodriguez-pebble-PNP.png │ ├── Rodriguez-pebble-PNP.txt │ ├── Rodriguez-pebble-diode.png │ ├── Rodriguez-pebble-diode.txt │ ├── Rodriguez-pebble.png │ └── Rodriguez-pebble.txt ├── Rodriguez-Schematic.png └── cover.svg ├── __init__.py ├── forms ├── IVTrace.py ├── IVTracer.py ├── IVTracer_Collector.py ├── IVTracer_Signals.py ├── IVTracer_Value.py ├── Ui_main.py ├── Ui_plotter.py ├── deviceTypes.py ├── icons │ ├── IV.png │ ├── dark.png │ └── light.png ├── main.ui ├── mainWindow.py └── resources.qrc ├── icons ├── Rodriguez.png ├── Windows │ └── Rodriguez.ico ├── mac │ ├── Rodriguez.icns │ ├── Rodriguez.png │ └── generate_icns.sh └── source │ └── IV.svg ├── requirements.txt └── rodriguez.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build 2 | 3 | on: 4 | push: 5 | tags: 6 | - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 7 | 8 | jobs: 9 | 10 | createrelease: 11 | name: Create Release 12 | runs-on: [ubuntu-latest] 13 | steps: 14 | - name: Create Release 15 | id: create_release 16 | uses: actions/create-release@v1 17 | env: 18 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 19 | with: 20 | tag_name: ${{ github.ref }} 21 | release_name: Release ${{ github.ref }} 22 | draft: false 23 | prerelease: false 24 | - name: Output Release URL File 25 | run: echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt 26 | - name: Save Release URL File for publish 27 | uses: actions/upload-artifact@v1 28 | with: 29 | name: release_url 30 | path: release_url.txt 31 | 32 | build: 33 | name: Build packages 34 | needs: createrelease 35 | runs-on: ${{ matrix.os }} 36 | strategy: 37 | matrix: 38 | include: 39 | - os: macos-latest 40 | TARGET: macos 41 | CMD_BUILD: > 42 | pyinstaller -F -w -n Rodriguez -i icons/mac/Rodriguez.icns rodriguez.py && 43 | cd dist/ && 44 | zip -r9 Rodriguez Rodriguez.app/ 45 | OUT_FILE_NAME: Rodriguez.zip 46 | ASSET_MIME: application/zip 47 | - os: windows-latest 48 | TARGET: windows 49 | CMD_BUILD: pyinstaller -F -w -n Rodriguez -i icons/Windows/Rodriguez.ico rodriguez.py 50 | OUT_FILE_NAME: Rodriguez.exe 51 | ASSET_MIME: application/vnd.microsoft.portable-executable 52 | - os: ubuntu-18.04 53 | TARGET: ubuntu 54 | CMD_BUILD: pyinstaller -F -w -n Rodriguez rodriguez.py 55 | OUT_FILE_NAME: Rodriguez 56 | ASSET_MIME: application/x-sharedlib 57 | steps: 58 | - uses: actions/checkout@v1 59 | - name: Set up Python 3.7 60 | uses: actions/setup-python@v2 61 | with: 62 | python-version: 3.7 63 | - name: Install dependencies 64 | run: | 65 | python -m pip install --upgrade pip 66 | pip install -r requirements.txt 67 | - name: Build with pyinstaller for ${{matrix.TARGET}} 68 | run: ${{matrix.CMD_BUILD}} 69 | - name: Load Release URL File from release job 70 | uses: actions/download-artifact@v1 71 | with: 72 | name: release_url 73 | - name: Get Release File Name & Upload URL 74 | id: get_release_info 75 | shell: bash 76 | run: | 77 | value=`cat release_url/release_url.txt` 78 | echo ::set-output name=upload_url::$value 79 | - name: Upload Release Asset 80 | id: upload-release-asset 81 | uses: actions/upload-release-asset@v1 82 | env: 83 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 84 | with: 85 | upload_url: ${{ steps.get_release_info.outputs.upload_url }} 86 | asset_path: ./dist/${{ matrix.OUT_FILE_NAME}} 87 | asset_name: ${{ matrix.OUT_FILE_NAME}} 88 | asset_content_type: ${{ matrix.ASSET_MIME}} 89 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .eric6project/ 2 | .ropeproject/ 3 | .directory/ 4 | *.pyc 5 | *.pyo 6 | *.orig 7 | *.bak 8 | *.rej 9 | *~ 10 | cur/ 11 | tmp/ 12 | __pycache__/ 13 | *.DS_Store 14 | -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | 2 | # Byte-compiled / optimized / DLL files 3 | __pycache__/ 4 | *.py[cod] 5 | *$py.class 6 | 7 | # C extensions 8 | *.so 9 | 10 | # Distribution / packaging 11 | .Python 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | wheels/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | cover/ 54 | 55 | # Translations 56 | *.mo 57 | *.pot 58 | 59 | # Django stuff: 60 | *.log 61 | local_settings.py 62 | db.sqlite3 63 | db.sqlite3-journal 64 | 65 | # Flask stuff: 66 | instance/ 67 | .webassets-cache 68 | 69 | # Scrapy stuff: 70 | .scrapy 71 | 72 | # Sphinx documentation 73 | docs/_build/ 74 | 75 | # PyBuilder 76 | .pybuilder/ 77 | target/ 78 | 79 | # Jupyter Notebook 80 | .ipynb_checkpoints 81 | 82 | # IPython 83 | profile_default/ 84 | ipython_config.py 85 | 86 | # pyenv 87 | # For a library or package, you might want to ignore these files since the code is 88 | # intended to run in multiple environments; otherwise, check them in: 89 | # .python-version 90 | 91 | # pipenv 92 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 93 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 94 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 95 | # install all needed dependencies. 96 | #Pipfile.lock 97 | 98 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 99 | __pypackages__/ 100 | 101 | # Celery stuff 102 | celerybeat-schedule 103 | celerybeat.pid 104 | 105 | # SageMath parsed files 106 | *.sage.py 107 | 108 | # Environments 109 | .env 110 | .venv 111 | env/ 112 | venv/ 113 | ENV/ 114 | env.bak/ 115 | venv.bak/ 116 | 117 | # Spyder project settings 118 | .spyderproject 119 | .spyproject 120 | 121 | # Rope project settings 122 | .ropeproject 123 | 124 | # mkdocs documentation 125 | /site 126 | 127 | # mypy 128 | .mypy_cache/ 129 | .dmypy.json 130 | dmypy.json 131 | 132 | # Pyre type checker 133 | .pyre/ 134 | 135 | # pytype static type analyzer 136 | .pytype/ 137 | 138 | # Cython debug symbols 139 | cython_debug/ 140 | -------------------------------------------------------------------------------- /Deprecated/IV.py: -------------------------------------------------------------------------------- 1 | import serial 2 | import time 3 | import io 4 | 5 | portname="/dev/ttyUSB0" 6 | portspeed=1000000 7 | serialport=serial.Serial(portname,portspeed) 8 | time.sleep(2) 9 | 10 | with open('IV.csv', 'w') as IVFile: 11 | #Set the output to zero volts. Read and discard the first values. 12 | serialport.write(("0B"+chr(13)).encode()) 13 | valuestring = serialport.readline() 14 | for counter in range(0 , 1023): 15 | 16 | serialport.write((str(counter)+"B"+chr(13)).encode()) 17 | #serialport.write(("M\r\n").encode()) 18 | valuestring = serialport.readline() 19 | stringvalues = valuestring.split(('\t').encode()) 20 | 21 | vBias = (float(stringvalues[0])/1023) * 5 / 256 22 | vBase = (float(stringvalues[1])/1023) * 5 / 256 23 | vCollector = (float(stringvalues[2])/1023) * 5 / 256 24 | 25 | print("Count: " + str(counter) + " VBias= " + str(vBias) + " VBase= " + str(vBase) + " VCollector= " + str(vCollector)) 26 | 27 | 28 | V = counter/1023 * 5 29 | IBase = ((vBias-vBase)/1000) 30 | ICollector = (5.0-vCollector)/1000.0 31 | #Amperes to milliamperes 32 | IBase = IBase * 1000.0 33 | ICollector = ICollector * 1000.0 34 | IVFile.write( str(V) + "\t" + str(vBias) + "\t" + str(vBase) + "\t" + str(IBase) + "\t" + str(ICollector) + "\r\n") 35 | 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rodriguez 2 | 3 | A PyQt5 and Python program to make diode and transistor IV plots using an Arduino as the electrical interface. 4 | 5 | Rodriguez makes current and voltage traces of various semiconductors. 6 | 7 | In its current form, it can trace diodes (including LEDs) and bipolar junction transistors (NPN and PNP.) 8 | 9 | Rodriguez makes use of an Arduino and some very simple hardware. The simple hardware sets limits on the range (and hence the usefulness) of the system, but makes it possible for any beginning hobbyist to build it. Rodriguez gets by using the analog to digital converters of the Arduino and the PWM outputs. 10 | 11 | ![Rodriguez's hardware](/Schematic/Rodriguez-Schematic.png) 12 | 13 | -------------------------------------------------------------------------------- /Rodriguez.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icons/Rodriguez.png 4 | forms/icons/IV.png 5 | forms/icons/dark.png 6 | forms/icons/light.png 7 | 8 | 9 | -------------------------------------------------------------------------------- /Rodriguez/Rodriguez.ino: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | 4 | #define BASE_OUT_PIN 9 5 | #define COLLECTOR_OUT_PIN 10 6 | #define SWITCHF 10000 //Generate PWM at 10kHz. 7 | //Minimum pulse width is about 130 microseconds, so higher frequencies lose duty cycle steps at the low end. 8 | //At 10kHz, pulse widths 0 and 1 generate no pulse, above 2 generates a pulse. 9 | 10 | //trying for 4 extra bits from the ADC (equivalent of 14 bits instead of 10.) 11 | //Oversample by 4^n to get n extra bits. 4^4=256 12 | #define OVERSAMPLING 256 13 | 14 | 15 | float fperiod=(1/((float)SWITCHF))*1000000; 16 | unsigned long period=(int)fperiod; 17 | String message_buffer; 18 | unsigned long dutycycle=1; //Start at zero volts output 19 | 20 | 21 | 22 | void setup() { 23 | Serial.begin(1000000); 24 | while (!Serial) { 25 | ; // wait for serial port to connect. Needed for native USB port only 26 | } 27 | pinMode(BASE_OUT_PIN, OUTPUT); 28 | Timer1.initialize(period); 29 | Timer1.pwm(BASE_OUT_PIN,dutycycle); 30 | Timer1.pwm(COLLECTOR_OUT_PIN,dutycycle); 31 | } 32 | 33 | void loop() { 34 | if (Serial.available() > 0){ 35 | int numChar = Serial.available(); 36 | byte received_byte=0; 37 | while (numChar--){ 38 | received_byte=Serial.read(); 39 | 40 | //discard line feeds 41 | if (received_byte==10){ 42 | continue; 43 | } 44 | //Set Base output on "B" (66) 45 | if (received_byte==66){ 46 | handle_message(BASE_OUT_PIN); 47 | makeMeasurementsAndSendMessage(); 48 | continue; 49 | } 50 | //Set Collector output on "C" (67) 51 | if (received_byte==67){ 52 | handle_message(COLLECTOR_OUT_PIN); 53 | makeMeasurementsAndSendMessage(); 54 | continue; 55 | } 56 | 57 | if (received_byte!=10 && received_byte!=13 &&isDigit(received_byte)) { 58 | message_buffer=message_buffer + char(received_byte); 59 | continue; 60 | } 61 | } 62 | } 63 | } 64 | 65 | void handle_message(int pin){ 66 | if (message_buffer==""){ 67 | return; 68 | } 69 | dutycycle=message_buffer.toInt(); 70 | 71 | message_buffer=""; 72 | if (dutycycle<0){ 73 | dutycycle=0; 74 | } 75 | if (dutycycle>1023){ 76 | dutycycle=1023; 77 | } 78 | 79 | Timer1.pwm(pin,dutycycle); //,period); 80 | } 81 | 82 | void makeMeasurementsAndSendMessage(){ 83 | long counter = OVERSAMPLING; 84 | unsigned long VBias = 0; 85 | unsigned long VBase = 0; 86 | unsigned long VCollector = 0; 87 | unsigned long VCollectorBias = 0; 88 | 89 | while (counter--){ 90 | VBias = VBias + analogRead(A0); 91 | VBase = VBase + analogRead(A1); 92 | VCollector = VCollector + analogRead(A3); 93 | VCollectorBias = VCollectorBias + analogRead(A2); 94 | } 95 | Serial.println(String(VBias) + "\t" + String(VBase) + "\t" + String(VCollector) + "\t" + String(VCollectorBias)); 96 | } 97 | -------------------------------------------------------------------------------- /Rodriguez_rc.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Resource object code 4 | # 5 | # Created by: The Resource Compiler for PyQt5 (Qt v5.12.7) 6 | # 7 | # WARNING! All changes made in this file will be lost! 8 | 9 | from PyQt5 import QtCore 10 | 11 | qt_resource_data = b"\ 12 | \x00\x00\x07\xce\ 13 | \x89\ 14 | \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ 15 | \x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ 16 | \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ 17 | \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\xec\x00\x00\x00\xec\ 18 | \x01\x79\x28\x71\xbd\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ 19 | \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ 20 | \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x07\x4b\x49\x44\ 21 | \x41\x54\x78\x9c\xe5\x9b\x5b\x88\x1c\x59\x19\xc7\x7f\x5f\x5d\xfa\ 22 | \x32\xd3\xf7\xd9\xd9\x99\x38\x89\x31\x6e\xd6\x25\x4e\xb2\xb2\x22\ 23 | \xa2\x10\x18\x71\x21\x88\xf8\x92\x87\x05\x97\x3c\x49\x04\x11\x9f\ 24 | \x05\x1f\xc4\x27\x2f\xa0\xa0\x4f\xe2\x83\x0f\x3e\xc4\xc0\x22\xec\ 25 | \x82\x20\xc4\x17\x85\xa0\xe0\xba\x06\xd7\xcb\xae\xab\x24\xd9\xdd\ 26 | \x6c\x62\x2e\xbb\x73\xe9\x4b\x75\x57\x77\x57\x55\x7f\x3e\x54\xa5\ 27 | \xab\x6a\x32\x19\x27\x99\xbe\x64\x26\xff\xa6\x39\xa7\x4e\x55\x9d\ 28 | \xfa\x7f\xff\xfa\xce\x57\xe7\x52\x25\x8b\x8b\x8b\x77\x56\x56\x56\ 29 | \x5c\x1e\x43\x5c\xbc\x78\x31\x6f\xad\xac\xac\xb8\xe7\xcf\x9f\x3f\ 30 | \x3c\x6d\x32\xd3\xc0\x99\x33\x67\xae\x19\x23\xad\x71\x00\xbc\xed\ 31 | \x21\x7f\xed\x87\xf9\x3d\x00\xeb\xa1\xcf\xec\x2a\xf2\x1f\x1f\xde\ 32 | \xe8\x23\x6f\x7a\xf0\x66\x1f\x79\xcb\x83\xb6\x02\xa0\x5f\x29\x30\ 33 | \xf8\x6e\x65\x54\x3c\xc7\x86\x9d\x09\xb0\x31\x40\xde\xf0\x42\x63\ 34 | \xff\x15\xa5\x6f\xfb\xe0\x6f\x73\xce\x6b\xbd\xd1\x30\x1c\x33\xee\ 35 | \x2b\x80\x5c\xea\x23\x2f\x77\xe0\xd5\x2e\x72\xd9\x07\x7d\x80\x5a\ 36 | \x0f\x5b\xe8\x37\xcb\x23\xa0\x37\x7e\xdc\x2b\x80\x82\xf1\xad\x0d\ 37 | \xe4\x97\xed\x1d\x9d\xad\x47\x2d\x38\x9e\x41\x8f\xd9\x61\x7a\xdc\ 38 | \x86\xca\x68\x43\xcb\x38\x71\x8f\x00\xf2\x72\x67\x6b\xe3\x8b\x06\ 39 | \x7a\xcc\x82\xe5\x0c\xba\x1c\x19\xfb\x8c\x05\x19\x99\x04\xcf\xb1\ 40 | \xe1\x5e\x01\xce\x39\xc3\xbc\x1e\xb7\xd1\x2f\xcf\xc2\x67\xb2\xe8\ 41 | \x33\x36\xec\x9d\x1b\xbb\x63\xa4\x05\xe8\x28\xf2\x77\x6f\xb8\xa9\ 42 | \x3f\xa8\xa2\x9f\xcc\x4c\x9a\xd3\x44\x91\xba\xa7\x72\x3d\x00\x4f\ 43 | \x87\x7b\xf4\x84\x3d\x0d\x4e\x13\x45\xda\xa9\x57\x83\x38\x5f\x33\ 44 | \xc1\xde\xdb\xed\x7b\x27\x48\x0b\x50\x4f\x74\xdf\xf6\x50\x24\xdf\ 45 | \x0d\xd2\x31\x60\x23\x16\x40\x2b\xa3\xbb\xfb\x6e\x1f\xfe\xbb\x01\ 46 | \xb7\x1b\xc2\xfb\x4d\x78\xf6\x90\x72\x74\x61\x64\xd5\xef\x0a\x69\ 47 | \x01\x1a\x09\x0f\x28\xef\xcc\x03\xea\x1d\xb8\xb1\x2e\x5c\x5b\x85\ 48 | \xeb\xeb\x61\xfe\xc6\x3a\xdc\xaa\xc3\xad\x86\x70\x73\x23\x3c\x26\ 49 | \x89\x7c\x06\xfe\xf1\xbd\x80\x23\xf3\xbb\xa5\xbf\x7b\xa4\x04\x90\ 50 | \x4e\xa2\xbb\x57\x08\x05\x08\x06\xa1\x61\x57\xee\x08\x57\xee\xc0\ 51 | \xd5\xf7\xe3\xf4\xbd\x35\x70\xba\x0f\x7e\x51\xb7\x0f\xef\x7c\x20\ 52 | \x1c\x99\x7f\x90\xee\xe5\x78\x90\xf6\x80\x5e\x4c\xe8\xad\x35\xe1\ 53 | \x6b\xdf\x37\xb8\xf4\x8e\xd0\xf5\x36\x9f\xf6\x70\x28\xe6\xe0\x60\ 54 | \x0d\x4e\x9d\x50\x3e\x77\x6c\xfa\xc6\xc3\x36\x02\xfc\xe1\x5d\x83\ 55 | \x3f\xe6\x77\x16\x07\x4c\x03\x16\xcb\xf0\xe1\x39\xe5\xd0\x1c\x2c\ 56 | \x55\x61\xa9\xaa\x2c\x94\x42\x83\x17\xca\xca\x52\x15\x66\xb3\x23\ 57 | \xe5\x3e\x12\xa4\x05\xe8\xc7\x02\xf4\x36\x85\x80\x5a\x01\x9e\x7a\ 58 | \x32\x0c\x5e\x4f\x2f\x84\xf9\x8f\xcc\xc3\xa1\x9a\x72\xa0\x02\xb6\ 59 | \x39\x09\xba\xa3\x47\x4a\x00\xed\xc1\xdd\x7b\xde\x13\xe1\xd4\x71\ 60 | \xe5\x3b\xa7\x95\xa7\x17\x94\xb9\xc2\x14\xd8\x4d\x00\x29\x01\x9a\ 61 | \x4d\xe5\xee\x14\x46\xdf\x14\x7e\x7e\x76\xc0\x52\x75\x0a\xac\x26\ 62 | \x88\x94\xa3\xb7\x9b\x71\x13\x98\x29\xc8\xbe\x37\x1e\x36\x09\xe0\ 63 | \x77\x63\x01\x72\xb3\x13\xe7\x32\x15\xa4\x07\x43\x5e\x2c\x80\xee\ 64 | \xff\x71\x10\xb0\x49\x00\xd3\x8b\x1f\x7b\x9e\xb9\xff\x07\x42\xb0\ 65 | \x29\x08\x9a\x7e\xec\x01\xa3\x12\xa0\x07\xac\x0d\x60\x1d\xc1\x51\ 66 | \x70\x14\xea\x0a\x2d\x85\x36\xe1\x76\x13\xa1\x19\xed\x73\x14\x1c\ 67 | \xe0\x05\x4b\x39\x9b\x19\x7f\x67\x29\x25\x80\x91\x10\xc0\xbf\x8f\ 68 | \x00\x01\x70\x67\x00\x37\x55\xb8\xa5\x70\x7d\x00\x6b\x0a\xeb\x2a\ 69 | \xac\x29\xac\x6a\x68\xf0\x2a\xe1\xb6\xf3\x90\x36\xfc\xde\x17\xbe\ 70 | \x60\x05\x2c\x8d\x79\x50\x9a\x1e\x0b\x24\x62\x40\x90\x15\x7e\xed\ 71 | \x0b\x57\x03\xb8\xa2\xc2\x95\x00\xae\xaa\x70\x63\x10\x8a\x30\x6e\ 72 | \x94\x05\x4a\x13\x68\x85\x69\x0f\x48\x08\x70\xc9\x12\xbe\xdd\x19\ 73 | \xad\xfc\x65\x81\x42\xf4\x9f\x55\xa5\x6a\x40\x81\x68\x5b\xa0\x22\ 74 | \x50\x40\x29\x0a\x7c\xd1\x0a\xd3\x71\x23\x1d\x03\x12\x83\x1e\x37\ 75 | \xb7\xfd\xd5\x33\xc0\x01\x03\x96\x44\x99\x17\x98\x33\x60\x5e\xa0\ 76 | \x86\xf2\x84\x01\x73\x12\xfe\x6b\x28\x73\xd1\xf6\xa3\x18\x56\x53\ 77 | \x02\x64\xba\xf1\x7c\x40\x7b\xd6\xe0\xa0\x01\x4f\x89\x72\xd4\x84\ 78 | \xa3\x51\x7a\xc4\x80\x03\x28\x0b\xfb\x64\xc2\x28\x25\x80\x9d\x68\ 79 | \x02\x9d\x19\xe1\x42\x3e\xe0\xd8\x1e\x1d\xe4\xec\x14\xf1\x7d\x0c\ 80 | \xc0\x0e\x62\x01\xba\x33\xc2\xc7\xf6\xb9\xf1\x90\x14\xa0\xb3\x69\ 81 | \x3d\xbb\x20\x3c\x06\xf6\x27\x04\x70\x37\x3d\xb0\x0b\x8f\x62\xc8\ 82 | \x1a\x3d\x12\x1e\x90\x16\xc0\x9e\xc4\x33\xe8\x11\xc0\x50\x00\x49\ 83 | \x4c\x6e\x06\x02\xb9\xc7\xcf\x03\xe2\x18\xd0\x31\x0d\xaa\xb9\x69\ 84 | \xd0\x99\x3c\xe2\xc7\x60\xa2\x09\x74\x0c\xa1\x36\x82\x09\xcc\x80\ 85 | \x80\x16\x4d\xba\x74\xe9\xe2\xd2\x92\x16\x1e\x1e\x4d\x1a\xf4\xe8\ 86 | \xe2\xe2\xe2\x10\x96\x35\xa8\xd3\xa3\x87\x2b\x2e\x6d\x1c\xfa\xf4\ 87 | \x69\x50\xa7\x4f\x9f\x0e\x6d\x1c\x1c\x7c\x3c\xea\x52\xc7\xc7\xa3\ 88 | \xa8\x25\x7e\xac\x3f\xe5\xb3\x7a\x72\x57\x1c\x63\x01\x12\x41\xb0\ 89 | \x6d\x0a\xe5\x6c\xc0\x35\xde\xa5\x25\x2d\x36\x58\x67\x9d\x35\xd6\ 90 | \x59\x63\x83\x75\xea\xb2\xc1\x1a\x6b\xb4\x71\x68\xd2\xc0\xc5\xc5\ 91 | \xa5\x43\x53\x9a\x74\x71\xe9\xd0\xa1\x45\x93\x60\x9c\xa3\x06\x81\ 92 | \x9f\xf0\xc3\xd1\x09\x10\x38\x83\x61\x7b\xe8\x98\xc2\xaf\x4a\x27\ 93 | \x39\x67\xfe\x79\x57\x95\x8f\x1b\x27\x75\x65\xd7\x75\x0c\x05\xe8\ 94 | \x35\x95\xbb\x93\x40\x6d\xd3\xa0\x9b\xbf\x31\x96\xbe\x7b\x89\x32\ 95 | \x19\x32\x14\x28\x92\xd3\x1c\x39\x72\x94\x28\x63\x63\x53\xa4\x44\ 96 | \x9e\x3c\x59\x72\x94\x28\x61\x93\xa1\xa8\x45\xb2\xe4\xc8\x93\xa7\ 97 | \x48\x09\x1b\x9b\x12\x65\xe6\x79\x92\x65\x3d\xb1\x6b\x3e\x43\x01\ 98 | \xfa\xcd\x74\x13\x20\xeb\x60\x44\xbf\x2a\x35\xaa\xd4\xa8\x68\x95\ 99 | \x2a\x35\x6a\xd1\x76\x49\xcb\xe4\xc9\x53\xa6\x12\x51\x0c\xf3\x77\ 100 | \x8d\x28\x6b\x19\x0b\x9b\x22\x45\xf2\xcc\x90\xe5\xd1\x5b\x19\x19\ 101 | \x0a\xe0\xb5\xd3\x41\xf0\x40\xe6\x43\xbc\x1e\xbc\x46\x9e\xfc\x54\ 102 | \x88\x4d\x0a\xc3\xc7\xa0\x9f\x98\xba\x69\xdb\xca\xa7\xe5\xf9\x7d\ 103 | \x6f\x3c\x24\x04\x08\x92\x1e\x90\xf1\x59\xe2\xe0\x54\x08\x4d\x1a\ 104 | \x5b\x0a\xd0\xce\xf8\x54\xd8\xa7\x6b\x61\x9b\x10\x0b\xe0\xc6\x3d\ 105 | \x41\x37\x13\x50\xde\xe3\xee\xaf\x5e\x1d\xf5\xea\xff\xf7\xb8\xad\ 106 | \x7b\x82\x19\x9f\x45\x26\xd7\x17\x56\xbf\x05\x7e\x0b\xf5\x1d\x24\ 107 | \x68\xa3\xbe\x03\x5e\x13\x0d\x5c\x18\xb8\xa8\xd7\x40\x06\x5d\x08\ 108 | \x5c\xd4\x6b\x41\xd0\x41\x83\x0e\xf8\x4e\x78\x6c\x74\x1c\x7e\x74\ 109 | \x4e\x10\x0f\x6c\x8c\xf9\xe7\xb1\x3f\x75\x8e\xfb\x4d\xc8\x25\x7a\ 110 | \x82\x71\x61\x3b\xeb\x31\x2f\xd5\xed\xdf\x0f\xd6\x20\x24\xee\x35\ 111 | \x21\x68\x47\x64\x5a\x51\xda\x40\x3d\x07\x19\xb4\x23\xc2\x4e\x98\ 112 | \xfa\x8d\xb4\x91\xbe\x83\x7a\x8d\x5d\xca\xb7\x3d\x06\x1f\xfc\x0e\ 113 | \xed\xad\x22\xd9\xad\xdf\xc7\x19\x0a\x60\x24\xd6\x05\xdd\x5c\x9f\ 114 | \xea\x9d\xbf\xe0\xdf\xfe\x4d\x44\xb4\x85\x7a\x4d\x08\x9c\x84\xea\ 115 | \x9d\x2d\x2b\xdc\x09\x26\xf9\x6e\x88\xb1\xf8\x25\x24\xfb\xc4\x7d\ 116 | \xf7\x0f\x05\x30\x7b\xf1\xbb\xef\xed\x6c\x9f\xca\xbf\x7f\x46\xd0\ 117 | \x9e\xc4\x0a\xc0\x66\x46\xb3\x88\x59\x00\x33\x0f\x56\x09\xcc\x19\ 118 | \xc4\xcc\x81\x55\x44\xac\x02\x98\x39\xc4\x9c\x45\xad\x62\x58\x6e\ 119 | \xe6\x11\xab\x1c\x1e\x6f\xe6\x11\xbb\x84\x1a\x79\xc4\xcc\x83\x5d\ 120 | \x46\xac\xe2\xf6\x97\x1b\x66\x12\x33\xc2\x9d\x7c\x8f\x5a\xcf\x67\ 121 | \xe7\x13\xd9\x82\xd8\x65\xb0\x0a\x60\xce\x82\x55\x08\x2f\x6c\x15\ 122 | \x87\xe5\x62\x15\x50\x73\x06\x19\x96\x45\x06\x59\x05\x30\x66\xc1\ 123 | \x8e\xca\x47\xd0\x01\x7f\x90\x1a\x86\x02\xd8\xfd\x64\x13\xe8\x31\ 124 | \x13\x64\x30\x8f\x9c\x05\xbb\x12\x19\x53\x88\x08\x17\x11\xab\x84\ 125 | \x9a\xb3\xc8\xd0\xd0\xbd\xbb\x96\x3e\x14\x20\x93\x88\x01\x7e\x61\ 126 | \x03\xa3\xf8\x71\xcc\xc3\x5f\x45\xf2\x4b\x5b\x9e\xb8\x5f\xe6\x8b\ 127 | \x86\xfd\x80\x5c\x3f\x2e\x94\xd2\x2a\xc6\xc2\xa9\xfb\x1a\xbf\x9f\ 128 | \x10\x0a\xa0\x90\x4d\x7c\xff\x63\x97\x56\xb1\x3e\xfa\x8d\x29\x51\ 129 | \x9a\x2c\x42\x01\x5c\x4d\xb9\x74\xa5\xe2\x80\xf1\xe8\x0d\x5d\xc7\ 130 | \x01\x0b\xc0\x6b\xf8\x98\xf5\xaf\x43\xef\xb7\x80\xf2\x8b\x17\x81\ 131 | \x17\x7f\x34\x5d\x66\xe3\x82\x08\x7a\xfa\x34\x83\x97\x5e\x02\x22\ 132 | \x0f\xb8\xf9\xb7\x7f\x42\xef\x02\x93\xed\xa2\x4c\x09\xaa\xc8\x2b\ 133 | \xaf\xc0\xe5\xcb\x40\x24\xc0\xc1\x95\x65\xdc\xdc\xf2\x54\x79\x4d\ 134 | \x12\xfa\xdc\x73\x70\xe4\x08\x10\x35\x01\x73\x26\x8b\x7f\xfb\x55\ 135 | \x5e\xbf\xf0\x27\x96\x3f\x71\x10\xd3\x7a\xf8\x0f\x4a\xf7\x04\x0e\ 136 | \x1f\x06\x33\x5c\xf9\x1c\x5a\x9a\x2d\xe4\x79\xf6\x85\xcf\x4f\x8d\ 137 | \xd3\xb4\x20\x8f\xfb\xe7\xf3\xff\x03\xb0\xe9\xaf\x69\xf4\x85\x43\ 138 | \xb1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ 139 | \x00\x00\x01\x37\ 140 | \x89\ 141 | \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ 142 | \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ 143 | \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ 144 | \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x04\xae\x00\x00\x04\xae\ 145 | \x01\x0a\xb1\x7b\x92\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ 146 | \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ 147 | \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xb4\x49\x44\ 148 | \x41\x54\x58\x85\xed\x93\xb1\x0d\xc3\x20\x10\x45\x49\x44\x44\xe1\ 149 | \x29\x28\x61\x02\x16\x40\xf4\x37\x07\x1d\x7b\xc1\x04\xac\x71\x4a\ 150 | \xca\x34\x99\xc0\x2e\xac\x14\x49\x8f\x71\x64\x53\xe4\x9a\x3b\x89\ 151 | \xe6\x1f\x5f\x7a\xa7\xaf\x7f\x29\xa5\x3c\x6b\xad\x37\xd1\x8c\xb5\ 152 | \x56\x21\xe2\x7a\x54\x1f\xf1\x84\x10\x66\x11\x63\x7c\x09\x21\x3e\ 153 | \xed\x03\x80\x8d\xf6\x4b\x1f\xf1\xa4\x94\xee\xd7\xde\x25\xff\x1c\ 154 | \x06\x20\x07\x90\xd6\x5a\x05\x00\x9b\x85\x73\xae\x6b\xd8\xd3\x47\ 155 | \x3c\xc6\x98\x49\x22\xe2\x9a\x73\xee\x7e\x38\xab\x9f\xf5\x68\xad\ 156 | \x17\xf2\x08\x18\x80\x1c\x80\x5b\x40\x1e\x01\x03\x30\x00\xd7\x90\ 157 | \x3c\x02\x06\x20\x07\xe0\x16\x90\x47\xc0\x00\xe4\x00\x32\x84\x30\ 158 | \x2b\xa5\x1e\xed\xc2\x18\x33\x69\xad\x97\xa3\xfa\x88\xc7\x7b\xff\ 159 | \xfe\x02\xa3\x1b\x97\xe9\x84\x5f\xf0\x96\x00\x00\x00\x00\x49\x45\ 160 | \x4e\x44\xae\x42\x60\x82\ 161 | \x00\x00\x01\x3b\ 162 | \x89\ 163 | \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ 164 | \x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ 165 | \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ 166 | \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x04\xae\x00\x00\x04\xae\ 167 | \x01\x0a\xb1\x7b\x92\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ 168 | \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ 169 | \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xb8\x49\x44\ 170 | \x41\x54\x58\x85\xed\x93\x31\x0e\x84\x20\x10\x45\x59\x43\x62\x88\ 171 | \x7b\x81\x3d\x05\xde\xc0\xca\x0b\xd0\x52\x70\x43\x2e\x40\x83\x1d\ 172 | \x25\x53\xee\x5e\x60\x6b\x0b\x43\x8c\x89\xd9\x1e\x25\x51\x8a\x9d\ 173 | \x66\xa6\xfc\x93\x0f\x2f\xf9\xf3\x1f\xc6\x98\xcf\x38\x8e\x4f\x96\ 174 | \x0d\x00\xb4\x52\xca\xf5\xaa\x5e\xe3\xf1\xde\x6f\x7c\x18\x86\x5d\ 175 | \x6b\xfd\xca\x97\x42\x08\xa6\x94\x3a\x7c\x52\xd2\x2b\x3d\xdf\xe6\ 176 | \xf4\xa5\x3f\x0e\x01\xa0\x03\xf0\x18\x63\x67\xad\x3d\x2c\x42\x08\ 177 | \xa7\x86\x92\x5e\xe3\x01\x80\x96\xf7\x7d\xbf\x94\xae\xfa\xae\x7e\ 178 | \xd7\x93\x52\x5a\xd1\x23\x20\x00\x74\x00\x6a\x01\x7a\x04\x04\x40\ 179 | \x00\x54\x43\xf4\x08\x08\x00\x1d\x80\x5a\x80\x1e\x01\x01\xa0\x03\ 180 | \x70\xe7\xdc\xc6\x18\x7b\xe7\x8b\x18\x63\x37\xcf\xf3\x72\x55\xaf\ 181 | \xf1\x4c\xd3\xd4\xfc\x00\xaa\xfd\xa8\x07\x39\xc5\xb8\xd1\x00\x00\ 182 | \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ 183 | \x00\x00\x14\xa1\ 184 | \x89\ 185 | \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ 186 | \x00\x00\x40\x00\x00\x00\x3c\x08\x06\x00\x00\x00\xd6\x89\xbc\x64\ 187 | \x00\x00\x0e\x13\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\ 188 | \x69\x6c\x65\x20\x74\x79\x70\x65\x20\x65\x78\x69\x66\x00\x00\x78\ 189 | \xda\xad\x99\x67\x76\x24\x3b\xae\x84\xff\x73\x15\xb3\x84\xa4\x05\ 190 | \xb9\x1c\x82\xe6\x9c\xd9\xc1\x5b\xfe\x7c\x60\x66\x49\x2d\xd3\xd3\ 191 | \x7d\xf5\x46\xae\x4a\xf4\x44\x00\x81\x40\x96\x5b\xff\xf7\xef\xed\ 192 | \xfe\xc5\x57\x4a\x39\xb9\x94\xa5\x96\x56\xca\xc5\x57\x6a\xa9\x85\ 193 | \xce\x9b\x7a\xdd\x5f\xf7\xab\xbf\xd2\xf9\x7b\xbe\xd2\xd3\xc5\xff\ 194 | \x1f\xda\x5d\x1c\x4f\x47\xa0\x29\xf2\x1a\xef\x7f\xcb\x7a\xc6\x77\ 195 | \xda\xf3\xfb\x04\x79\x56\xf2\xfa\xb1\xdd\xc9\xb3\x50\xa8\xcf\x42\ 196 | \xfe\x6d\xe1\xf3\x15\x6d\x67\x7b\x3f\x9f\x43\x3e\x0b\xc5\x70\xb7\ 197 | \xfb\xe7\x7f\xd7\x9e\x09\xbd\xfc\x72\x9d\xe7\x37\x8c\x67\xd9\x67\ 198 | \xf1\xcf\xff\x27\xc1\x18\x33\xb3\x5e\x0c\x2e\xac\xe8\xe3\x75\xfe\ 199 | \x86\x7b\xa7\x78\xff\x76\x6b\xe1\xef\x15\x33\x03\x7d\x6c\xbc\x0f\ 200 | \xb1\xf0\x37\x46\xf9\x6a\x3f\xf7\x66\xba\x6f\x0c\xb8\xaf\xef\xed\ 201 | \x77\xbd\x4e\x16\xdf\xcd\x71\x2f\xf4\xba\x56\xf9\x64\xa7\xa7\xdd\ 202 | \xe7\x4f\xed\xf1\x6d\xfb\xf0\xe1\x44\x3e\x3c\x43\xc2\x7b\xc7\xb1\ 203 | \xc1\x7c\xcd\xfc\x6a\xbf\xbd\x67\xdd\x7b\xdd\xb7\xeb\xa9\x38\xcc\ 204 | \x55\x9e\x4b\xbd\xae\x78\xde\x31\x50\x59\x2a\x9e\x69\x85\x6f\xe1\ 205 | \x37\xf3\x5e\xce\x77\xe3\xbb\x5e\xfd\x1a\xa0\x36\xb9\xaa\xba\x4b\ 206 | \xf9\xa7\xf9\x80\xc5\xb7\x4f\x7e\xfa\xee\xb7\x5f\xe7\x75\xf8\xc1\ 207 | \x11\x53\x58\x41\x78\x0d\x61\x84\x78\xda\x6a\x94\xd0\xc2\x88\x06\ 208 | \x41\xb2\x6f\xbf\x83\x38\xd0\x98\xb1\x82\xc7\x00\xb9\x48\x73\x78\ 209 | \x3b\x8b\x3f\xfb\x36\xdb\x8f\xcd\x2a\x3b\x4f\xcf\xc8\xe0\x59\xcc\ 210 | \x10\xfd\xf0\xed\x3e\x37\xfc\xf4\xfb\xc3\x42\x7b\x9b\x9b\x7b\x7f\ 211 | \x8c\x79\xdb\x8a\x73\x05\xf3\x2f\x8e\x61\xc8\xd9\x5f\x46\x01\x88\ 212 | \xdf\x8f\x4d\xf3\xb1\xaf\x77\xf7\xcb\xf5\xf9\xcb\x80\x8d\x20\x98\ 213 | \x8f\x99\x2b\x17\xec\x97\xde\x4b\x68\xf6\xef\xbe\x15\x0f\xce\xf1\ 214 | \xca\x8e\xa1\xe9\x09\x69\x2f\xf3\x59\x00\x13\xb1\x77\xe6\x30\x3e\ 215 | \x82\xc0\x55\x7c\xcc\xbe\xf8\x4b\x42\x10\xef\xb1\x63\x05\x9f\xce\ 216 | \xc9\x43\x4c\x41\x41\xc0\x67\x97\xc3\xe4\x94\x21\xc5\x58\x00\xa7\ 217 | \x06\xdb\x9b\x39\xe2\xcf\xd8\x90\xc3\xdd\x0c\xbd\x00\x44\x26\x44\ 218 | \x04\x68\x08\x17\xc0\x32\x1a\x2a\xc4\x5b\xc5\x85\xba\xcb\x31\xa7\ 219 | \x9c\x73\xc9\x92\x6b\x6e\xb9\x97\x58\x52\xc9\xa5\x14\x29\xc6\x53\ 220 | \x5d\xa2\x24\xc9\x52\x44\xa4\x4a\x93\x5e\x63\x4d\x35\xd7\x52\xa5\ 221 | \xd6\xda\x6a\x6f\xa1\x45\x68\x2c\xbb\x56\x9a\xb4\xda\x5a\xeb\x9d\ 222 | \x4d\x7b\xea\xac\xd5\x19\xdf\x69\xd0\xa0\x51\x93\x66\x2d\x2a\x5a\ 223 | \xb5\x69\x1f\xb8\xcf\x48\x23\x8f\x32\x64\xd4\xd1\x46\x9f\x61\xc6\ 224 | \x09\x05\xb8\x59\xa6\xcc\x3a\xdb\xec\xcb\x2f\x5c\x69\xa5\x95\x57\ 225 | \x59\xb2\xea\x6a\xab\x6f\x7c\x6d\xc7\x9d\x76\xde\x65\xcb\xae\xbb\ 226 | \xed\xfe\x86\xda\x83\xea\x47\xd4\x3e\x23\xf7\xdf\x51\xf3\x0f\x6a\ 227 | \xe1\x00\x65\xe3\xe4\x1d\x35\x9a\x45\x5e\x4b\x78\xa3\x93\x6c\x98\ 228 | \x81\x58\x48\x1e\xc4\xc5\x10\xc0\xa1\x83\x61\x76\x55\x9f\x52\x30\ 229 | \xe4\x0c\xb3\xab\x85\xe8\x22\xbc\xc5\x29\xb3\x81\x43\xb0\x83\x18\ 230 | \x08\xa6\xe5\x43\xde\xfe\x0d\xbb\x77\xe4\x7e\x8b\x9b\xc3\xba\xff\ 231 | \x14\xb7\xf0\x1d\x72\xce\xa0\xfb\x5f\x20\xe7\x0c\xba\x5f\x90\xfb\ 232 | \x8a\xdb\x37\xa8\xcd\x7e\xe8\x36\x1e\x80\x2c\x0a\xb1\x29\x0c\x19\ 233 | \x09\x3f\x06\xe1\xfc\x89\x33\xe5\x98\xc8\x56\xa1\x94\xae\x03\x03\ 234 | \x97\xb5\x76\xeb\x1a\xd3\x2c\x6b\x1a\x64\x0d\xf2\x4f\xfa\x8c\xa9\ 235 | \x83\xc3\x58\x42\x6a\xcd\xfd\xa6\xfd\x1f\x37\xbb\x1f\xae\xd2\x80\ 236 | \xbd\xe9\x8e\xa3\x10\xd5\xbb\xd7\xe2\xae\xbd\xc2\x86\x3e\xe9\xb5\ 237 | \x4b\x95\xca\xfd\x43\xeb\x73\xf6\x36\x5f\xf7\x59\x3d\x54\x7e\xc8\ 238 | \xa2\xbf\x7f\x75\x7f\x1a\xf0\x77\xaf\xef\x27\x02\xef\x5a\x3e\x9e\ 239 | \x8e\x74\xcb\xb5\xca\xd8\xc2\x21\x25\xc7\x4b\xb9\x11\xee\xa4\x1c\ 240 | \xb2\x95\xb9\x72\x91\x25\x63\xc9\xec\x4c\x18\x8e\xfb\xcf\xd9\xd6\ 241 | \x4e\x6f\x33\xfe\xa2\x21\x8f\x26\xb5\xc9\xc8\x99\xec\x26\xbb\xe4\ 242 | \xbd\x81\x3f\x99\xa7\x8c\x35\xb7\xb9\x41\x98\x52\xd0\x01\x75\x97\ 243 | \xb8\x34\xaf\x3c\xa5\x6d\xfc\x64\x4d\xd1\xc8\x79\x73\xd3\x88\x8b\ 244 | \xed\x95\x75\x49\x6c\x7b\x93\x5b\x24\xe6\x3c\xb2\x23\xf4\x54\xe3\ 245 | \x1c\xbb\xe8\x15\x1b\x91\xa6\x44\xd8\x92\xda\x35\x89\xe2\x91\xb2\ 246 | \x8a\xaa\x5f\x7b\xa2\xc8\x46\xdf\x82\x7f\x6f\x8e\x16\x6c\x5b\x61\ 247 | \x75\x22\x69\x57\x8d\xcd\x8d\x15\xcd\x44\x3d\x4b\xd0\x31\x84\xe9\ 248 | \x70\xd0\xb6\xf4\x2a\xb6\xc0\x85\xd7\xe7\x39\x89\x0f\xb2\x9d\x5a\ 249 | \xca\xf3\x3b\xb7\x99\x09\xc2\xb5\x47\x27\x48\x5a\x1b\x5b\xa7\xb8\ 250 | \xd1\x35\xf7\xdd\x23\x11\x88\xeb\x6f\x8e\xbd\x7b\x92\xc6\xad\xca\ 251 | \x24\xb5\x63\x1d\xb3\xe7\x10\x8b\xed\x66\x51\xaf\xa1\x6e\x36\x67\ 252 | \xaf\x1c\x97\xf7\x35\x07\x22\x70\x26\xc7\x22\x61\x13\x07\xd6\x43\ 253 | \x14\x4e\x32\xc5\x52\x20\x61\xec\xf4\x6a\x66\x30\x11\xc6\xcb\x04\ 254 | \x57\xdd\x87\x5f\x76\x97\x64\xed\xa3\xde\xed\x3b\xd4\xe4\x36\x54\ 255 | \x81\x87\xee\xed\xa3\xe0\xa6\x7b\xb5\xa9\x36\x48\x03\x47\xe5\x4d\ 256 | \xef\x98\x16\x1e\xb2\xb6\x16\xec\x72\x5c\x6c\xab\xf4\xb5\x0b\x47\ 257 | \x0b\x75\xe5\x73\x7e\x97\xfd\x0c\x39\xdf\x88\xe5\x26\xbb\xb5\xd5\ 258 | \x6c\xa5\x76\xcc\x39\xa3\xad\x93\xce\xfe\xa0\x78\xac\x77\xba\xde\ 259 | \x3b\x68\x96\xd6\xc4\x99\xa5\x39\x60\xaf\xd3\x3a\xfa\x7d\x45\x98\ 260 | \xec\x77\xed\x5a\x06\x9d\xc1\xce\x12\x37\x54\x15\xce\xe5\xdb\x76\ 261 | \xe7\x2c\x88\x14\xdd\x63\xec\x84\x33\x41\x9b\x62\x17\x3c\xf6\x24\ 262 | \xb3\xee\x9d\x7b\x3d\x38\xbe\x77\x9c\x66\xac\x0d\xd5\x0c\xb3\x5b\ 263 | \x4e\x2c\x34\x53\xe1\x2a\x21\x9f\x2e\x45\x6b\xde\x1d\x5f\xdb\xa7\ 264 | \x96\x10\x37\x8b\x91\xc4\xcd\x52\xed\x36\xf8\x39\xeb\x1e\x24\xc8\ 265 | \xbc\x57\x91\x5e\xc8\x35\x21\x31\x35\xad\xfb\xb0\x9e\x9d\xbb\x11\ 266 | \x00\x30\x00\xe1\xca\xf7\x94\x70\x6c\xb7\xed\x30\xf3\xb5\x27\xb6\ 267 | \x4c\xae\x1c\x8c\xce\xc6\x6c\x4b\x6b\xcd\x99\x25\xb2\xef\x67\xbf\ 268 | \x06\x0e\x6b\x2c\x42\x66\x56\x40\xca\x7b\xe4\x8b\xe0\x92\x92\xcf\ 269 | \xd5\xe3\x7e\xc1\xe4\x6e\x9c\xec\xfc\x0d\x23\x4e\x73\x9c\x95\xf2\ 270 | \x47\x94\x5e\x1d\xb4\x59\xd7\xc1\xa9\x7f\x82\xc3\xfd\x00\xa7\x7a\ 271 | \xe3\x04\x30\x6f\x20\x29\xc6\xae\xc9\xec\xdb\x3e\x59\xe0\xc1\xe9\ 272 | \xd5\x65\xc7\x0f\xfb\x85\xd4\xfc\x06\x10\xf7\x4f\x91\xe2\xe0\x9b\ 273 | \x80\x1a\x0f\x48\xd2\x65\x90\x79\xcf\x42\xad\x8a\xdd\xe5\x4c\x5e\ 274 | \xa3\xf4\x05\x6c\x2b\x74\xc2\x00\x8f\xdd\xab\x66\xe3\x0a\x83\xad\ 275 | \x1b\x05\x11\xea\x62\x36\x22\xe3\x21\x9e\x89\x69\xe0\x81\xf5\x6c\ 276 | \x21\xec\x21\xb7\x3d\x98\xd2\xbd\x8c\x98\x00\x4a\xb7\x31\xca\xc0\ 277 | \x45\xc7\xdc\xc8\xb9\x83\xa1\x6a\x99\x04\x24\xab\x22\xf3\x72\x47\ 278 | \xb7\xaf\xe0\x75\x52\xe9\x40\x23\x75\x6c\x23\x83\xd1\x16\x59\x50\ 279 | \x3b\xe4\x9c\x77\x6a\x1e\x24\x33\xea\x1a\xb8\x71\x88\x04\x31\x4e\ 280 | \x42\x57\x51\x15\x73\xd2\x20\x82\x70\x5a\x69\x58\xd2\x39\xc9\x2a\ 281 | \xbb\x98\x55\x73\xec\x27\x01\x51\xfb\x41\x84\xde\x52\x97\x7f\xbd\ 282 | \x66\xf2\xfe\xa5\x6b\x43\x9c\x98\x4a\x75\x6e\xe3\x8a\x91\xab\x65\ 283 | \x34\x88\x09\x75\xa1\x6c\xb6\x5c\x10\x76\x5a\x62\x0c\x2e\x6b\x29\ 284 | \x6c\x1d\x15\xee\xdc\x46\xbe\x7d\x14\x85\x33\x8a\x5c\xab\x50\x1f\ 285 | \x0c\xee\xc2\x8d\xe6\x48\x46\xa8\x1a\x0e\x63\x6f\xc9\xb3\xae\x12\ 286 | \x9c\x87\x19\x61\x2b\xe1\xc4\x51\x66\xd3\x05\x28\x30\x92\x18\x93\ 287 | \x42\xab\xec\x00\x81\x0a\xcb\xe8\x38\xbe\x4c\xce\x8a\xf8\x67\x50\ 288 | \x61\x00\x46\xd4\x93\x6c\x89\x7e\x21\xc5\x00\x23\x02\xd2\xae\xce\ 289 | \x0d\xcc\xca\x1c\x08\x9a\x5b\x4c\x81\xef\x37\x48\x1f\xe3\x40\xa4\ 290 | \x02\x7b\xcf\xab\x53\x9b\x90\xc7\x41\x03\xd1\x61\xa9\x23\x0c\x1c\ 291 | \x12\x0c\x4a\xcb\xc8\x1a\x82\x68\x99\x17\x60\xda\x9d\x69\x18\x68\ 292 | \x31\x8f\x0f\xb5\x93\x78\x10\x4c\x58\x15\x8b\xb4\x1d\xcb\x9c\xe3\ 293 | \xe4\xd8\x8e\xb0\x7f\x8c\xe9\xfc\x67\xeb\xfe\xe9\xf5\x17\x2c\xe7\ 294 | \xfb\x7b\x2a\xc8\x83\x61\x32\x75\x84\x59\x4a\xb7\x20\x20\xf9\x94\ 295 | \x4e\x12\x5a\x33\x53\x18\x2b\x67\xc0\x39\x47\x33\xa0\xb8\xd8\x95\ 296 | \x47\x47\xeb\x91\x70\xc1\xd0\x90\xb6\xf9\xd3\x31\xfa\xb5\x82\xa9\ 297 | \xbd\xbc\xac\xc4\xc4\x1d\x59\x66\x9f\x4c\x7d\x70\xce\x08\x98\x8c\ 298 | \x22\xb4\xc8\x4e\x59\x2d\x6b\x91\x79\x9b\xaf\x6f\xc0\x38\x85\xfc\ 299 | \x15\xb4\x46\xc1\xb4\x78\x4a\x31\xb3\x60\x93\x88\x17\xe0\x36\x79\ 300 | \x60\xf0\x10\x2b\x91\x0a\x9a\x48\x3f\x73\x90\x20\x96\x2f\x05\x86\ 301 | \x88\xea\x99\xdd\x73\xae\x0e\x78\x58\xbe\x79\x92\xbd\x91\xc2\xea\ 302 | \x64\x84\x49\x2e\x1f\x00\x2f\x27\x74\x12\x57\x85\x2b\xaf\x5d\x42\ 303 | \x65\x9b\x60\xd7\x9c\x16\x73\xf8\x2a\x2e\x6f\xd7\xe3\xf8\x6e\xe6\ 304 | \x45\x9a\xf3\x1c\x11\xb9\xc8\xf1\xed\xf6\x44\xe5\x7d\x7f\x7f\xa1\ 305 | \xd0\xc2\xb9\xf9\x69\x85\x67\x80\xee\x6d\xf2\x11\x95\xcf\x00\xf7\ 306 | \xc7\x11\x7f\x39\xc0\x7d\x37\xe2\x17\x84\xd5\x3a\x3a\xd7\xf9\x93\ 307 | \x42\x74\x9f\x25\x62\x81\x7d\xd0\x0c\xbe\x31\x72\xe3\xfa\x15\xf2\ 308 | \x01\x02\xe4\x05\x01\xd1\x10\x47\x84\x92\xaa\xa1\xd6\xf2\x4c\x87\ 309 | \x73\x4c\x5c\x17\x07\xbf\xe3\xb4\x9b\x28\x84\xc4\xa0\x32\xc8\x1d\ 310 | \x87\x37\xb1\x75\x02\xb7\x4f\x21\x83\x74\xed\x84\x0a\x4e\xdd\x60\ 311 | \xed\x86\xbd\x87\x12\x9b\x88\x20\x54\x06\x7f\xaf\x4d\x05\xb9\x51\ 312 | \x8f\x28\x79\x20\xbd\xc1\x58\xd1\xf8\x4f\x6b\xd1\x9c\xa9\x0d\x38\ 313 | \x79\x9f\x07\x54\xb4\x8b\xc4\x75\xc5\x00\xda\x64\x01\x6a\x03\xc0\ 314 | \x1c\x9d\x78\x6a\x9b\xd8\x72\x69\x1f\xdf\x17\x44\x11\x29\x2b\x9f\ 315 | \x48\xb8\x7e\xf0\xea\x3e\x35\xa4\x48\xfe\xf3\x90\x81\xd5\x4c\xaf\ 316 | \xf7\xe9\xa2\x70\xc3\x80\xf1\x0e\xba\xa3\xbe\xd7\x1d\x48\xb7\x58\ 317 | \xe5\x07\xd4\x32\x75\x15\xda\x0d\x1b\x04\xf3\x7b\x44\x97\x58\x74\ 318 | \xfc\xca\x82\x1a\x4d\x97\x6e\x0f\xad\x27\xc6\x60\xdb\xc4\x6d\xc4\ 319 | \x62\xe3\xd0\x20\x19\xc6\x3d\x44\x38\x48\x76\x4d\xa1\x6a\x84\x13\ 320 | \x65\x1b\x46\x2e\x14\x4a\xc9\xa8\x75\xa3\xb5\x57\xa2\xc4\xf1\x64\ 321 | \xa0\x32\x0e\xf1\xcf\x55\x30\xe8\x3a\x19\xf9\x32\x9a\x21\x68\x2d\ 322 | \xa5\x71\x02\xb6\x6c\xa4\x6d\x4d\xeb\xde\x92\xc0\xdc\x67\x4b\x14\ 323 | \x4c\x85\x97\x58\x50\xfa\x86\xdd\x87\x52\xbd\x92\x9b\x28\xa5\x16\ 324 | \x1d\x61\x85\x48\x79\x16\x5d\x47\x7e\xab\x11\x67\x68\xb7\xa5\xa8\ 325 | \xde\x64\xec\x7f\x6c\x6e\xf7\xdb\x01\x7f\x61\x76\xea\x57\x8f\xd0\ 326 | \xd4\x88\x5d\x5d\x3b\x74\x52\xa8\x06\xfa\x27\x1c\x18\x19\x6b\xdf\ 327 | \xe4\xbb\x51\xa6\xc9\x0b\x2a\x11\x2b\x18\xf0\xa6\x0c\xd5\x40\xf4\ 328 | \x66\x7d\xcc\xa3\x8b\xd0\x72\x99\x0c\xdd\x07\xb9\x35\x99\xdb\x06\ 329 | \x0c\x47\x78\x59\x96\x18\x31\x0e\x1f\x3b\xc3\x51\xaf\x26\xd6\x65\ 330 | \xde\x0b\x98\x85\x8f\x7d\xa1\x3e\x38\x74\x78\xc0\x45\xd6\x4c\x4e\ 331 | \x3e\x29\xdd\xd6\xf2\xbd\xa6\x40\x63\x07\x2f\x66\xa3\xd7\x89\x62\ 332 | \xcb\x46\xde\xfa\xd0\x52\xa8\x88\x78\x94\x09\x98\xe1\x1f\x68\x00\ 333 | \xbc\x83\xc2\x90\x20\xc0\x8f\x08\x49\x8a\xf5\x96\x21\xbf\xd4\x1b\ 334 | \x62\x39\x35\xe4\xfd\x5d\x89\xb5\xf6\xf7\x39\xc1\xfd\x65\xd2\xf8\ 335 | \xa3\xa3\xbb\xcf\x16\xa6\x32\x9a\x56\x05\x64\xdc\xfc\x3a\xa5\x18\ 336 | \x2e\x3c\x8c\xb1\x11\x24\xde\xee\x82\x23\x62\x1d\xb4\xa9\x0c\x6f\ 337 | \x89\xc2\x5c\xb4\x2f\x27\x46\xe6\x77\x32\x86\xc3\xaf\x5d\x11\x36\ 338 | \xf1\x54\x07\x24\xd9\x4f\xfc\xb3\xf0\x41\x1f\xc8\xde\x8b\x53\xe2\ 339 | \xe3\xac\xd7\x28\x13\xc0\xe3\x5a\xce\xb6\x30\xf3\xef\xbc\x30\x16\ 340 | \xb2\xa4\xd2\x85\xe4\x24\xe7\xce\x3a\x33\x12\x8d\xfa\x3a\x84\x2e\ 341 | \x05\xcf\x86\xb7\xd2\x58\xad\x9c\x2c\xbb\x29\x20\xea\x7a\xd5\xb5\ 342 | \xee\xff\x5f\x18\xbf\x2d\xf4\x56\x14\x7f\x2c\x90\x01\x1d\x95\xe7\ 343 | \x07\x3e\x97\xc6\x3e\x97\x47\xe7\x51\x54\x1d\xd2\xbe\x52\x5c\x8f\ 344 | \xd2\x34\x59\x1f\xd0\xd9\x6a\xcf\x41\x88\xcf\x0a\x67\xe2\x5e\xbd\ 345 | \x56\x14\x71\xb4\x92\xd5\x9e\x1a\xac\x23\xe4\x19\xeb\xdf\xde\x91\ 346 | \xf2\xa1\x4d\x52\x3a\x7e\x25\xc7\x90\xc4\xc6\x70\xdb\xaa\xb4\x6e\ 347 | \x89\x65\x74\xca\x84\x80\xd3\x86\x95\x93\x54\xb3\xfb\x5a\xe6\x81\ 348 | \x1a\x04\xf5\x68\x91\x84\x71\x01\x91\x42\x99\x35\xa0\x18\xb2\x82\ 349 | \x47\xed\xcf\xc5\xb6\xae\xcc\x8b\xad\x41\x70\x1c\xf5\x49\x11\x01\ 350 | \x29\xa5\xbb\xe6\x6e\xe5\xa6\xf7\xad\x15\x7a\x87\xdd\x8b\xd6\x48\ 351 | \x16\x52\xe1\x77\xa9\x15\xe2\x54\xd1\xec\xde\x46\xa1\xa8\xb1\x67\ 352 | \x74\xb6\x35\xe1\x80\x90\x6e\x14\x5d\xb7\x50\xa6\x54\x40\x49\xbd\ 353 | \xbd\xc7\x25\x21\xae\x6a\xcf\x96\x3f\xd8\xc7\xdf\xef\xdd\x73\xed\ 354 | \x77\xfb\x7d\xb1\xc8\x17\xd3\xfa\x5f\xcd\xfc\xea\x76\x3f\x9f\xfa\ 355 | \x71\xa6\xfb\xf9\xd4\x8f\x5d\xee\xe7\x53\xdf\x46\x93\xe3\x9b\x3a\ 356 | \x50\x5d\xc8\xd2\x3e\xfe\x3a\x8d\x09\x59\x7a\xc0\x37\xc5\x1c\x43\ 357 | \xcf\x2f\x79\xc5\x9d\x4a\x03\x25\xcc\x6a\x0a\xab\x8d\xe7\xe9\x4a\ 358 | \x25\xf6\xae\xbc\xfd\x85\x2a\xc3\x71\xac\x32\x32\xd9\x0f\xf2\xc3\ 359 | \x42\x75\x2c\x6a\x48\x1c\x2e\x9a\x8b\xa5\x09\x09\x38\x4b\x36\xf0\ 360 | \x58\xd7\x15\x61\x46\x4b\x28\xc4\x2b\xb5\x67\x5c\x94\xb2\xb8\xc3\ 361 | \x3e\xcb\x58\x61\xb5\xc9\x95\x48\x0e\xfb\x8f\x7c\x5a\xf4\x82\x8d\ 362 | \x71\x9e\x93\x57\xa9\xb2\x4d\x95\x93\xd6\xd0\x03\xb1\xde\x85\xcf\ 363 | \xa9\x4e\xa4\x5a\x25\xd6\xb0\x48\xc2\xc5\xd0\x26\xc6\xb9\x08\xc2\ 364 | \xde\xa9\x29\x0b\xe5\xda\x93\xbb\xb4\xad\x72\xde\xba\x9f\x49\x86\ 365 | \xaf\xaf\xee\x8f\x39\xac\xf5\x45\x5e\xf1\x63\x9e\x7a\xc2\xca\x10\ 366 | \x64\x5b\xba\x6d\x5f\x36\x6c\x77\x1e\xc3\x64\x97\x92\x5e\x94\xf5\ 367 | \xd4\x43\xa9\xdb\x63\x0f\x81\x15\xcb\x5c\x31\xb6\x6e\xf4\x97\x74\ 368 | \x52\x05\x91\x05\x01\x85\x4a\xe8\x3c\x0e\x62\x34\xc9\xdc\x34\xb4\ 369 | \x50\xd6\x91\xcf\x3c\xc3\x2d\x1d\x59\x78\x23\x68\x4d\x8b\xb1\xab\ 370 | \xa1\xc8\xba\x47\xb3\x41\x92\xa6\xd9\x0c\x6f\x92\x16\xdc\x32\xed\ 371 | \xf9\x6a\xdb\x48\x8b\x00\xc3\x22\xef\xb0\xf7\xb0\x22\x4d\xdd\x36\ 372 | \x81\x36\x6b\x47\x35\x77\xc4\xb8\x30\x8c\x11\x97\xe1\x61\x1f\xad\ 373 | \x29\xf6\x24\x2d\x92\xe4\x50\xae\xd0\x5a\x15\x6d\xbd\x1b\x57\x70\ 374 | \x64\x44\x0e\xf9\x12\x52\x59\x2d\x39\x79\xbb\xa5\x74\x9c\xa2\xf8\ 375 | \x00\x16\xfe\xfd\xee\xfe\x35\xf2\xfa\xef\x3d\xee\x27\x93\xbe\xeb\ 376 | \x71\x3f\x99\xf4\x5d\x8f\xfb\xf9\x19\x3e\xf6\xb8\x2f\x5d\xef\x7e\ 377 | \x84\x5a\xd3\xf9\x94\x35\x59\xb1\xf0\x34\xe1\x6d\xb1\xbf\xde\xcb\ 378 | \xf4\x57\x95\xee\xee\x32\x3d\x92\x42\x56\xbc\x46\xbb\x1f\xd4\x79\ 379 | \x8b\xdf\x5b\x79\x00\x37\x75\x74\x06\xff\x4e\x5d\xad\xe7\xf9\x0d\ 380 | \x42\xe9\x8e\x2c\x7b\x9a\xa2\xa6\x0c\xeb\x70\xe5\x3c\x3a\xf1\x7d\ 381 | \x51\xd1\x52\xd3\x8d\x9b\xa5\xe1\x6e\xb4\x12\xd2\x85\x8c\x2f\x67\ 382 | \x41\xe1\x74\x08\x97\x4b\x8b\xf1\xd2\xb4\x12\x9f\x6e\xfe\x2b\x43\ 383 | \xcc\xd5\xdc\x4e\xd4\x79\x25\x04\x44\x43\xda\x03\xff\x43\x15\x84\ 384 | \x84\xb8\x45\xc9\xf7\x8a\x52\x2e\x56\x34\xe2\xe3\xf9\x11\xf6\x97\ 385 | \x8c\xfa\x17\x82\xfd\xa7\xaf\xc9\xfd\x85\xe4\x84\x24\x91\xda\x53\ 386 | \x2d\x7b\xe7\x30\x85\x2c\x48\xf2\x2a\x37\xd5\x9e\xe2\xd6\xd2\x11\ 387 | \x2c\x89\xc2\x81\x24\x87\x75\x97\x13\x60\x3a\xa9\xbc\xa8\x9c\x53\ 388 | \xa0\x19\xf5\x31\x42\xf1\x54\x32\x68\xcd\x8e\x3a\xb1\x87\x44\x59\ 389 | \x28\x96\x77\xa6\x68\x3d\xcb\x81\x05\xaa\x96\xea\xcc\x82\x7a\x1d\ 390 | \xba\x3d\xf5\x11\xda\x95\x88\x99\xf6\xb0\xc7\x4a\x65\x55\x0b\x4c\ 391 | \x3f\xbb\x8e\xac\xcb\xdb\x33\x84\x7d\xce\x83\x14\x85\x2e\x97\xd5\ 392 | \x00\xc9\xbd\x17\x01\xfb\x88\x54\x48\x01\xe8\xaa\xaf\x91\x64\x4d\ 393 | \xad\x2c\x1c\x19\x97\x0a\x81\xb2\x97\x6a\x3b\x57\xc4\x7d\x38\xe7\ 394 | \xf0\x56\xb8\x50\x6d\x1e\x5d\xa3\xce\xaa\x90\xf8\x3f\x10\x49\xee\ 395 | \xb7\x1f\x2b\x7c\x16\x4d\xf6\x84\x01\x86\xe4\xee\xb2\x8e\x2b\x22\ 396 | \x02\xba\xe2\x38\xb8\x19\x08\xb9\x96\xcf\xe7\x27\xde\x43\x8d\x96\ 397 | \x31\xa0\xbc\xe6\x29\x02\xa0\x4c\x0a\x1b\xcb\x59\xc1\x28\xf3\x38\ 398 | \xe5\x65\xb4\x68\x32\xaa\x2c\xa0\x6c\x03\xa4\x4b\x81\xf0\x7a\x0b\ 399 | \xdd\x91\x9c\x98\x34\xd3\x68\xa8\x7d\xa4\x19\x41\x60\x29\x6c\xd9\ 400 | \x93\x2b\xff\x4a\x2d\x47\x63\xe2\xcc\xe9\xc6\x88\x80\x3b\x1f\xd9\ 401 | \x34\xb8\x7b\xd4\xc0\xea\xf8\x11\x7e\x9d\x30\x5f\xb0\x72\x6a\x76\ 402 | \xab\x1d\x20\xc7\xc7\x37\xc2\x78\x5d\x01\xc5\x67\xf2\x3d\x65\x5b\ 403 | \xeb\xac\xe4\xdf\xde\xdd\x1f\x03\xb9\x6c\x0f\x8f\x86\x0e\x3b\x34\ 404 | \xaa\xff\x53\xf7\x3d\xf3\x39\x45\x88\xe9\x7c\x08\xc1\xed\xe3\x91\ 405 | \xe4\xa9\x58\x4d\x68\x9f\x58\x44\x2b\x8e\x7f\x3b\x31\x79\x81\x16\ 406 | \x14\xff\x34\x82\xd6\xf6\x3e\xe0\x9b\x33\x59\x4d\x9b\x21\x0f\x8a\ 407 | \x22\x93\xa5\x4d\x89\x85\x25\xa6\xe0\x90\x0e\x8f\x3c\xb5\x44\xf6\ 408 | \x7e\xf5\xfa\xf6\xae\xe7\xd3\xd5\xd1\x03\x5a\x5d\x47\x99\x9a\xa7\ 409 | \x5a\x5e\x6b\xe7\x49\x45\xd5\x71\xa8\xe4\x34\x01\x78\x98\x2b\x59\ 410 | \xa6\x33\xed\xca\x09\xf2\xbc\xa7\x0f\x68\xc0\xb8\x8e\x3c\x13\x70\ 411 | \x45\xf7\x40\xfe\xc5\x07\x88\x88\x64\x27\xdd\x56\x8e\x31\xed\xf4\ 412 | \x6f\xfb\x10\x02\xc3\xfe\x07\x34\xe3\x6b\x8d\xf9\xde\xd6\x18\x00\ 413 | \x00\x01\x85\x69\x43\x43\x50\x49\x43\x43\x20\x50\x52\x4f\x46\x49\ 414 | \x4c\x45\x00\x00\x78\x9c\x7d\x91\x3d\x48\xc3\x40\x1c\xc5\x5f\x5b\ 415 | \x4b\x45\x2a\x82\x16\x11\x71\xc8\x50\xc5\xc1\x82\xa8\x88\xa3\x56\ 416 | \xa1\x08\x15\x42\xad\xd0\xaa\x83\xc9\xa5\x5f\xd0\xa4\x21\x49\x71\ 417 | \x71\x14\x5c\x0b\x0e\x7e\x2c\x56\x1d\x5c\x9c\x75\x75\x70\x15\x04\ 418 | \xc1\x0f\x10\x27\x47\x27\x45\x17\x29\xf1\x7f\x49\xa1\x45\x8c\x07\ 419 | \xc7\xfd\x78\x77\xef\x71\xf7\x0e\xf0\xd7\xcb\x4c\x35\x3b\xc6\x01\ 420 | \x55\xb3\x8c\x54\x22\x2e\x64\xb2\xab\x42\xe8\x15\x61\x04\xd1\x8b\ 421 | \x7e\x8c\x4a\xcc\xd4\xe7\x44\x31\x09\xcf\xf1\x75\x0f\x1f\x5f\xef\ 422 | \x62\x3c\xcb\xfb\xdc\x9f\xa3\x5b\xc9\x99\x0c\xf0\x09\xc4\xb3\x4c\ 423 | \x37\x2c\xe2\x0d\xe2\xe9\x4d\x4b\xe7\xbc\x4f\x1c\x61\x45\x49\x21\ 424 | \x3e\x27\x1e\x33\xe8\x82\xc4\x8f\x5c\x97\x5d\x7e\xe3\x5c\x70\xd8\ 425 | \xcf\x33\x23\x46\x3a\x35\x4f\x1c\x21\x16\x0a\x6d\x2c\xb7\x31\x2b\ 426 | \x1a\x2a\xf1\x14\x71\x54\x51\x35\xca\xf7\x67\x5c\x56\x38\x6f\x71\ 427 | \x56\xcb\x55\xd6\xbc\x27\x7f\x61\x38\xa7\xad\x2c\x73\x9d\xe6\x10\ 428 | \x12\x58\xc4\x12\x44\x08\x90\x51\x45\x09\x65\x58\x88\xd1\xaa\x91\ 429 | \x62\x22\x45\xfb\x71\x0f\xff\xa0\xe3\x17\xc9\x25\x93\xab\x04\x46\ 430 | \x8e\x05\x54\xa0\x42\x72\xfc\xe0\x7f\xf0\xbb\x5b\x33\x3f\x39\xe1\ 431 | \x26\x85\xe3\x40\xf0\xc5\xb6\x3f\x86\x81\xd0\x2e\xd0\xa8\xd9\xf6\ 432 | \xf7\xb1\x6d\x37\x4e\x80\xc0\x33\x70\xa5\xb5\xfc\x95\x3a\x30\xf3\ 433 | \x49\x7a\xad\xa5\x45\x8f\x80\x9e\x6d\xe0\xe2\xba\xa5\xc9\x7b\xc0\ 434 | \xe5\x0e\x30\xf0\xa4\x4b\x86\xe4\x48\x01\x9a\xfe\x7c\x1e\x78\x3f\ 435 | \xa3\x6f\xca\x02\x7d\xb7\x40\xd7\x9a\xdb\x5b\x73\x1f\xa7\x0f\x40\ 436 | \x9a\xba\x4a\xde\x00\x07\x87\xc0\x48\x81\xb2\xd7\x3d\xde\xdd\xd9\ 437 | \xde\xdb\xbf\x67\x9a\xfd\xfd\x00\x5c\x6e\x72\x9e\x2a\xf9\x20\x70\ 438 | \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ 439 | \xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x2e\x23\x00\x00\ 440 | \x2e\x23\x01\x78\xa5\x3f\x76\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ 441 | \xe4\x0c\x05\x12\x1a\x27\xb9\xaa\xd6\xa9\x00\x00\x04\x7e\x49\x44\ 442 | \x41\x54\x68\xde\xed\x9b\xcf\x6b\x13\x5b\x14\xc7\x3f\x93\xcc\xb4\ 443 | \x7d\xed\x44\x1b\x2d\xfa\xca\x93\xf2\x14\x94\x0a\xae\x84\x82\x2e\ 444 | \x44\x41\xdc\x28\x08\x0a\xba\x70\xe3\x42\x77\xe2\x46\x44\xfc\x1b\ 445 | \x5c\x8a\xa0\xae\xc5\x8d\x0f\xa9\x08\x22\x8a\x20\x6a\x03\x42\x91\ 446 | \xe2\x46\x9f\x0d\xb4\xa5\x69\x6a\x93\xb6\xa6\xf9\x9d\x99\x4c\xe6\ 447 | \xba\xb8\x8d\xad\x2f\x93\x34\x49\xf3\x20\x33\xe9\x17\xc2\xb9\xe4\ 448 | \x4c\x32\x39\xdf\x99\x73\xef\xf7\x9e\x39\x51\x84\x10\x02\x07\x24\ 449 | \x13\x4b\x6c\x0f\x0e\xe0\x75\xa8\x00\xb6\x6d\x57\x38\x7c\xaa\x9f\ 450 | \xbc\x61\xd2\xd3\xa5\x51\x85\x23\x57\x23\x97\xcb\xa1\xeb\xba\x24\ 451 | \x40\x51\x14\x14\x45\xf9\xed\x80\x40\x20\x88\x65\x59\x8e\x3e\x2f\ 452 | \xc1\x47\x87\x63\x8b\x80\x2d\x02\xb6\x08\xd8\x22\xa0\xa3\xa1\x56\ 453 | \x73\x14\x8b\x06\x28\xfe\xff\xef\xcc\xa9\x14\x2c\x2c\x40\x3c\x2e\ 454 | \x5f\xc5\x62\x63\x9f\xb7\x6d\x30\xcd\x8d\x8f\x0b\x87\xa1\x54\x92\ 455 | \xe3\xd3\xa7\xe1\xd8\xb1\x4a\x02\x2c\xcb\xaa\xf8\xdc\xca\x52\x9c\ 456 | \x3f\xfa\x07\x50\xa0\x71\x21\xb4\xb2\x02\xe3\xe3\xf8\x43\x21\x7c\ 457 | \xa1\x10\xbc\x7b\xd7\x16\x57\x5b\x00\xd6\x91\x23\xac\x17\x7f\x8a\ 458 | \x90\x70\x14\x3b\x96\x65\xa1\xaa\x6a\x63\x67\x99\x9a\x82\xcb\x97\ 459 | \x61\x6c\xac\xf6\x71\x9a\x06\xb7\x6f\xc3\xa1\x43\xd0\xdf\x0f\x3b\ 460 | \x76\x34\x11\x51\x1d\x17\x26\x18\x84\xde\x5e\x39\xee\xef\xff\x35\ 461 | \xce\x64\x32\xe8\xba\x0e\x42\x08\x61\xdb\xb6\x70\x42\xb1\x58\x14\ 462 | \x0d\xc1\x34\x85\xb8\x78\x51\x08\x10\xe2\xce\x1d\x21\xbe\x7d\x13\ 463 | \x62\x71\x51\xb4\x23\xd2\xe9\xb4\xbc\xf2\x2d\x25\xe0\xe5\x4b\x19\ 464 | \xfc\xcd\x9b\x42\x58\x96\x68\x67\x94\x09\x68\x5d\x0a\x44\xa3\x30\ 465 | \x32\x02\xdf\xbf\xcb\x34\xd8\xbb\xb7\xad\x67\xff\x72\x0a\xb4\x6e\ 466 | \x19\xfc\xf8\x51\x06\xff\xe8\x51\xdb\x07\xdf\x7a\x1d\x90\xcf\xc3\ 467 | \xdd\xbb\x72\x7c\xe2\x44\x07\x0a\xa1\xb1\x31\x78\xff\x1e\x6e\xdc\ 468 | \x80\x3d\x7b\xbc\x41\x40\xb1\x11\x61\x32\x31\x21\xed\xa5\x4b\xde\ 469 | \xa9\x08\x2d\x44\xa3\x0c\xfc\x39\x88\xcf\xe7\xab\x2d\x84\x14\x05\ 470 | \xdf\xfc\x3c\x0a\x60\x0f\x0e\x22\xca\xaa\xab\xcd\x51\x8e\x69\xf3\ 471 | \xab\x40\x22\xb1\x26\x62\x0c\x03\xba\xba\x5c\x41\x40\xeb\x56\x81\ 472 | \x4f\x9f\xa4\xbd\x7f\xdf\x35\xc1\xb7\x76\x12\x7c\xf2\x44\xda\x93\ 473 | \x27\x5d\xb9\x1b\xdc\x5c\x0a\x64\xb3\xa0\xeb\x72\x6c\x9a\x52\xdf\ 474 | \xbb\x04\xad\x49\x81\xf9\x79\x69\x6f\xdd\x72\x55\xf0\xad\x4b\x81\ 475 | \x37\x6f\xa4\x3d\x7e\xbc\x43\x2b\x42\xcf\x9e\x49\x3b\x32\xd2\x81\ 476 | \x04\xc4\x62\xf0\xfa\xb5\x94\xbe\xc1\xa0\xf7\x08\x88\xce\xfc\x8b\ 477 | \x25\x36\x90\xbf\x00\x57\xaf\x42\xa3\x45\x93\x76\x98\xfd\x57\x27\ 478 | \xfd\xaa\x04\xfc\xf5\xf7\x30\x6a\xb5\x27\x62\xa5\x12\x3c\x7e\x2c\ 479 | \xc7\x47\x8f\xba\xf2\xca\x97\x95\x60\x73\x29\x10\x0e\xc3\xe8\x28\ 480 | \x9c\x3f\x0f\xfb\xf6\xe1\x66\x34\x47\xc0\xcc\x8c\x6b\x37\x3f\xad\ 481 | \x21\xe0\xd5\x2b\x69\x0f\x1f\xee\x40\x02\x2c\x0b\x9e\x3e\x95\xe3\ 482 | \x9d\x3b\x3b\x90\x80\xaf\x5f\x21\x12\x81\xeb\xd7\x61\xdb\xb6\x0e\ 483 | \x24\xe0\xcb\x17\x69\xcf\x9d\xc3\x0b\x68\x9c\x80\xcf\x9f\xa5\x1d\ 484 | \x1a\xf2\x04\x01\x2a\x40\x3e\x9f\xaf\xa8\x0a\xad\xfc\x58\xa2\x6f\ 485 | \x7b\x90\x2e\x55\x5d\xab\x08\x29\x0a\x7a\x38\x0c\x40\xde\xb6\x29\ 486 | \x65\x32\xae\x0d\xdc\x30\x0c\x74\x5d\xaf\xbe\x1d\xce\x65\x52\xf8\ 487 | \xbb\x7b\xe9\xd6\xd6\xa9\xbc\xc5\x45\xd8\xb5\x6b\x4d\x0c\xf9\xdc\ 488 | \xfb\x70\x79\xc3\xed\x70\xaf\xbe\x0d\xff\x7f\x95\xe0\xf8\xb8\xb4\ 489 | \xf7\xee\xb9\x3a\xf8\xe6\xe7\x80\xb7\x6f\x5d\x2d\x7f\x1d\xf7\x04\ 490 | \x75\x57\x84\x72\x39\xe8\xeb\x83\x03\x07\xe4\x44\xd8\xd3\xe3\xea\ 491 | \xc0\x1b\xaf\x08\x7d\xf8\x20\xed\x95\x2b\xae\x0f\xbe\xb9\x14\x08\ 492 | \x85\xa4\x3d\x75\x0a\x2f\xa1\xbe\x14\x30\x0c\x29\x7b\xb3\x59\xc8\ 493 | \x64\x64\x2a\xb8\x1c\x8d\xa5\x40\x22\x21\x83\xbf\x76\xcd\x13\xc1\ 494 | \x57\x08\x21\xc3\x30\x2a\x19\x32\x72\xf4\xf8\xbb\xd0\x34\x0d\x6d\ 495 | \x62\x02\x1f\x60\x0d\x0d\x61\x15\x0a\x9e\x08\xbc\xfc\xec\x53\x05\ 496 | \xe8\xee\xee\xae\x48\x01\xbf\xe6\x07\xa1\xa0\xa9\x2a\x3c\x78\x20\ 497 | \x0f\x3e\x7b\x16\xd5\x23\x13\x60\x69\xf5\x19\x66\xd5\x14\xd0\xfc\ 498 | \x1a\x0a\xc0\xf2\x32\x3c\x7f\x2e\xdb\xcb\x86\x87\x3d\x73\xeb\xd7\ 499 | \x5f\x12\x4b\x24\xa4\x75\x71\xed\x7f\x73\xcb\x60\x24\x22\xed\xfe\ 500 | \xfd\x1d\x4a\xc0\xe4\xa4\xb4\x07\x0f\x76\x28\x01\xe5\x02\xc8\xee\ 501 | \xdd\x9e\x24\xa0\xa6\x10\x12\xf1\x38\x4a\x39\xf0\x6c\x76\xad\xe3\ 502 | \xd2\x03\xa8\x4b\x08\x29\x2f\x5e\xc8\xc1\xc3\x87\x9e\x0a\xbe\xae\ 503 | \x14\xc8\xa7\x13\x72\xdf\x0f\x70\xe6\x8c\xf7\x6e\xfd\xd5\x3b\x5e\ 504 | \x11\x42\x88\x42\xa1\x50\x51\x12\xcb\xa5\x13\x0c\xfc\x33\x0a\x81\ 505 | \x00\xb9\x0b\x17\x1a\xfa\x72\xdb\xb6\xf1\x55\x29\x98\x98\xa6\x49\ 506 | \x57\x95\x56\x9a\x5a\xbe\x5a\xdf\xd9\xcc\xef\x28\x95\x4a\x04\x02\ 507 | \x01\x88\xcd\x4d\x89\x99\xc8\xb4\x30\x1d\xda\x85\xd3\xc9\x84\x48\ 508 | \xa6\x92\x8e\xbd\xb6\x93\x93\xd3\x62\x7a\x66\xce\xd1\xb7\x9c\x5a\ 509 | \x71\xee\x3d\x36\x53\x22\xba\xbc\x24\xd2\xd9\x8c\xa3\x3f\x16\x8b\ 510 | \x3b\xbf\x1f\x5f\x14\xb3\x91\x59\x47\x5f\xa1\x90\x13\xc9\xe4\x8f\ 511 | \x4a\x87\x5d\x12\x73\xb3\x53\x62\x3e\xee\xdc\xac\x1d\x8b\xce\xad\ 512 | \xeb\x15\x06\x5a\xf9\xcf\xc0\x6a\x93\x6a\xb3\xbe\x5f\x2d\x6d\x0d\ 513 | \xfe\x7f\xb1\xd6\xb9\x7e\x5b\x05\xe8\x60\xfc\x04\x7d\x53\x9e\xf3\ 514 | \x0d\xac\x7e\x01\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ 515 | \ 516 | " 517 | 518 | qt_resource_name = b"\ 519 | \x00\x05\ 520 | \x00\x6f\xa6\x53\ 521 | \x00\x69\ 522 | \x00\x63\x00\x6f\x00\x6e\x00\x73\ 523 | \x00\x05\ 524 | \x00\x6d\x69\x43\ 525 | \x00\x66\ 526 | \x00\x6f\x00\x72\x00\x6d\x00\x73\ 527 | \x00\x0d\ 528 | \x09\x7a\x49\xe7\ 529 | \x00\x52\ 530 | \x00\x6f\x00\x64\x00\x72\x00\x69\x00\x67\x00\x75\x00\x65\x00\x7a\x00\x2e\x00\x70\x00\x6e\x00\x67\ 531 | \x00\x08\ 532 | \x08\x8e\x5a\x07\ 533 | \x00\x64\ 534 | \x00\x61\x00\x72\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ 535 | \x00\x09\ 536 | \x0d\xf7\xb2\xa7\ 537 | \x00\x6c\ 538 | \x00\x69\x00\x67\x00\x68\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ 539 | \x00\x06\ 540 | \x04\xe9\x57\x47\ 541 | \x00\x49\ 542 | \x00\x56\x00\x2e\x00\x70\x00\x6e\x00\x67\ 543 | " 544 | 545 | qt_resource_struct_v1 = b"\ 546 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ 547 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\ 548 | \x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\ 549 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ 550 | \x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ 551 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x06\ 552 | \x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x4c\ 553 | \x00\x00\x00\x40\x00\x00\x00\x00\x00\x01\x00\x00\x07\xd2\ 554 | \x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x09\x0d\ 555 | " 556 | 557 | qt_resource_struct_v2 = b"\ 558 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ 559 | \x00\x00\x00\x00\x00\x00\x00\x00\ 560 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\ 561 | \x00\x00\x00\x00\x00\x00\x00\x00\ 562 | \x00\x00\x00\x10\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\ 563 | \x00\x00\x00\x00\x00\x00\x00\x00\ 564 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ 565 | \x00\x00\x00\x00\x00\x00\x00\x00\ 566 | \x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ 567 | \x00\x00\x01\x79\xae\xbb\xd9\x1a\ 568 | \x00\x00\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x06\ 569 | \x00\x00\x00\x00\x00\x00\x00\x00\ 570 | \x00\x00\x00\x6e\x00\x00\x00\x00\x00\x01\x00\x00\x0a\x4c\ 571 | \x00\x00\x01\x76\x34\x27\xe7\x18\ 572 | \x00\x00\x00\x40\x00\x00\x00\x00\x00\x01\x00\x00\x07\xd2\ 573 | \x00\x00\x01\x77\x92\x8d\x88\xf4\ 574 | \x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x09\x0d\ 575 | \x00\x00\x01\x77\x92\x8c\xb3\x58\ 576 | " 577 | 578 | qt_version = [int(v) for v in QtCore.qVersion().split('.')] 579 | if qt_version < [5, 8, 0]: 580 | rcc_version = 1 581 | qt_resource_struct = qt_resource_struct_v1 582 | else: 583 | rcc_version = 2 584 | qt_resource_struct = qt_resource_struct_v2 585 | 586 | def qInitResources(): 587 | QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) 588 | 589 | def qCleanupResources(): 590 | QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) 591 | 592 | qInitResources() 593 | -------------------------------------------------------------------------------- /Rodriquez.e4p: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | en_US 8 | dd2a4682db1614911e675b3c555b364a263115ee 9 | Python3 10 | PyQt5 11 | 0.1 12 | Joseph Eoff 13 | 14 | 15 | 16 | Rodriguez_rc.py 17 | __init__.py 18 | forms/IVTrace.py 19 | forms/IVTracer.py 20 | forms/IVTracer_Collector.py 21 | forms/IVTracer_Signals.py 22 | forms/IVTracer_Value.py 23 | forms/Ui_main.py 24 | forms/Ui_plotter.py 25 | forms/deviceTypes.py 26 | forms/mainWindow.py 27 | rodriguez.py 28 | 29 | 30 |
forms/main.ui
31 |
32 | 33 | Rodriguez.qrc 34 | 35 | 36 | .gitignore 37 | 38 | rodriguez.py 39 | 40 | Git 41 | 42 | 43 | 44 | add 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | checkout 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | commit 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | diff 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | export 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | global 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | history 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | log 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | remove 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | status 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | tag 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | update 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 |
164 | -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble-NPN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/Schematic/Breadboard/Rodriguez-pebble-NPN.png -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble-NPN.txt: -------------------------------------------------------------------------------- 1 | Resistor|100|159|366|1|Resistor|R?||3||IC|| 2 | Resistor|100|590|366|1|Resistor|R?||3||IC|| 3 | Capacitor|10uF|276|404|2|Capacitor|C?||1|2|||cap_212 4 | Capacitor|10uF|545|404|2|Capacitor|C?||1|2|||cap_212 5 | Resistor|3300|267|339|1|Resistor|R?||3||IC|| 6 | Resistor|1000|482|339|1|Resistor|R?||3||IC|| 7 | Wire||74|484|21||11|#FF0000|3|11||10| 8 | Note||9|557|2||||1||5V||NOTEPAD_12 9 | Wire||802|456|21||11|#000000|4|11||10| 10 | Note||806|559|1||||1||Ground||NOTEPAD_11 11 | Wire||829|17|21||11|#000000|16|11||10| 12 | Wire||47|44|21||11|#FF0000|16|11||10| 13 | Wire||155|402|21||11|#00A060|8|11||10| 14 | Note||91|614|2||||1||D9||NOTEPAD_12 15 | Wire||263|402|21||11|#00A060|8|11||10| 16 | Note||198|615|2||||1||A0||NOTEPAD_12 17 | Wire||371|374|21||11|#00A060|9|11||10| 18 | Note||305|614|2||||1||A1||NOTEPAD_12 19 | Wire||478|374|21||11|#3253FF|9|11||10| 20 | Note||481|615|1||||1||A3||NOTEPAD_11 21 | Wire||586|402|21||11|#3253FF|8|11||10| 22 | Note||590|616|1||||1||A2||NOTEPAD_11 23 | Note||698|614|1||||1||D10||NOTEPAD_11 24 | Wire||694|402|21||11|#3253FF|8|11||10| 25 | Wire||265|317|11||11|#00A060|1|11||10| 26 | Wire||561|317|11||11|#3253FF|1|11||10| 27 | Transistor|BC559|400|135|2|Transistor|Q?|||1|IC||transistor_12 28 | Resistor|220000|419|185|2|Resistor|R?||3||IC|| 29 | Wire||478|209|21||11|#3253FF|3|11||10| 30 | Wire||453|180|11||11|#3253FF|1|11||10| 31 | Wire||398|17|21||11|#000000|3|11||10| 32 | Wire||373|317|11||11|#00A060|2|11||10| 33 | BREADBOARDSTYLE=BB12 34 | SHOWTHETOPAREA=false 35 | -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble-PNP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/Schematic/Breadboard/Rodriguez-pebble-PNP.png -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble-PNP.txt: -------------------------------------------------------------------------------- 1 | Resistor|100|159|366|1|Resistor|R?||3||IC|| 2 | Resistor|100|590|366|1|Resistor|R?||3||IC|| 3 | Capacitor|10uF|276|404|2|Capacitor|C?||1|2|||cap_212 4 | Capacitor|10uF|545|404|2|Capacitor|C?||1|2|||cap_212 5 | Resistor|3300|267|339|1|Resistor|R?||3||IC|| 6 | Resistor|1000|482|339|1|Resistor|R?||3||IC|| 7 | Wire||74|484|21||11|#FF0000|3|11||10| 8 | Note||9|557|2||||1||5V||NOTEPAD_12 9 | Wire||802|456|21||11|#000000|4|11||10| 10 | Note||806|559|1||||1||Ground||NOTEPAD_11 11 | Wire||829|17|21||11|#000000|16|11||10| 12 | Wire||47|44|21||11|#FF0000|16|11||10| 13 | Wire||155|402|21||11|#00A060|8|11||10| 14 | Note||91|614|2||||1||D9||NOTEPAD_12 15 | Wire||263|402|21||11|#00A060|8|11||10| 16 | Note||198|615|2||||1||A0||NOTEPAD_12 17 | Wire||371|374|21||11|#00A060|9|11||10| 18 | Note||305|614|2||||1||A1||NOTEPAD_12 19 | Wire||478|374|21||11|#3253FF|9|11||10| 20 | Note||481|615|1||||1||A3||NOTEPAD_11 21 | Wire||586|402|21||11|#3253FF|8|11||10| 22 | Note||590|616|1||||1||A2||NOTEPAD_11 23 | Note||698|614|1||||1||D10||NOTEPAD_11 24 | Wire||694|402|21||11|#3253FF|8|11||10| 25 | Wire||265|317|11||11|#00A060|1|11||10| 26 | Wire||561|317|11||11|#3253FF|1|11||10| 27 | Transistor|BC559|400|135|1|Transistor|Q?|||1|IC||transistor_11 28 | Resistor|220000|419|185|2|Resistor|R?||3||IC|| 29 | Wire||478|209|21||11|#3253FF|3|11||10| 30 | Wire||453|180|11||11|#3253FF|1|11||10| 31 | Wire||398|44|21||11|#FF0000|3|11||10| 32 | Wire||373|317|11||11|#00A060|2|11||10| 33 | BREADBOARDSTYLE=BB12 34 | SHOWTHETOPAREA=false 35 | -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble-diode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/Schematic/Breadboard/Rodriguez-pebble-diode.png -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble-diode.txt: -------------------------------------------------------------------------------- 1 | Resistor|100|159|366|1|Resistor|R?||3||IC|| 2 | Resistor|100|590|366|1|Resistor|R?||3||IC|| 3 | Capacitor|10uF|276|404|2|Capacitor|C?||1|2|||cap_212 4 | Capacitor|10uF|545|404|2|Capacitor|C?||1|2|||cap_212 5 | Resistor|3300|267|339|1|Resistor|R?||3||IC|| 6 | Resistor|1000|482|339|1|Resistor|R?||3||IC|| 7 | Wire||74|484|21||11|#FF0000|3|11||10| 8 | Note||9|557|2||||1||5V||NOTEPAD_12 9 | Wire||802|456|21||11|#000000|4|11||10| 10 | Note||806|559|1||||1||Ground||NOTEPAD_11 11 | Wire||829|17|21||11|#000000|16|11||10| 12 | Wire||47|44|21||11|#FF0000|16|11||10| 13 | Wire||155|402|21||11|#00A060|8|11||10| 14 | Note||91|614|2||||1||D9||NOTEPAD_12 15 | Wire||263|402|21||11|#00A060|8|11||10| 16 | Note||198|615|2||||1||A0||NOTEPAD_12 17 | Wire||371|374|21||11|#00A060|9|11||10| 18 | Note||305|614|2||||1||A1||NOTEPAD_12 19 | Wire||478|374|21||11|#3253FF|9|11||10| 20 | Note||481|615|1||||1||A3||NOTEPAD_11 21 | Wire||586|402|21||11|#3253FF|8|11||10| 22 | Note||590|616|1||||1||A2||NOTEPAD_11 23 | Note||698|614|1||||1||D10||NOTEPAD_11 24 | Wire||694|402|21||11|#3253FF|8|11||10| 25 | Wire||265|317|11||11|#00A060|1|11||10| 26 | Wire||561|317|11||11|#3253FF|1|11||10| 27 | Diode|0|474|19|2|Diode|CR?||2|1|IC||diode_122 28 | Wire||478|209|21||11|#3253FF|3|11||10| 29 | BREADBOARDSTYLE=BB12 30 | SHOWTHETOPAREA=false 31 | -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/Schematic/Breadboard/Rodriguez-pebble.png -------------------------------------------------------------------------------- /Schematic/Breadboard/Rodriguez-pebble.txt: -------------------------------------------------------------------------------- 1 | Resistor|100|159|366|1|Resistor|R?||3||IC|| 2 | Resistor|100|590|366|1|Resistor|R?||3||IC|| 3 | Capacitor|10uF|276|404|2|Capacitor|C?||1|2|||cap_212 4 | Capacitor|10uF|545|404|2|Capacitor|C?||1|2|||cap_212 5 | Resistor|3300|267|339|1|Resistor|R?||3||IC|| 6 | Resistor|1000|482|339|1|Resistor|R?||3||IC|| 7 | Wire||74|484|21||11|#FF0000|3|11||10| 8 | Note||9|557|2||||1||5V||NOTEPAD_12 9 | Wire||802|456|21||11|#000000|4|11||10| 10 | Note||806|559|1||||1||Ground||NOTEPAD_11 11 | Wire||829|17|21||11|#000000|16|11||10| 12 | Wire||47|44|21||11|#FF0000|16|11||10| 13 | Wire||155|402|21||11|#00A060|8|11||10| 14 | Note||91|614|2||||1||D9||NOTEPAD_12 15 | Wire||263|402|21||11|#00A060|8|11||10| 16 | Note||198|615|2||||1||A0||NOTEPAD_12 17 | Wire||371|374|21||11|#00A060|9|11||10| 18 | Note||305|614|2||||1||A1||NOTEPAD_12 19 | Wire||478|374|21||11|#3253FF|9|11||10| 20 | Note||481|615|1||||1||A3||NOTEPAD_11 21 | Wire||586|402|21||11|#3253FF|8|11||10| 22 | Note||590|616|1||||1||A2||NOTEPAD_11 23 | Note||698|614|1||||1||D10||NOTEPAD_11 24 | Wire||694|402|21||11|#3253FF|8|11||10| 25 | Wire||265|317|11||11|#00A060|1|11||10| 26 | Wire||561|317|11||11|#3253FF|1|11||10| 27 | BREADBOARDSTYLE=BB12 28 | SHOWTHETOPAREA=false 29 | -------------------------------------------------------------------------------- /Schematic/Rodriguez-Schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/Schematic/Rodriguez-Schematic.png -------------------------------------------------------------------------------- /Schematic/cover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 28 | 29 | 48 | 50 | 51 | 53 | image/svg+xml 54 | 56 | 57 | 58 | 59 | 60 | 64 | 67 | 69 | 76 | 79 | 82 | 85 | 91 | 97 | 103 | 109 | 110 | 117 | 118 | 125 | 128 | 131 | 137 | 143 | 149 | 155 | 156 | 163 | 164 | 167 | 170 | 176 | 182 | 188 | 194 | 195 | 202 | 203 | 206 | 209 | 215 | 221 | 227 | 233 | 234 | 241 | 242 | 243 | 244 | 251 | 253 | 260 | 267 | 274 | 281 | 282 | 284 | 291 | 298 | 305 | 312 | 319 | 320 | 323 | 330 | 337 | 344 | 351 | 358 | 359 | 362 | 369 | 376 | 383 | 390 | 397 | 398 | 401 | 408 | 415 | 422 | 429 | 436 | 437 | 440 | 447 | 454 | 461 | 468 | 475 | 476 | 479 | 486 | 493 | 500 | 507 | 514 | 515 | 518 | 525 | 532 | 539 | 546 | 553 | 554 | 555 | Rodriguez Rodriguez 591 | GND 602 | +5V 613 | Diode 624 | NPN 635 | PNP 646 | Cathode 657 | Anode 668 | Emitter 679 | Emitter 690 | Base 701 | Collector 712 | Collector 723 | Base 734 | 736 | 743 | 750 | 753 | 759 | 765 | 766 | 769 | 775 | 781 | 782 | 785 | 791 | 797 | 798 | 801 | 807 | 813 | 814 | 815 | 816 | 817 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/__init__.py -------------------------------------------------------------------------------- /forms/IVTrace.py: -------------------------------------------------------------------------------- 1 | import numpy as numpy 2 | from forms.deviceTypes import deviceTypes 3 | 4 | class IVTrace(object): 5 | values = [] 6 | NPN = [] 7 | PNP = [] 8 | Diode = [] 9 | deviceType = deviceTypes.Diode 10 | baseCurrent = 0.0 11 | 12 | def __init__(self, deviceType, baseCurrent): 13 | self.deviceType = deviceType 14 | self.clear() 15 | self.baseCurrent = baseCurrent 16 | 17 | def clear(self): 18 | self.values = [] 19 | self.NPN = [] 20 | self.PNP = [] 21 | self.Diode = [] 22 | 23 | def update(self, IVTracer_value): 24 | self.values.append(IVTracer_value) 25 | self.NPN.append([IVTracer_value.NPN_VCollector, IVTracer_value.NPN_ICollector]) 26 | self.PNP.append([IVTracer_value.PNP_VCollector, IVTracer_value.PNP_ICollector]) 27 | self.Diode.append([IVTracer_value.NPN_VCollector , IVTracer_value.NPN_ICollector]) 28 | 29 | def getPlotData(self): 30 | if self.deviceType == deviceTypes.Diode: 31 | return self._getArrayFromList(self.Diode) 32 | if self.deviceType == deviceTypes.PNP: 33 | return self._getArrayFromList(self.PNP) 34 | if self.deviceType == deviceTypes.NPN: 35 | return self._getArrayFromList(self.NPN) 36 | 37 | def _getArrayFromList(self, dataList): 38 | data = numpy.array(dataList) 39 | data = data[data[:,0].argsort()] 40 | return data 41 | -------------------------------------------------------------------------------- /forms/IVTracer.py: -------------------------------------------------------------------------------- 1 | from PyQt5.QtCore import * 2 | import serial 3 | import time 4 | import math 5 | from forms.IVTracer_Value import IVTracer_Value 6 | from forms.IVTracer_Signals import IVTracer_Signals 7 | from forms.deviceTypes import deviceTypes 8 | 9 | class IVTracer(QRunnable): 10 | maximumCount = 1023 11 | R_base = float(3300.0) 12 | R_collector = float(1000.0) 13 | V_ref = float(5.0) 14 | Oversampling = int(256) 15 | BaseCurrentSamplingCount = int(256) 16 | 17 | def __init__(self, comport, deviceType, numberOfPlots, R_base, R_collector, V_ref ): 18 | super(IVTracer, self).__init__() 19 | self.comport = comport 20 | self.serialport = None 21 | self.keepRunning = False 22 | self.signals = IVTracer_Signals() 23 | self.deviceType = deviceTypes.Diode 24 | self.deviceType = deviceType 25 | 26 | self.numberOfPlots = numberOfPlots 27 | self.R_base = R_base 28 | self.R_collector = R_collector 29 | self.V_ref = V_ref 30 | 31 | @pyqtSlot() 32 | def run(self): 33 | try: 34 | self.openComport() 35 | self.keepRunning = True 36 | if self.deviceType == deviceTypes.Diode: 37 | self.traceDiodeIV() 38 | if self.deviceType == deviceTypes.NPN : 39 | self.traceNPNTransistor() 40 | if self.deviceType == deviceTypes.PNP: 41 | self.tracePNPTransistor() 42 | 43 | except Exception as ex: 44 | self.signals.Error.emit("Error while tracing: " + str(ex)) 45 | 46 | self.signals.Finished.emit() 47 | 48 | def openComport(self): 49 | portspeed=1000000 50 | self.serialport=serial.Serial(self.comport,portspeed) 51 | self.serialport.timeout = 5 52 | time.sleep(2) 53 | 54 | def traceDiodeIV(self): 55 | #Set the output to zero volts. Read and discard the first values. 56 | self.serialport.write(("0B"+chr(13)).encode()) 57 | valuestring = self.readFromSerialPort() 58 | self.serialport.write(("0C"+chr(13)).encode()) 59 | valuestring = self.readFromSerialPort() 60 | for counter in range(0 , self.maximumCount): 61 | if not self.keepRunning: 62 | break 63 | value = IVTracer_Value() 64 | self.serialport.write((str(counter)+"C"+chr(13)).encode()) 65 | valuestring = self.readFromSerialPort() 66 | stringvalues = valuestring.split(('\t').encode()) 67 | value.V_Intended = counter/self.maximumCount * self.V_ref 68 | value.NPN_VCollector = (float(stringvalues[2])/self.maximumCount) * self.V_ref / self.Oversampling 69 | value.NPN_VCollectorBias = (float(stringvalues[3])/self.maximumCount) * self.V_ref / self.Oversampling 70 | value.NPN_ICollector = ((value.NPN_VCollectorBias-value.NPN_VCollector)/self.R_collector) 71 | 72 | self.signals.Value.emit(value, 0) 73 | 74 | def traceNPNTransistor(self): 75 | #Set the output to zero volts. Read and discard the first values. 76 | self.serialport.write(("0B"+chr(13)).encode()) 77 | valuestring = self.readFromSerialPort() 78 | self.serialport.write((str(self.maximumCount) + "C"+chr(13)).encode()) 79 | valuestring = self.readFromSerialPort() 80 | stepSize = int(self.maximumCount/self.numberOfPlots) 81 | 82 | count = 0 83 | for counter in range(stepSize ,self.maximumCount, stepSize): 84 | if not self.keepRunning: 85 | break 86 | value = IVTracer_Value() 87 | self.serialport.write((str(counter)+"B"+chr(13)).encode()) 88 | valuestring = self.readFromSerialPort() 89 | IBase_Intended = self.getBaseCurrent(counter) 90 | 91 | for collectorCounts in range(0, self.maximumCount): 92 | if not self.keepRunning: 93 | break 94 | value = IVTracer_Value() 95 | self.serialport.write((str(collectorCounts)+"C"+chr(13)).encode()) 96 | valuestring = self.readFromSerialPort() 97 | stringvalues = valuestring.split(('\t').encode()) 98 | 99 | value.V_Intended = collectorCounts/self.maximumCount * self.V_ref 100 | value.IBase_Intended = IBase_Intended 101 | value.VBias = (float(stringvalues[0])/self.maximumCount) * self.V_ref / self.Oversampling 102 | value.VBase = (float(stringvalues[1])/self.maximumCount) * self.V_ref / self.Oversampling 103 | value.NPN_VCollector = (float(stringvalues[2])/self.maximumCount) * self.V_ref / self.Oversampling 104 | value.NPN_VCollectorBias = (float(stringvalues[3])/self.maximumCount) * self.V_ref / self.Oversampling 105 | value.IBase = ((value.VBias-value.VBase)/self.R_base) 106 | value.NPN_ICollector = ((value.NPN_VCollectorBias-value.NPN_VCollector)/self.R_collector) 107 | self.signals.Value.emit(value, count) 108 | count = count +1 109 | 110 | def tracePNPTransistor(self): 111 | #Set the output to full output volts. Read and discard the first values. 112 | self.serialport.write((str(self.maximumCount) +"B"+chr(13)).encode()) 113 | valuestring = self.readFromSerialPort() 114 | self.serialport.write((str(self.maximumCount) +"C"+chr(13)).encode()) 115 | valuestring = self.readFromSerialPort() 116 | 117 | stepSize = int(self.maximumCount/(self.numberOfPlots)) 118 | 119 | count = 0 120 | stepSize = -1 * stepSize 121 | for counter in range( self.maximumCount + stepSize , 0, stepSize ): 122 | if not self.keepRunning: 123 | break 124 | value = IVTracer_Value() 125 | self.serialport.write((str(counter)+"B"+chr(13)).encode()) 126 | valuestring = self.readFromSerialPort() 127 | IBase_Intended = self.getBaseCurrent(counter) 128 | 129 | for collectorCounts in range(self.maximumCount, 0, -1): 130 | if not self.keepRunning: 131 | break 132 | value = IVTracer_Value() 133 | self.serialport.write((str(collectorCounts)+"C"+chr(13)).encode()) 134 | valuestring = self.readFromSerialPort() 135 | stringvalues = valuestring.split(('\t').encode()) 136 | 137 | value.V_Intended = collectorCounts/self.maximumCount * self.V_ref 138 | value.IBase_Intended = IBase_Intended 139 | value.VBias = (float(stringvalues[0])/self.maximumCount) * self.V_ref / self.Oversampling 140 | value.VBase = (float(stringvalues[1])/self.maximumCount) * self.V_ref / self.Oversampling 141 | value.PNP_VCollector = (float(stringvalues[2])/self.maximumCount) * self.V_ref / self.Oversampling 142 | value.PNP_VCollectorBias = (float(stringvalues[3])/self.maximumCount) * self.V_ref / self.Oversampling 143 | value.IBase = ((value.VBase - value.VBias)/self.R_base) 144 | value.PNP_ICollector = ((value.PNP_VCollector - value.PNP_VCollectorBias)/self.R_collector) 145 | #VCollector means "VCE" - that's the voltage difference between the emitter and the collector 146 | value.PNP_VCollector = self.V_ref - value.PNP_VCollector 147 | self.signals.Value.emit(value, count) 148 | count = count +1 149 | 150 | def getBaseCurrent(self, DACount): 151 | collectorCounts = int(self.maximumCount/6) 152 | self.serialport.write((str(collectorCounts)+"C"+chr(13)).encode()) 153 | valuestring = self.readFromSerialPort() 154 | IBase = 0.0 155 | for count in range (0, self.BaseCurrentSamplingCount): 156 | if not self.keepRunning: 157 | break 158 | self.serialport.write((str(DACount)+"B"+chr(13)).encode()) 159 | valuestring = self.readFromSerialPort() 160 | stringvalues = valuestring.split(('\t').encode()) 161 | VBias = (float(stringvalues[0])/self.maximumCount) * self.V_ref / self.Oversampling 162 | VBase = (float(stringvalues[1])/self.maximumCount) * self.V_ref / self.Oversampling 163 | IBase = IBase + math.fabs((VBias-VBase)/self.R_base) 164 | return IBase/self.BaseCurrentSamplingCount 165 | 166 | 167 | def readFromSerialPort(self): 168 | valuestring = self.serialport.readline() 169 | if not valuestring: 170 | raise Exception("Empty response from serial port.","Is the Arduino connected?") 171 | 172 | return valuestring 173 | 174 | @pyqtSlot() 175 | def stop(self): 176 | self.keepRunning = False 177 | -------------------------------------------------------------------------------- /forms/IVTracer_Collector.py: -------------------------------------------------------------------------------- 1 | import numpy as numpy 2 | from collections import OrderedDict 3 | from forms.deviceTypes import deviceTypes 4 | from forms.IVTrace import IVTrace 5 | 6 | 7 | 8 | class IVTracer_Collector(object): 9 | traces = OrderedDict() 10 | deviceType = deviceTypes.Diode 11 | title = "" 12 | 13 | def __init__(self, deviceType, title): 14 | self.deviceType = deviceType 15 | self.title = title 16 | self.clear() 17 | 18 | def clear(self): 19 | self.traces = OrderedDict() 20 | 21 | def updateTrace(self, IVTracer_value, traceNumber): 22 | if not traceNumber in self.traces: 23 | newtrace = IVTrace(self.deviceType, IVTracer_value.IBase_Intended ) 24 | self.traces[traceNumber] = newtrace 25 | self.traces[traceNumber].update(IVTracer_value) 26 | 27 | def getPlotData(self, traceNumber): 28 | if traceNumber in self.traces: 29 | return self.traces[traceNumber].getPlotData() 30 | 31 | return numpy.zeros(shape=(1,2)) 32 | 33 | def getBaseCurrentForTrace(self, traceNumber): 34 | if traceNumber in self.traces: 35 | baseCurrent = self.traces[traceNumber].baseCurrent 36 | return "{:10.2f}".format(baseCurrent*1000000 ) + "µA" 37 | -------------------------------------------------------------------------------- /forms/IVTracer_Signals.py: -------------------------------------------------------------------------------- 1 | from PyQt5.QtCore import * 2 | from forms.IVTracer_Value import IVTracer_Value 3 | 4 | class IVTracer_Signals(QObject): 5 | Error = pyqtSignal(str) 6 | Finished = pyqtSignal() 7 | Value = pyqtSignal(IVTracer_Value, int) 8 | -------------------------------------------------------------------------------- /forms/IVTracer_Value.py: -------------------------------------------------------------------------------- 1 | class IVTracer_Value(object): 2 | V_Intended = 0.0 3 | IBase_Intended = 0.0 4 | VBias = 0.0 5 | VBase = 0.0 6 | IBase = 0.0 7 | NPN_VCollector = 0.0 8 | NPN_VCollectorBias = 0.0 9 | NPN_ICollector = 0.0 10 | PNP_VCollector = 0.0 11 | PNP_ICollector = 0.0 12 | -------------------------------------------------------------------------------- /forms/Ui_main.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Form implementation generated from reading ui file '/home/dev/EricProjects/Rodriguez/forms/main.ui' 4 | # 5 | # Created by: PyQt5 UI code generator 5.13.1 6 | # 7 | # WARNING! All changes made in this file will be lost! 8 | 9 | 10 | from PyQt5 import QtCore, QtGui, QtWidgets 11 | 12 | 13 | class Ui_MainWindow(object): 14 | def setupUi(self, MainWindow): 15 | MainWindow.setObjectName("MainWindow") 16 | MainWindow.resize(563, 624) 17 | icon = QtGui.QIcon() 18 | icon.addPixmap(QtGui.QPixmap(":/icons/icons/Rodriguez.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) 19 | MainWindow.setWindowIcon(icon) 20 | MainWindow.setAnimated(False) 21 | self.centralWidget = QtWidgets.QWidget(MainWindow) 22 | self.centralWidget.setObjectName("centralWidget") 23 | self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.centralWidget) 24 | self.horizontalLayout_3.setObjectName("horizontalLayout_3") 25 | self.horizontalLayout = QtWidgets.QHBoxLayout() 26 | self.horizontalLayout.setSizeConstraint(QtWidgets.QLayout.SetNoConstraint) 27 | self.horizontalLayout.setObjectName("horizontalLayout") 28 | self.groupBoxControls = QtWidgets.QGroupBox(self.centralWidget) 29 | sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum) 30 | sizePolicy.setHorizontalStretch(0) 31 | sizePolicy.setVerticalStretch(0) 32 | sizePolicy.setHeightForWidth(self.groupBoxControls.sizePolicy().hasHeightForWidth()) 33 | self.groupBoxControls.setSizePolicy(sizePolicy) 34 | self.groupBoxControls.setMinimumSize(QtCore.QSize(0, 0)) 35 | self.groupBoxControls.setTitle("") 36 | self.groupBoxControls.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignTop) 37 | self.groupBoxControls.setObjectName("groupBoxControls") 38 | self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBoxControls) 39 | self.verticalLayout.setObjectName("verticalLayout") 40 | self.label = QtWidgets.QLabel(self.groupBoxControls) 41 | sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) 42 | sizePolicy.setHorizontalStretch(0) 43 | sizePolicy.setVerticalStretch(0) 44 | sizePolicy.setHeightForWidth(self.label.sizePolicy().hasHeightForWidth()) 45 | self.label.setSizePolicy(sizePolicy) 46 | self.label.setObjectName("label") 47 | self.verticalLayout.addWidget(self.label) 48 | self.lineEditDeviceName = QtWidgets.QLineEdit(self.groupBoxControls) 49 | sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) 50 | sizePolicy.setHorizontalStretch(0) 51 | sizePolicy.setVerticalStretch(0) 52 | sizePolicy.setHeightForWidth(self.lineEditDeviceName.sizePolicy().hasHeightForWidth()) 53 | self.lineEditDeviceName.setSizePolicy(sizePolicy) 54 | self.lineEditDeviceName.setObjectName("lineEditDeviceName") 55 | self.verticalLayout.addWidget(self.lineEditDeviceName) 56 | self.label_3 = QtWidgets.QLabel(self.groupBoxControls) 57 | sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) 58 | sizePolicy.setHorizontalStretch(0) 59 | sizePolicy.setVerticalStretch(0) 60 | sizePolicy.setHeightForWidth(self.label_3.sizePolicy().hasHeightForWidth()) 61 | self.label_3.setSizePolicy(sizePolicy) 62 | self.label_3.setObjectName("label_3") 63 | self.verticalLayout.addWidget(self.label_3) 64 | self.spinBoxTraceCount = QtWidgets.QSpinBox(self.groupBoxControls) 65 | self.spinBoxTraceCount.setMinimum(2) 66 | self.spinBoxTraceCount.setMaximum(20) 67 | self.spinBoxTraceCount.setObjectName("spinBoxTraceCount") 68 | self.verticalLayout.addWidget(self.spinBoxTraceCount) 69 | self.comboBox_DeviceType = QtWidgets.QComboBox(self.groupBoxControls) 70 | sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed) 71 | sizePolicy.setHorizontalStretch(0) 72 | sizePolicy.setVerticalStretch(0) 73 | sizePolicy.setHeightForWidth(self.comboBox_DeviceType.sizePolicy().hasHeightForWidth()) 74 | self.comboBox_DeviceType.setSizePolicy(sizePolicy) 75 | self.comboBox_DeviceType.setObjectName("comboBox_DeviceType") 76 | self.verticalLayout.addWidget(self.comboBox_DeviceType) 77 | self.pushButtonRun = QtWidgets.QPushButton(self.groupBoxControls) 78 | self.pushButtonRun.setObjectName("pushButtonRun") 79 | self.verticalLayout.addWidget(self.pushButtonRun) 80 | self.pushButtonStop = QtWidgets.QPushButton(self.groupBoxControls) 81 | self.pushButtonStop.setObjectName("pushButtonStop") 82 | self.verticalLayout.addWidget(self.pushButtonStop) 83 | self.horizontalLayout_2 = QtWidgets.QHBoxLayout() 84 | self.horizontalLayout_2.setObjectName("horizontalLayout_2") 85 | self.toolButtonDarkBackground = QtWidgets.QToolButton(self.groupBoxControls) 86 | self.toolButtonDarkBackground.setText("") 87 | icon1 = QtGui.QIcon() 88 | icon1.addPixmap(QtGui.QPixmap(":/icons/forms/icons/dark.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) 89 | self.toolButtonDarkBackground.setIcon(icon1) 90 | self.toolButtonDarkBackground.setIconSize(QtCore.QSize(20, 20)) 91 | self.toolButtonDarkBackground.setObjectName("toolButtonDarkBackground") 92 | self.horizontalLayout_2.addWidget(self.toolButtonDarkBackground) 93 | self.toolButtonLightBackground = QtWidgets.QToolButton(self.groupBoxControls) 94 | self.toolButtonLightBackground.setText("") 95 | icon2 = QtGui.QIcon() 96 | icon2.addPixmap(QtGui.QPixmap(":/icons/forms/icons/light.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) 97 | self.toolButtonLightBackground.setIcon(icon2) 98 | self.toolButtonLightBackground.setIconSize(QtCore.QSize(20, 20)) 99 | self.toolButtonLightBackground.setObjectName("toolButtonLightBackground") 100 | self.horizontalLayout_2.addWidget(self.toolButtonLightBackground) 101 | self.verticalLayout.addLayout(self.horizontalLayout_2) 102 | spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) 103 | self.verticalLayout.addItem(spacerItem) 104 | self.label_4 = QtWidgets.QLabel(self.groupBoxControls) 105 | self.label_4.setObjectName("label_4") 106 | self.verticalLayout.addWidget(self.label_4) 107 | self.label_Current = QtWidgets.QLabel(self.groupBoxControls) 108 | self.label_Current.setObjectName("label_Current") 109 | self.verticalLayout.addWidget(self.label_Current) 110 | self.label_5 = QtWidgets.QLabel(self.groupBoxControls) 111 | self.label_5.setObjectName("label_5") 112 | self.verticalLayout.addWidget(self.label_5) 113 | self.label_Voltage = QtWidgets.QLabel(self.groupBoxControls) 114 | self.label_Voltage.setObjectName("label_Voltage") 115 | self.verticalLayout.addWidget(self.label_Voltage) 116 | self.comboBox_ComPort = QtWidgets.QComboBox(self.groupBoxControls) 117 | sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed) 118 | sizePolicy.setHorizontalStretch(0) 119 | sizePolicy.setVerticalStretch(0) 120 | sizePolicy.setHeightForWidth(self.comboBox_ComPort.sizePolicy().hasHeightForWidth()) 121 | self.comboBox_ComPort.setSizePolicy(sizePolicy) 122 | self.comboBox_ComPort.setObjectName("comboBox_ComPort") 123 | self.verticalLayout.addWidget(self.comboBox_ComPort) 124 | self.formLayout = QtWidgets.QFormLayout() 125 | self.formLayout.setObjectName("formLayout") 126 | self.label_6 = QtWidgets.QLabel(self.groupBoxControls) 127 | self.label_6.setObjectName("label_6") 128 | self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_6) 129 | self.doubleSpinBox_V_ref = QtWidgets.QDoubleSpinBox(self.groupBoxControls) 130 | self.doubleSpinBox_V_ref.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) 131 | self.doubleSpinBox_V_ref.setMinimum(1.0) 132 | self.doubleSpinBox_V_ref.setMaximum(10.0) 133 | self.doubleSpinBox_V_ref.setSingleStep(0.01) 134 | self.doubleSpinBox_V_ref.setProperty("value", 5.0) 135 | self.doubleSpinBox_V_ref.setObjectName("doubleSpinBox_V_ref") 136 | self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.doubleSpinBox_V_ref) 137 | self.label_7 = QtWidgets.QLabel(self.groupBoxControls) 138 | self.label_7.setObjectName("label_7") 139 | self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_7) 140 | self.label_8 = QtWidgets.QLabel(self.groupBoxControls) 141 | self.label_8.setObjectName("label_8") 142 | self.formLayout.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_8) 143 | self.spinBox_R_base = QtWidgets.QSpinBox(self.groupBoxControls) 144 | self.spinBox_R_base.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) 145 | self.spinBox_R_base.setMinimum(100) 146 | self.spinBox_R_base.setMaximum(100000) 147 | self.spinBox_R_base.setProperty("value", 3300) 148 | self.spinBox_R_base.setObjectName("spinBox_R_base") 149 | self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.spinBox_R_base) 150 | self.spinBox_R_collector = QtWidgets.QSpinBox(self.groupBoxControls) 151 | self.spinBox_R_collector.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) 152 | self.spinBox_R_collector.setMinimum(100) 153 | self.spinBox_R_collector.setMaximum(100000) 154 | self.spinBox_R_collector.setProperty("value", 1000) 155 | self.spinBox_R_collector.setObjectName("spinBox_R_collector") 156 | self.formLayout.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.spinBox_R_collector) 157 | self.verticalLayout.addLayout(self.formLayout) 158 | self.horizontalLayout.addWidget(self.groupBoxControls) 159 | self.plotterView = PlotWidget(self.centralWidget) 160 | self.plotterView.setObjectName("plotterView") 161 | self.horizontalLayout.addWidget(self.plotterView) 162 | self.horizontalLayout_3.addLayout(self.horizontalLayout) 163 | MainWindow.setCentralWidget(self.centralWidget) 164 | 165 | self.retranslateUi(MainWindow) 166 | QtCore.QMetaObject.connectSlotsByName(MainWindow) 167 | 168 | def retranslateUi(self, MainWindow): 169 | _translate = QtCore.QCoreApplication.translate 170 | MainWindow.setWindowTitle(_translate("MainWindow", "Rodriquez")) 171 | self.label.setText(_translate("MainWindow", "

Device name:

")) 172 | self.label_3.setText(_translate("MainWindow", "Number of traces:")) 173 | self.pushButtonRun.setText(_translate("MainWindow", "Run")) 174 | self.pushButtonStop.setText(_translate("MainWindow", "Stop")) 175 | self.label_4.setText(_translate("MainWindow", "Current (mA):")) 176 | self.label_Current.setText(_translate("MainWindow", "0")) 177 | self.label_5.setText(_translate("MainWindow", "Voltage (V):")) 178 | self.label_Voltage.setText(_translate("MainWindow", "0")) 179 | self.label_6.setText(_translate("MainWindow", "V_ref")) 180 | self.label_7.setText(_translate("MainWindow", "R_base")) 181 | self.label_8.setText(_translate("MainWindow", "R_collector")) 182 | from pyqtgraph import PlotWidget 183 | import Rodriguez_rc 184 | 185 | 186 | if __name__ == "__main__": 187 | import sys 188 | app = QtWidgets.QApplication(sys.argv) 189 | MainWindow = QtWidgets.QMainWindow() 190 | ui = Ui_MainWindow() 191 | ui.setupUi(MainWindow) 192 | MainWindow.show() 193 | sys.exit(app.exec_()) 194 | -------------------------------------------------------------------------------- /forms/Ui_plotter.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | # Form implementation generated from reading ui file '/home/dev/EricProjects/IV/forms/plotter.ui' 4 | # 5 | # Created by: PyQt5 UI code generator 5.13.1 6 | # 7 | # WARNING! All changes made in this file will be lost! 8 | 9 | 10 | from PyQt5 import QtCore, QtGui, QtWidgets 11 | 12 | 13 | class Ui_Plotter(object): 14 | def setupUi(self, Plotter): 15 | Plotter.setObjectName("Plotter") 16 | Plotter.resize(258, 191) 17 | self.plotterView = PlotWidget(Plotter) 18 | self.plotterView.setGeometry(QtCore.QRect(0, 0, 256, 192)) 19 | self.plotterView.setObjectName("plotterView") 20 | 21 | self.retranslateUi(Plotter) 22 | QtCore.QMetaObject.connectSlotsByName(Plotter) 23 | 24 | def retranslateUi(self, Plotter): 25 | _translate = QtCore.QCoreApplication.translate 26 | Plotter.setWindowTitle(_translate("Plotter", "Form")) 27 | from pyqtgraph import PlotWidget 28 | 29 | 30 | if __name__ == "__main__": 31 | import sys 32 | app = QtWidgets.QApplication(sys.argv) 33 | Plotter = QtWidgets.QWidget() 34 | ui = Ui_Plotter() 35 | ui.setupUi(Plotter) 36 | Plotter.show() 37 | sys.exit(app.exec_()) 38 | -------------------------------------------------------------------------------- /forms/deviceTypes.py: -------------------------------------------------------------------------------- 1 | from enum import IntEnum 2 | 3 | class deviceTypes(IntEnum): 4 | NPN = 1 5 | PNP = 2 6 | Diode = 3 7 | -------------------------------------------------------------------------------- /forms/icons/IV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/forms/icons/IV.png -------------------------------------------------------------------------------- /forms/icons/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/forms/icons/dark.png -------------------------------------------------------------------------------- /forms/icons/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/forms/icons/light.png -------------------------------------------------------------------------------- /forms/main.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 563 10 | 624 11 | 12 | 13 | 14 | Rodriquez 15 | 16 | 17 | 18 | :/icons/icons/Rodriguez.png:/icons/icons/Rodriguez.png 19 | 20 | 21 | false 22 | 23 | 24 | 25 | 26 | 27 | 28 | QLayout::SetNoConstraint 29 | 30 | 31 | 32 | 33 | 34 | 0 35 | 0 36 | 37 | 38 | 39 | 40 | 0 41 | 0 42 | 43 | 44 | 45 | 46 | 47 | 48 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop 49 | 50 | 51 | 52 | 53 | 54 | 55 | 0 56 | 0 57 | 58 | 59 | 60 | <html><head/><body><p>Device name:</p></body></html> 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 0 69 | 0 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 0 79 | 0 80 | 81 | 82 | 83 | Number of traces: 84 | 85 | 86 | 87 | 88 | 89 | 90 | 2 91 | 92 | 93 | 20 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 0 102 | 0 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | Run 111 | 112 | 113 | 114 | 115 | 116 | 117 | Stop 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | :/icons/forms/icons/dark.png:/icons/forms/icons/dark.png 131 | 132 | 133 | 134 | 20 135 | 20 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | :/icons/forms/icons/light.png:/icons/forms/icons/light.png 148 | 149 | 150 | 151 | 20 152 | 20 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | Qt::Vertical 163 | 164 | 165 | 166 | 20 167 | 40 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | Current (mA): 176 | 177 | 178 | 179 | 180 | 181 | 182 | 0 183 | 184 | 185 | 186 | 187 | 188 | 189 | Voltage (V): 190 | 191 | 192 | 193 | 194 | 195 | 196 | 0 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 0 205 | 0 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | V_ref 216 | 217 | 218 | 219 | 220 | 221 | 222 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 223 | 224 | 225 | 1.000000000000000 226 | 227 | 228 | 10.000000000000000 229 | 230 | 231 | 0.010000000000000 232 | 233 | 234 | 5.000000000000000 235 | 236 | 237 | 238 | 239 | 240 | 241 | R_base 242 | 243 | 244 | 245 | 246 | 247 | 248 | R_collector 249 | 250 | 251 | 252 | 253 | 254 | 255 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 256 | 257 | 258 | 100 259 | 260 | 261 | 100000 262 | 263 | 264 | 3300 265 | 266 | 267 | 268 | 269 | 270 | 271 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 272 | 273 | 274 | 100 275 | 276 | 277 | 100000 278 | 279 | 280 | 1000 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | PlotWidget 300 | QGraphicsView 301 |
pyqtgraph
302 |
303 |
304 | 305 | 306 | 307 | 308 |
309 | -------------------------------------------------------------------------------- /forms/mainWindow.py: -------------------------------------------------------------------------------- 1 | from forms.Ui_main import Ui_MainWindow 2 | from forms.deviceTypes import deviceTypes 3 | from forms.IVTracer import IVTracer 4 | from forms.IVTracer_Collector import IVTracer_Collector 5 | import serial 6 | import serial.tools.list_ports 7 | from PyQt5.QtWidgets import QMessageBox 8 | from PyQt5.QtCore import QThreadPool, QSettings 9 | from pyqtgraph import intColor, mkPen 10 | 11 | class mainWindow(Ui_MainWindow): 12 | def setupUi(self, MainWindow): 13 | super().setupUi(MainWindow) 14 | self.settings = QSettings() 15 | self.fillComboBoxes() 16 | self.connectButtonEvents() 17 | self.connectLineEditEvents() 18 | self.tracer = None 19 | self.threadpool = QThreadPool() 20 | self.show_Stopped() 21 | self.collector = IVTracer_Collector(deviceTypes.Diode, "") 22 | self.currentPlotNumber = -1 23 | self.plotterView.setBackground('k') 24 | self.plotterView.addLegend(offset = (-1, 1)) 25 | self.plotterView.getPlotItem().setLabel('left',"ICollector", units = "A") 26 | self.plotterView.getPlotItem().setLabel('bottom' , "VCollector", units = "V") 27 | self.plotterView.showGrid(x=True, y=True, alpha=1.0) 28 | self.plotterView.setMouseTracking(True) 29 | self.plotterView.scene().sigMouseMoved.connect(self.mouseMoved) 30 | self.loadSettings() 31 | 32 | def loadSettings(self): 33 | comport = self.settings.value('ComPort', type=str) 34 | itemIndex = self.comboBox_ComPort.findText(comport) 35 | if itemIndex>=0: 36 | self.comboBox_ComPort.setCurrentIndex(itemIndex) 37 | 38 | if self.settings.contains('R_base'): 39 | self.spinBox_R_base.setValue(self.settings.value('R_base', type=int)) 40 | if self.settings.contains('R_collector'): 41 | self.spinBox_R_collector.setValue(self.settings.value('R_collector', type=int)) 42 | if self.settings.contains('V_ref'): 43 | self.doubleSpinBox_V_ref.setValue(self.settings.value('V_ref', type=float)) 44 | 45 | 46 | def saveSettings(self): 47 | self.settings.setValue('ComPort', self.comboBox_ComPort.currentText()) 48 | self.settings.setValue('R_base', self.spinBox_R_base.value()) 49 | self.settings.setValue('R_collector', self.spinBox_R_collector.value()) 50 | self.settings.setValue('V_ref', self.doubleSpinBox_V_ref.value()) 51 | 52 | def mouseMoved(self,evt): 53 | pos = evt 54 | if self.plotterView.sceneBoundingRect().contains(pos): 55 | mousePoint = self.plotterView.plotItem.vb.mapSceneToView(pos) 56 | self.label_Voltage.setText ("{:10.3f}".format(mousePoint.x())) 57 | self.label_Current.setText ("{:10.3f}".format(mousePoint.y()*1000 )) 58 | 59 | def fillComboBoxes(self): 60 | i=0 61 | for deviceType in deviceTypes: 62 | self.comboBox_DeviceType.insertItem(i, deviceType.name, deviceType) 63 | i = i + 1 64 | 65 | self.fillComboBox_ComPort() 66 | 67 | def fillComboBox_ComPort(self): 68 | self.comboBox_ComPort.clear() 69 | self.comboBox_ComPort.addItems(self.getComportList()) 70 | 71 | def getComportList(self): 72 | available_ports = serial.tools.list_ports.comports() 73 | portnames = [] 74 | for port in available_ports: 75 | portnames.append(port[0]) 76 | 77 | return portnames 78 | 79 | def connectLineEditEvents(self): 80 | self.lineEditDeviceName.textChanged.connect(self.updatePlotTitle) 81 | 82 | def updatePlotTitle(self, text): 83 | self.plotterView.getPlotItem().setTitle(text) 84 | 85 | def connectButtonEvents(self): 86 | self.pushButtonRun.clicked.connect(self.on_ButtonRunClicked) 87 | self.pushButtonStop.clicked.connect(self.on_ButtonStopClicked) 88 | self.toolButtonDarkBackground.clicked.connect(self.on_toolButtonDarkBackgroundClicked) 89 | self.toolButtonLightBackground.clicked.connect(self.on_toolButtonLightBackgroundClicked) 90 | 91 | def on_toolButtonLightBackgroundClicked(self): 92 | self.plotterView.setBackground('w') 93 | 94 | def on_toolButtonDarkBackgroundClicked(self): 95 | self.plotterView.setBackground('k') 96 | 97 | def on_ButtonRunClicked(self): 98 | if not self.tracer is None: 99 | return 100 | self.saveSettings() 101 | self.currentPlotNumber = -1 102 | self.show_Running() 103 | self.plotterView.clear() 104 | self.plotterView.getPlotItem().legend.clear() 105 | self.collector = IVTracer_Collector(self.comboBox_DeviceType.currentData(), self.lineEditDeviceName.text()) 106 | if self.comboBox_DeviceType.currentData() == deviceTypes.Diode: 107 | self.plotterView.getPlotItem().setLabel('left',"I_forward", units = "A") 108 | self.plotterView.getPlotItem().setLabel('bottom' , "V_forward", units = "V") 109 | else: 110 | self.plotterView.getPlotItem().setLabel('left',"ICollector", units = "A") 111 | self.plotterView.getPlotItem().setLabel('bottom' , "VCollector", units = "V") 112 | 113 | self.tracer = IVTracer(self.comboBox_ComPort.currentText(), self.comboBox_DeviceType.currentData(), self.spinBoxTraceCount.value(), self.spinBox_R_base.value(), self.spinBox_R_collector.value(), self.doubleSpinBox_V_ref.value()) 114 | self.tracer.signals.Error.connect(self.on_TracerError) 115 | self.tracer.signals.Finished.connect(self.on_TracerFinished) 116 | self.tracer.signals.Value.connect(self.on_TracerValue) 117 | self.threadpool.start(self.tracer) 118 | 119 | def on_ButtonStopClicked(self): 120 | if not self.tracer is None: 121 | self.tracer.stop() 122 | 123 | def on_TracerFinished(self): 124 | self.tracer.signals.Error.disconnect() 125 | self.tracer.signals.Finished.disconnect() 126 | self.tracer.signals.Value.disconnect() 127 | self.tracer = None 128 | self.show_Stopped() 129 | 130 | def show_Running(self): 131 | self.pushButtonRun.setEnabled(False) 132 | self.comboBox_DeviceType.setEnabled(False) 133 | self.pushButtonStop.setEnabled(True) 134 | 135 | def show_Stopped(self): 136 | self.pushButtonRun.setEnabled(True) 137 | self.comboBox_DeviceType.setEnabled(True) 138 | self.pushButtonStop.setEnabled(False) 139 | 140 | def on_TracerError(self, errorMessage): 141 | QMessageBox.critical(self.centralWidget, 'IVTracer Error', errorMessage, QMessageBox.Ok, QMessageBox.Ok) 142 | 143 | def on_TracerValue(self, value, plotNumber): 144 | self.collector.updateTrace(value, plotNumber) 145 | self.updatePlot(plotNumber) 146 | 147 | def updatePlot(self, plotNumber): 148 | if not plotNumber == self.currentPlotNumber: 149 | color = intColor(plotNumber, hues=self.tracer.numberOfPlots +1, values=1, maxValue=255, minValue=150, maxHue=360, minHue=0, sat=255, alpha=255) 150 | if self.collector.deviceType == deviceTypes.Diode: 151 | self.traceplot = self.plotterView.plot([0], [0], pen=mkPen(color, width = 1)) 152 | else: 153 | self.traceplot = self.plotterView.plot([0], [0] , pen=mkPen(color, width = 1) , name = self.collector.getBaseCurrentForTrace(plotNumber)) 154 | self.currentPlotNumber = plotNumber 155 | 156 | self.traceplot.setData(self.collector.getPlotData(plotNumber)) 157 | 158 | -------------------------------------------------------------------------------- /forms/resources.qrc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /icons/Rodriguez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/icons/Rodriguez.png -------------------------------------------------------------------------------- /icons/Windows/Rodriguez.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/icons/Windows/Rodriguez.ico -------------------------------------------------------------------------------- /icons/mac/Rodriguez.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/icons/mac/Rodriguez.icns -------------------------------------------------------------------------------- /icons/mac/Rodriguez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JosephEoff/Rodriguez/e5e4d04ceeea63610823dd4c9de985cd7c560c0d/icons/mac/Rodriguez.png -------------------------------------------------------------------------------- /icons/mac/generate_icns.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | mkdir $1.iconset 4 | convert $1.png -resize 16x16 $1.iconset/icon_16x16.png 5 | #convert $1.png -resize 32x32 $1.iconset/icon_16x16@2x.png 6 | convert $1.png -resize 32x32 $1.iconset/icon_32x32.png 7 | #convert $1.png -resize 64x64 $1.iconset/icon_32x32@2x.png 8 | convert $1.png -resize 128x128 $1.iconset/icon_128x128.png 9 | #convert $1.png -resize 256x256 $1.iconset/icon_128x128@2x.png 10 | convert $1.png -resize 256x256 $1.iconset/icon_256x256.png 11 | #convert $1.png -resize 512x512 $1.iconset/icon_256x256@2x.png 12 | convert $1.png -resize 512x512 $1.iconset/icon_512x512.png 13 | cp $1.png $1.iconset/icon_1024x1024.png 14 | png2icns $1.icns $1.iconset/icon_*.png 15 | 16 | rm -R $1.iconset 17 | -------------------------------------------------------------------------------- /icons/source/IV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 47 | 49 | 50 | 52 | image/svg+xml 53 | 55 | 56 | 57 | 58 | 59 | 64 | 71 | 74 | 80 | 86 | 92 | 98 | 104 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.17.3 2 | pyqtgraph==0.11.0 3 | PyQt5==5.15.4 4 | pyserial==3.5 5 | pyinstaller 6 | -------------------------------------------------------------------------------- /rodriguez.py: -------------------------------------------------------------------------------- 1 | from PyQt5 import QtWidgets 2 | from PyQt5.QtCore import QCoreApplication 3 | from forms.mainWindow import mainWindow 4 | 5 | if __name__ == "__main__": 6 | QCoreApplication.setOrganizationName("JRE") 7 | QCoreApplication.setApplicationName("Rodriguez") 8 | QCoreApplication.setApplicationVersion('1.0.1') 9 | import sys 10 | app = QtWidgets.QApplication(sys.argv) 11 | MainWindow = QtWidgets.QMainWindow() 12 | ui = mainWindow() 13 | ui.setupUi(MainWindow) 14 | MainWindow.show() 15 | sys.exit(app.exec_()) 16 | --------------------------------------------------------------------------------