Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
28 views2 pages

Errores Arduino I2c

This error traceback indicates that an input/output error occurred when a Flask application attempted to write a byte to an I2C bus at a specific address. The error originated from a file called app_estatus_0x08.py on line 78 during the execution of a function called action that was trying to write a byte to the bus.

Uploaded by

Carlos Herrera
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views2 pages

Errores Arduino I2c

This error traceback indicates that an input/output error occurred when a Flask application attempted to write a byte to an I2C bus at a specific address. The error originated from a file called app_estatus_0x08.py on line 78 during the execution of a function called action that was trying to write a byte to the bus.

Uploaded by

Carlos Herrera
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

builtins.

OSError
OSError: [Errno 5] Input/output error

Traceback (most recent call last)


 File "/usr/lib/python3/dist-packages/flask/app.py", line 1997, in __call__

return self.wsgi_app(environ, start_response)

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1985, in wsgi_app

response = self.handle_exception(e)

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1540, in handle_exception

reraise(exc_type, exc_value, tb)

 File "/usr/lib/python3/dist-packages/flask/_compat.py", line 33, in reraise

raise value

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1982, in wsgi_app

response = self.full_dispatch_request()

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1614, in


full_dispatch_request

rv = self.handle_user_exception(e)

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1517, in


handle_user_exception

reraise(exc_type, exc_value, tb)

 File "/usr/lib/python3/dist-packages/flask/_compat.py", line 33, in reraise

raise value

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1612, in


full_dispatch_request

rv = self.dispatch_request()

 File "/usr/lib/python3/dist-packages/flask/app.py", line 1598, in dispatch_request


return self.view_functions[rule.endpoint](**req.view_args)

 File "/home/pi/ToFlask/app_estatus_0x08.py", line 78, in action

bus.write_byte(address, peticEstaP2)
OSError: [Errno 5] Input/output error
The debugger caught an exception in your WSGI application. You can now look at the traceback
which led to the error.

To switch between the interactive traceback and the plaintext one, you can click on the
"Traceback" headline. From the text traceback you can also create a paste of it. For code
execution mouse-over the frame you want to debug and click on the console icon on the right
side.

You can execute arbitrary Python code in the stack frames and there are some extra helpers
available for introspection:

 dump() shows all variables in the frame


 dump(obj) dumps all that's known about the object

Brought to you by DON'T PANIC, your friendly Werkzeug powered traceback interpreter.

You might also like