Navigation

    Welcome to the Pycom forum

    Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Recent

    Explore Pybytes | Official Documentation | Report a Firmware Bug/Issue | GitHub

    Log in to post
    • All categories
    • Announcements & News
    •      Beta Announcements & Development News
    •      Announcements only for members
    • Helium Hotspot
    •      Support
    • Pylife
    • Pybytes IoT platform
    •      Announcements & News
    •      Ideas
    •      Support & Troubleshooting
    • Getting Started
    •      Discussion
    •      WiPy 2&3
    •      LoPy
    •      SiPy
    •      GPy
    •      FiPy
    •      Pymakr
    •      Pymate
    •      Expansion Board
    •      MicroPython
    • Tutorials
    •      Projects
    •      Guides
    • Firmware
    •      Discussion
    •      Enhancements
    •      Issues & Bugs
    • Wireless Technologies
    •      WiFi
    •      Bluetooth
    •      LoRa
    •      Sigfox
    •      Cellular
    • Software Tools
    •      Discussion
    •      Enhancements
    •      Issues & Bugs
    • Events
    • Comments & Feedback
    • Jobs at Pycom
    • PyGo
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • X

      Moving onwards! Next stage for Pycom
      Announcements & News • • Xykon  

      1
      0
      Votes
      1
      Posts
      33
      Views

      No one has replied

    • X

      Introducing our latest F1 Smart Module
      Announcements & News • • Xykon  

      2
      0
      Votes
      2
      Posts
      17
      Views

      robert-hh

      @Xykon Good to see a sign of life from the team, however it is called now.
    • A

      no signal found in pybytes
      Pybytes IoT platform • • Akshaya Korrapati  

      2
      0
      Votes
      2
      Posts
      10
      Views

      robert-hh

      @Akshaya-Korrapati Pycom Inc went bankrupt about two years ago. There is no one left for support or further development. Only some servers are still online, whoever pays for power and Internet access.
    • P

      New Release Candidate 1.20.2.rc11 for Pygate
      Beta Announcements & Development News • • peterp  

      23
      3
      Votes
      23
      Posts
      326
      Views

      robert-hh

      @mikestanley464 Pycom Ltd. ceased operation. There will not be a reply.
    • T

      pygos and pylife.
      Discussion • • theshade  

      2
      0
      Votes
      2
      Posts
      20
      Views

      robert-hh

      @theshade Pycom INC is closed. And whoever purchased the assets did not buy the debts or responsibilities. Personally I'm upset that not even the technical documentation of their boards was published as a small feedback for the community.
    • S

      Pygo2 LTE modem disconnected
      PyGo • • SevenW  

      1
      0
      Votes
      1
      Posts
      17
      Views

      No one has replied

    • S

      Can connect in REPL but not with main.py
      WiPy 2&3 • • SciWax  

      17
      0
      Votes
      17
      Posts
      24
      Views

      S

      @robert-hh okay, makes sense regarding the documentation. thanks for the information
    • H

      Buy discontinued Pycom FiPy or gPy
      Discussion • • Herbert Weitensfelder 0  

      2
      0
      Votes
      2
      Posts
      24
      Views

      D

      Hi Herbert, I think it will be hard to find new old stock, maybe you can find someone on the forum. Meanwhile maybe Walter can help you, it is fully compatible with the GPy both on a software and hardware standpoint of view. https://www.crowdsupply.com/dptechnics/walter Kind regards, Daan
    • N

      Best Audio Books for beginners?
      Discussion • • NuzakFarnas  

      10
      0
      Votes
      10
      Posts
      233
      Views

      T

      I think it is better for you to learn Python by watching the relevant tutorial videos.
    • K

      "Error connecting Helium Hotspot Miner with application"
      Helium Hotspot • • Kanar Al Sammak  

      1
      0
      Votes
      1
      Posts
      20
      Views

      No one has replied

    • K

      Such a newb...
      MicroPython • • Kurt switzer  

      3
      -1
      Votes
      3
      Posts
      327
      Views

      K

      @robert-hh maybe wrong forum. I couldn't figure out the Github system and found this forum instead. Thanks for the tip on the USB cable. Hope it's that simple. .
    • K

      [Pymakr] Failed to run command: uploadProject.
      Pymakr • • Kalle Misto  

      2
      0
      Votes
      2
      Posts
      11
      Views

      robert-hh

      @Kalle-Misto Pymakr is not supported any more. It might help to fall back to a previous version of Vscode and keep it.
    • Z

      Configuring user access and security settings in QlikView Server
      Discussion • • zach tyson  

      1
      0
      Votes
      1
      Posts
      9
      Views

      No one has replied

    • T

      Compression lib
      LoPy • library compression • • this.wiederkehr  

      5
      1
      Votes
      5
      Posts
      1606
      Views

      S

      I am facing a challenge when attempting to decompress data compressed using the miniz library on the ESP32 platform. My objective is to compress data using miniz library in flasher_stub compoment of esp-idf and then decompress the data on the cloud side using some python script that can be compatible with miniz decompression style like zlib. As per the documentation and information available, the miniz library is described as a "lossless, high-performance data compression library" that implements the zlib (RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. However, I am encountering difficulties when attempting to decompress the compressed data using Python. Specifically, when using the Python zlib module, which should be compatible with the zlib and Deflate formats, I am receiving an "unknown compression method" error. I have verified that the file and data are correct, and they were compressed using the miniz library on the ESP32. Despite this, I am unable to successfully decompress the data. I would greatly appreciate any help or any insights that you can provide regarding how to properly decompress data that has been compressed with the miniz library using Python.
    • K

      Python clumsy
      MicroPython • • kjm  

      2
      0
      Votes
      2
      Posts
      24
      Views

      J

      Hi, You can indeed achieve this without saving it as an intermediate file using io.BytesIO. Here's how you can do it: import uzlib # Assuming you have the uzlib library for MicroPython # Assuming 'hexstr' contains your compressed data # You may need to convert 'hexstr' to bytes if it's currently a string # Create a BytesIO object to work with in-memory data from io import BytesIO hexstr_bytes = bytes.fromhex(hexstr) # Convert 'hexstr' to bytes hexstr_io = BytesIO(hexstr_bytes) # Decompress the data decompressed_bytes = uzlib.decomp(hexstr_io, 31) # Now, you can write the decompressed data to 'main.py' in the flash with open('main.py', 'wb') as f: f.write(decompressed_bytes) In this code, you can use BytesIO to create an in-memory buffer and then decompress the data from hexstr directly into that buffer. After decompression, you can write the decompressed data to 'main.py' without the need for an intermediate 'gzip.py' file. Resource- https://pypi.org/project/Clumsy/ Thanks
    • M

      Sipy -> Sigfox -> AWS
      SiPy • sipy aws amazon • • maku  

      8
      0
      Votes
      8
      Posts
      2491
      Views

      M

      @matt3526 DID anyone figure this out?
    • Don-iot

      So GPy is phase-out now what?
      GPy • • Don-iot  

      8
      2
      Votes
      8
      Posts
      127
      Views

      D

      Hi, Just for reference, our GPy replacement Walter is going live on Crowd Supply very soon. We already tested with some beta testers and you can read the review in this topic: https://forum.pycom.io/topic/7748/the-future-of-pycom/32 For everybody interested, this is the Crowd Supply link: https://www.crowdsupply.com/dptechnics/walter
    • X

      The future of Pycom
      Announcements & News • • Xykon  

      34
      8
      Votes
      34
      Posts
      608
      Views

      S

      @DEFRAINE-JM any further updates on what's happening with Pycom apart from Season Group buying the assets?
    • T

      Repeatable Guru meditation error at end of thread
      Discussion • • troy salt  

      3
      0
      Votes
      3
      Posts
      30
      Views

      A

      Hello, Did you find a solution because I have exactly the same problem and I don't know what to do...
    • N

      HTTP requests, Do Pycom boards/micropython support urequests and if yes could you guide on how to implement this ?
      MicroPython • • nakulms  

      1
      0
      Votes
      1
      Posts
      10
      Views

      No one has replied

    • 1
    • 2
    • 3
    • 4
    • 5
    • 9
    • 10
    • 1 / 10