Git Product home page Git Product logo

Comments (1)

mikewadsten avatar mikewadsten commented on August 20, 2024

I think I found the cause. RXIPv4Packets.create_packet takes raw, unescapes it into _raw, but then reads every field except for the data out of raw (i.e. the escaped data).

After correcting this, I then got the following exception (note that line numbers may not match the master version identically, I added some print calls to my code):

Traceback (most recent call last):
  File "/home/mike/.envs/env/src/digi-xbee/digi/xbee/reader.py", line 325, in run
    self.__execute_user_callbacks(read_packet, remote)
  File "/home/mike/.envs/env/src/digi-xbee/digi/xbee/reader.py", line 610, in __execute_user_callbacks
    print(xbee_packet)
  File "/home/mike/.envs/env/src/digi-xbee/digi/xbee/packets/base.py", line 120, in __str__
    return str(self.to_dict())
  File "/home/mike/.envs/env/src/digi-xbee/digi/xbee/packets/base.py", line 161, in to_dict
    DictKeys.FRAME_SPEC_DATA: self._get_frame_spec_data_dict(),
  File "/home/mike/.envs/env/src/digi-xbee/digi/xbee/packets/base.py", line 333, in _get_frame_spec_data_dict
    DictKeys.API_DATA:   self._get_api_packet_spec_data_dict()}
  File "/home/mike/.envs/env/src/digi-xbee/digi/xbee/packets/network.py", line 246, in _get_api_packet_spec_data_dict
    DictKeys.DATA:          bytearray(self.__data)}
  File "/home/mike/.envs/env/lib/python3.6/enum.py", line 324, in __getattr__
    raise AttributeError(name) from None
AttributeError: DATA

which is because there is no DATA item in DictKeys. There is, however, RF_DATA.

I will submit a pull request with these fixes.

from xbee-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.