Navigation

    Welcome to the Pycom forum

    Forum

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

    • J

      FiPy: upload failed (using Pymakr on VSCode)
      FiPy • fipy pymakr micropython vscode vscode pymakr • • Julia Steiwer  

      3
      0
      Votes
      3
      Posts
      26
      Views

      robert-hh

      @Julia-Steiwer As you should have noticed, Pycom Inc ceased it's operation, and there is no service any more for Pycom products, be it hardware or software like Pymakr. The latter should still work with the older VSCode versions. So if you want to use PyMakr, you have to stick with an working combo of an older VSCode version and PyMakr.
    • G

      pymakr will not update in atom 1.60.0 on Ubuntu 20.04
      Issues & Bugs • pymakr atom linux npm • • g0hww  

      10
      0
      Votes
      10
      Posts
      31
      Views

      G

      @Jakob-Rosenberg-0 Good news. Given the content of the EOL announcement email sent out recently, specifically the focus on the platform as a service I did begin to wonder whether the Pymakr plugin would continue to be maintained. I really hope it is. I have no desire to switch to using Pybytes whatsoever.
    • Jakob Rosenberg 0

      Pymakr 2 for Visual Studio Code
      Announcements & News • pymakr micropython vscode vsc • • Jakob Rosenberg 0  

      1
      2
      Votes
      1
      Posts
      64
      Views

      No one has replied

    • 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
      31
      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  

      2
      0
      Votes
      2
      Posts
      44
      Views

      C

      @nervencid said in Pymakr and VSCode 'sync_all_file_types' Configuration flag: Hello to all: I'm using VSCode with PyMakr, for upload NO .py files to flash memory, the folders are created fine However the files (extension .pem) are not uploaded. I find the 'sync_file_types' flag into 'settings.mddordle' file and i set it in true but doesn't have any effect (how can i setup this on VSCode?). In atom i switch this option to true in options panel and the files seems to be uploaded to the board properly. Can PyMakr extension of The VSCode work like atom one? Thank you and sorry for the English Where do I configure this in VSCode? I found the'sync file types' value in the'settings.md' file and set it to true, but nothing changed. After setting this preference to true in Atom's settings window, the files were successfully uploaded. Is the VSCode PyMakr add-on compatible with atom?
    • 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
      1074
      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
      512
      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
      783
      Views

      S

      @smokeyspace No problem at all :)
    • M

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

      13
      0
      Votes
      13
      Posts
      1239
      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
      675
      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
      1402
      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
      373
      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
      1238
      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
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 1 / 8