1
0
mirror of https://github.com/jonathanhogg/scopething synced 2025-07-14 03:02:09 +01:00

Some outstanding tweaks; fix to using arbitrary waveform; support for serial comms on Windows

This commit is contained in:
2018-09-05 15:49:22 +01:00
parent 00df1d7639
commit caacfe37fc
4 changed files with 91 additions and 48 deletions

8
utils.py Normal file
View File

@ -0,0 +1,8 @@
class DotDict(dict):
__getattr__ = dict.__getitem__
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__