Navigation

    Welcome to the Pycom forum

    Forum

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

    • Ralph

      Pymakr Atom Plugin released
      Announcements & News • pymakr atom plugin • • Ralph  

      91
      4
      Votes
      91
      Posts
      63121
      Views

      D

      @ralph I've created the issue. https://github.com/pycom/pymakr-atom/issues/46
    • L

      After two hours, Pymakr is still not working... no module named urllib2
      Discussion • pymakr error installation • • LucD  

      3
      0
      Votes
      3
      Posts
      1350
      Views

      RobTuDelft

      If you are looking for simple REPL through telnet I can recommend you to check out my Python script: link Easiest way to get started :) If you want to write scripts for your device, like main.py (a.k.a. modules) then you can do so in your favorite code editor and upload through ftp.
    • J

      COMMUNICATION BY RS232
      SiPy • pymakr sipy uart • • julian cifuentes  

      2
      0
      Votes
      2
      Posts
      1156
      Views

      livius

      @julian-cifuentes look here it is simple https://docs.pycom.io/pycom_esp32/library/machine.UART.html and connect RX and TX to pins like in datasheet https://docs.pycom.io/pycom_esp32/pycom_esp32/datasheets.html RX to TX TX to RX and GND
    • Innocenzo

      Problem with PyMakr and Doxygen Syntax
      Enhancements • pymakr doxygen • • Innocenzo  

      3
      0
      Votes
      3
      Posts
      1364
      Views

      Innocenzo

      @livius Ok good news. Thanks a lot.
    • soren

      attributeError exception?
      Issues & Bugs • pymakr exception attributeerror • • soren  

      1
      0
      Votes
      1
      Posts
      829
      Views

      No one has replied

    • M

      MAC OSX Sierra - Pymakr not starting
      Discussion • pymakr mac osx sierra • • markl  

      6
      0
      Votes
      6
      Posts
      130
      Views

      M

      @jmarcelino Thanks Will check Homebrew info you provided out. Worked out of box on a Linux box that one of the dev's uses and he owns that project for now so the heat is off for a while ;)
    • W

      Allways connection lost - pymakr
      LoPy • pymakr lopy connection • • wolf  

      7
      0
      Votes
      7
      Posts
      1901
      Views

      robert-hh

      I never used tools other than ftp and telnet for WiPy and Lopy. Pymakr was unreliable from the first version on and never improved. When you use FileZilla of FireFtp as ftp client, you can set it up that a double click on the will will open it for editing in our favorite editor and saving stores it back to your device. You can also configure at least FireFTP for auto-conect. Obviously that causes some flash wearing, in contrast to PyMakr's method to keep files on your PC and load them on-the-fly. If you prefer that method, you can also try Dave Hyland's rshell (https://github.com/dhylands/rshell).
    • J

      EXPORT CODE FROM ARDUINO TO PYMAKR
      Pymakr • pymakr sipy micropython • • julian cifuentes  

      5
      0
      Votes
      5
      Posts
      2912
      Views

      C

      Take a look to an arduino like wrapper for pycom at https://github.com/dinosd/pyCom/blob/master/examples/arduino_sample.py import arduino estado = 0 estado2 = 0 cont = 0 A = 10 B = 11 C = 12 D = 13 E = 14 def setup(): arduino.pinMode(15, "ANALOG_INPUT") #PIN P15, there is no mode analog input in arduino but pycom needs it arduino.pinMode(8, "INPUT") # modes are "INPUT","OUTPUT","INPUT_PULLUP","INPUT_PULLDOWN","ANALOG_INPUT" arduino.pinMode(7, "INPUT") arduino.pinMode(A, "OUTPUT") arduino.pinMode(B, "OUTPUT") arduino.pinMode(C, "OUTPUT") arduino.pinMode(D, "OUTPUT") arduino.pinMode(E, "OUTPUT") def loop(): global estado, estado2, cont value = arduino.analogRead(13) millivolts = 1100 * value / 1.1 #max volts for analog in is 1.1V db = millivolts / 10 print(db, "DB") estado2 = arduino.digitalRead(8) if estado2: #this means high or you can write if estado2==1 estado = arduino.digitalRead(7) if estado: arduino.delay(500) cont += 1 if cont==1: arduino.digitalWrite(A, 1) arduino.digitalWrite(B, 1) arduino.digitalWrite(C, 1) arduino.digitalWrite(D, 1) arduino.digitalWrite(E, 1) setup() while True: loop()
    • C

      Pymakr issues when installed in Debian Wheezy
      Issues & Bugs • pymakr • • ColombianAus  

      1
      0
      Votes
      1
      Posts
      722
      Views

      No one has replied

    • M

      Losing connection with the WiPy
      Pymakr • pymakr wipy 1 • • michalt38  

      7
      0
      Votes
      7
      Posts
      2148
      Views

      M

      I've updated the firmware but it did not help
    • J

      Starting PyMakr
      Pymakr • pymakr • • joem  

      4
      0
      Votes
      4
      Posts
      2000
      Views

      J

      @mmarkvoort Thanks for the help. I never knew about C:\ProgramData\Microsoft\Windows\Start Menu\Programs I found the entry and copied it to the desktop. It works fine. It never appeared in the visible start menu, but then Windows has a certain "whimsical" aspect to it operation :) joe
    • SakshamaGhoslya

      Changing Frequency region after upgrade
      Discussion • lopy firmware pymakr update update tool • • SakshamaGhoslya  

      22
      0
      Votes
      22
      Posts
      9242
      Views

      X

      @dhruv I have changed your device from 868MHz to 915MHz. Please re-run the firmware update tool to flash the new region.
    • M

      Pymakr starts but generates errors on each user action - Mac OS X
      Issues & Bugs • lopy pymakr • • Mike K  

      7
      0
      Votes
      7
      Posts
      2019
      Views

      livius

      @fos no its not it is discontinued only future plugin https://forum.pycom.io/topic/635/pymakr-time-of-death-09-02
    • S

      DSB1820 Onewire sensor on SiPy
      SiPy • pymakr sipy onewire ds18b20 • • sk  

      18
      0
      Votes
      18
      Posts
      5269
      Views

      livius

      @sk Is this what you downloaded from board or what you have on the computer? Previously (for me still - however less than before) there are some corruption of files stored on the board. try something like this f = open('onewire.py', 'r+') d = f.readall() print(d) do you see some corruption in content? Try also downloading file throught ftp - is this file same as your on the computer?
    • S

      Loading programs onto SiPy [SOLVED]
      Pymakr • pymakr • • sk  

      2
      0
      Votes
      2
      Posts
      1159
      Views

      S

      Ok I've realised that to sync I need to press the reset button on the board before clicking sync. But why is the question....
    • bucknall

      Pymakr... Time of Death : 09/02... ;-)
      Announcements & News • pymakr plugin community dev rel • • bucknall  

      68
      7
      Votes
      68
      Posts
      43555
      Views

      bmarkus

      @bmarkus After removing all files and directories left over by ATOM uninstall on WIN10 and reinstalled it works and at first time at least for me upload and download also works. It's the time to restart using LoPy.
    • H

      Pymakr to be used under openSuse
      Pymakr • pymakr installation opensuse • • hjoe  

      2
      0
      Votes
      2
      Posts
      1080
      Views

      H

      I tried to install the missing things manually, see what happens when calling $ pymakr Python 2.7.12 libpng warning: iCCP: known incorrect sRGB profile Warning: translation file 'eric6_de_DE'could not be loaded. Using default. BackgroundService listening on: 36250 Traceback (most recent call last): File "/usr/share/pymakr/modules/Utilities/BackgroundClient.py", line 193, in <module> backgroundClient.run() File "/usr/share/pymakr/modules/Utilities/BackgroundClient.py", line 178, in run 'EXCEPTION', '?', [str(exctype), str(excval), tbinfo]) File "/usr/share/pymakr/modules/Utilities/BackgroundClient.py", line 81, in __send self.connection.sendall(header) File "/usr/lib64/python2.7/socket.py", line 228, in meth return getattr(self._sock,name)(*args) socket.error: [Errno 32] Broken pipe
    • P

      Unable to resize bottom panel (Pycom Console, Local Console etc.) in PyMakr 1.0.0.b5-1
      MicroPython • pymakr bug gui • • peter  

      2
      0
      Votes
      2
      Posts
      1117
      Views

      abilio

      @peter Thanks for your detailed report, we had heard about it before, but there was no description on how to reproduce the issue. We'll add this to our list of bugfixes for the next release.
    • P

      Error when using REPL in PyMakr 1.0.0.b5-1 and hitting backspace
      MicroPython • pymakr bug repl • • peter  

      2
      0
      Votes
      2
      Posts
      1188
      Views

      abilio

      @peter Thanks a lot for your detailed bug report. We will try to reproduce it, and fix it for the next release.
    • P

      PyMakr 1.0.0.b5-1 can't set editor fonts under Kubuntu 16.04
      Pymakr • lopy pymakr gui editor • • peter  

      6
      0
      Votes
      6
      Posts
      2188
      Views

      D

      I don't get why releasing versions known to be buggy ... seriously guys, you made a realy astonishing job with your boards, but software is not at the same level.
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 7 / 8