Navigation

    Welcome to the Pycom forum

    Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Tags
    3. pymakr
    Log in to post

    • T

      Bulk programming
      Software Tools • pymakr other • • Thomas Schaefer  

      3
      0
      Votes
      3
      Posts
      52
      Views

      R

      You can try this technology https://itmaster-soft.com/en/angular-development-services
    • P

      Pymakr install failing in Atom on MacOS
      Pymakr • pymakr atom installation macos • • paul_tanner  

      5
      0
      Votes
      5
      Posts
      30
      Views

      P

      @ahmadelmasri I solved this with a tip from the README. Python version was incompatible.
    • N

      Pymakr and VSCode 'sync_all_file_types' Configuration flag
      Software Tools • pymakr bug other enhancement • • nervencid  

      1
      0
      Votes
      1
      Posts
      24
      Views

      No one has replied

    • M

      Pymakr 1.1.0 Visual Studio Code issue
      Pymakr • pymakr issue • • Milan  

      3
      0
      Votes
      3
      Posts
      298
      Views

      M

      Solution from link that you send solved my issue. Thank you.
    • T

      pymakr is gone
      Pymakr • pymakr pycom vscode pycom console • • tttadam  

      4
      1
      Votes
      4
      Posts
      388
      Views

      M

      It's worth mentioning that you should turn off "Extensions: Auto Update" or it'll automatically put 1.1.0 back! This is also probably why it suddenly happened in the first place. I had to to restart VS Code once I changed this setting too, as it still auto updated a couple of times for me, before I did. (Preferences > Settings > Features > Extension Viewlet > Auto Update (can also search for auto update to get to this)
    • Ralph

      PyMakr 2.0 for Atom Plans: Feedback wanted [video]
      Beta Announcements & Development News • pymakr atom video • • Ralph  

      11
      1
      Votes
      11
      Posts
      1073
      Views

      S

      Thanks for this information. It is useful
    • J

      OSerror with rgbled
      Comments & Feedback • lopy pymakr oserror rgbled • • johnmcdnz  

      3
      0
      Votes
      3
      Posts
      489
      Views

      S

      import time time.sleep(2) import pycom pycom.heartbeat(False) print('main MAC1') print('LED test') print (0xffffff) pycom.rgbled(0x0) Try this code. This should run perfectly fine.
    • S

      VS Code Pymakr - The terminal process command failed to launch
      Pymakr • pymakr vscode vscode pymakr • • SmokeySpace  

      5
      0
      Votes
      5
      Posts
      771
      Views

      S

      @smokeyspace No problem at all :)
    • M

      Pymakr/VScode sync problems
      Software Tools • pymakr bug • • Martinnn  

      13
      0
      Votes
      13
      Posts
      1204
      Views

      Ralph

      @martinnn Found the issue with your firmware updater. If you would want to update to a dev version, you need to download the development version of the firmware updater (here). They will release it as stable soon, but not until then, use this dev version.
    • M

      Pymakr not working with VSCode 1.31
      Software Tools • pymakr bug • • Martinnn  

      7
      0
      Votes
      7
      Posts
      674
      Views

      Ralph

      @jpaul Good to hear. Our tutorials don't cover auto-connect very well yet, we'll work on that!
    • C

      VS Code COM port setting ignored
      Software Tools • pymakr bug • • ChangedDaily  

      11
      0
      Votes
      11
      Posts
      1396
      Views

      C

      I also could not connect to my board and solved the problem as follows: If your PC has Bluetooth, have you ever tried to turn off Bluetooth? On my PC, Bluetooth uses COM3. Pymark always tried to connect to COM3. After I turned off Bluetooth, I was able to connect to my Pycom board without any problems. Once a connection to the board has been established, the board can also reconnect successfully with Bluetooth turned on. I hope this information helps. (: In my case COM3 is used by Bluetooth and Pymark tries to connect to COM3. In this menu you can disable Bluetooth Connection to the board has been established successfully:
    • N

      Problems with the files names "boot" and "main" and rebooting device
      FiPy • fipy pymakr boot.py main.py reboot problem • • nervencid  

      3
      0
      Votes
      3
      Posts
      372
      Views

      robert-hh

      @nervencid You can use any name for your scripts. Only boot.py and main.py are executed as part of the boot process. If you want to run your script then, you have to add a statement like: import myscript e.g. to main.py. You should be able to stop your script with Ctr-C from the console, unless you disable that in your code. To isolate the problems, try running your code with a simple terminal like Putty. Note: You can change the name of the file which is run instead of main.py with machine.main(). The only useful place for that command is in boot.py.
    • N

      Problems with Pymakr in VS code
      Software Tools • pymakr bug other • • nervencid  

      9
      0
      Votes
      9
      Posts
      1230
      Views

      Ralph

      @nervencid With autoconnect to false, it indeed tries to connect to the address 192.168.4.1, so the output you posted is as expected. To connect you can either: connect to the devices wifi and klik connect again, or: change the auto_connect setting to true, or: set the address setting to the correct comport (you can find it using the 'list serialports' command)
    • Ralph

      Pymakr Atom release v1.4.9 - Upload using zlib compression
      Announcements & News • pymakr atom • • Ralph  

      7
      1
      Votes
      7
      Posts
      1241
      Views

      Ralph

      @protean Pymakr is indeed using the zlib.decompress() micropython function for this feature. Normal upload also still works of course, but this way is faster for large files. Let me give you some pointers on how to code it: The zlib function on the micropython side is documented here. Pymakr is compressing the files before uploading (here using this python file), writing the compressed file to the board with os.write() like always, and then decompressing them right after that (here). It'll definitely make uploading bigger files faster. Just realise that for files under 4k, it's actually slower because the overhead of compressing/decompressing is bigger than the savings of compressing the file.
    • W

      PyTrack not working with Processing
      Getting Started • pytrack pymakr error • • wuihee  

      3
      0
      Votes
      3
      Posts
      396
      Views

      W

      @paul-thornton Ok thanks for the reply!
    • K

      What's with Atom pymakr & library files?
      Software Tools • pymakr bug • • kjm  

      2
      0
      Votes
      2
      Posts
      553
      Views

      P

      when you click run just the single file your editing it sent to the board its literally as if you typed each line into the Repl. this is fine if its just your main.py script. but when libs need updating they dont get sent as you have discovered. The reason for the reset being required is to force micropython to reload its previously loaded and cached copies of libraries There are work arounds for hot reloading code, but its way easier to just reset the board during development
    • M

      LO1 OEM struggles to upload data via Pymakr or ampy.
      LoPy • lopy bugs pymakr oem • • miro_bli  

      2
      0
      Votes
      2
      Posts
      434
      Views

      D

      In my opinion RESET pin should not be left floating. Try to connect pull-up resistor to 3.3V in 10k-20k range. Check L01 OEM Baseboard schematic: https://docs.pycom.io/product-info-datasheets/oem/l01_reference Edit: Sorry, now I noticed the reset pull-up already being in your schematic. Anyway try to use FTP client for script uploading.
    • T

      pymakr/vscode on raspberry pi
      Pymakr • pymakr raspberry pi vscode • • theshade  

      9
      0
      Votes
      9
      Posts
      1740
      Views

      Ralph

      Good to hear you sorted that out @theshade! If I have time I might fix Pymakr to look in that folder on a raspi, although I think there are not many people running this setup. (ps Pymakr is open source, so if you want to do that yourself with a pull request, feel free)
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 1 / 7