Pyscan - demo nfc [SOLVED]
-
Hi,
I've just downloaded the github project for nfc.
But when it start it says it cannot import pyscan.from lib.pyscan import Pyscan
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "lib/pyscan.py", line 15, in <module>
TypeError: cannot create 'module' instancesthis is the project folder (I've added the __init file but no effects):
├── boot.py
├── lib
│ ├── init.py
│ ├── LIS2HH12.py
│ ├── LTR329ALS01.py
│ ├── MFRC630.mpy
│ └── pyscan.py
├── main.py
├── nfc.py
├── pycoproc
│ └── pycoproc.pyAny advice?
-
SOLVED
Wrong file position for pycoproc.py.
It should be in lib with pyscan
-
Thanks for reply, no success:
from pyscan import Pyscan
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name Pyscanimport os
os.listdir()
['main.py', 'sys', 'lib', 'cert', 'boot.py', 'pycoproc', 'init.py', 'project.pymakr', 'nfc.py', 'pybytes_config.json']
-