Navigation

    Welcome to the Pycom forum

    Forum

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

    • B

      Updating firmware for V1.0 board
      WiPy 2&3 • firmware update wipy 1 • • Bryan  

      2
      0
      Votes
      2
      Posts
      997
      Views

      robert-hh

      @Bryan Hello Bryan, you also asked on the micropython.org board, which is the right forum for your problem. I placed an answer there, which may fix your issue.
    • K

      Wipy 1 with WEP secured WiFi?
      WiPy 2&3 • wifi wlan network wipy 1 • • KMcLoud  

      1
      0
      Votes
      1
      Posts
      950
      Views

      No one has replied

    • J

      Expansion board 1.0 layout
      WiPy 2&3 • expansionboard wipy 1 • • johnmcdnz  

      1
      0
      Votes
      1
      Posts
      872
      Views

      No one has replied

    • M

      Socket connect address
      WiPy 2&3 • wipy wifi socket wipy 1 • • michalt38  

      9
      0
      Votes
      9
      Posts
      4198
      Views

      robert-hh

      @michalt38 OK. Then you'll need two steps: First, you have to connect the WiPy to the network. That's done with wlan.connect, as given in my sample scripts. Second: you have to write a little program for you WiPy and your PC that connects through sockets and sends the data. The IP adresses used are those of the WiPy and the PC, not the one of the router. You have to define which entity connects (socket.connect() ) and which entity accepts (socket.accept()). For initial testing, you can use for the PC side netcat (nc), which is a simple raw socket send/receive program. Examples for the WIPy side are here: https://docs.python.org/3/howto/sockets.html or here: https://www.tutorialspoint.com/python3/python_networking.htm
    • K

      connecting to unsecured WiFi
      WiPy 2&3 • wipy wifi wipy 1 • • KMcLoud  

      3
      0
      Votes
      3
      Posts
      1276
      Views

      bucknall

      Hi @KMcLoud - I'm just having a look into this for you! I'll get the docs updated to reflect this as you're right, this isn't very clear!
    • M

      Sending data via WiFi
      WiPy 2&3 • wipy wifi wipy 1 • • michalt38  

      2
      0
      Votes
      2
      Posts
      1633
      Views

      livius

      @michalt38 first you must connect to wifi https://docs.pycom.io/pycom_esp32/pycom_esp32/tutorial/includes/wlan.html then you must create socket and send data https://docs.pycom.io/pycom_esp32/library/usocket.html and then use send
    • M

      Timer and UART confugration
      WiPy 2&3 • wipy time wipy 1 uart0 • • michalt38  

      9
      0
      Votes
      9
      Posts
      2773
      Views

      M

      @robert-hh Thanks a lot! :)
    • M

      WiFi authentication
      WiPy 2&3 • wipy wifi wipy 1 • • michalt38  

      7
      0
      Votes
      7
      Posts
      2511
      Views

      Innocenzo

      @jmarcelino Thx a lot
    • M

      Wifi and CA certificate
      WiPy 2&3 • wipy wifi wipy 1 • • michalt38  

      2
      0
      Votes
      2
      Posts
      1170
      Views

      michal.zykov

      Hi @michalt38, Maybe you could find the answer right here: https://docs.pycom.io/pycom_esp32/library/ussl.html Mike
    • M

      Accessing librarys on SD card
      WiPy 2&3 • wipy sdcard wipy 1 • • michalt38  

      7
      0
      Votes
      7
      Posts
      2556
      Views

      robert-hh

      @soren You have to mount the SD card first, before you can see it in ftp. The format I'm using is FAT32. A sample mount sequence is below, taken from the docs. # import os import machine sd = machine.SD() os.mount(sd, '/sd')
    • M

      FTP access
      WiPy 2&3 • ftp wipy 1 filezilla • • michalt38  

      10
      0
      Votes
      10
      Posts
      4373
      Views

      C

      @robert-hh Yes, it's important what Robert writes! The kind of connection--and IP(!!)--is related to the network the WiPy is connected. In case the WiPy is started default it will start as access point. In this case the IP is 192.168.1.1 In case you have connected the WiPy to a home network and the WiPy is now a station and not an access point any more, the device gets the IP from the network. I had a look at my Fritz box dashboard and could so figure out the IP but I think you can also gather the IP via a serial connection?
    • 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
    • F

      WiPy 1.0 Bricked, Red Light on even after factory reset
      WiPy 2&3 • reset help wipy 1 bricked factory • • Foennie  

      9
      1
      Votes
      9
      Posts
      2801
      Views

      jmarcelino

      @josua Glad you got it working by doing the firmware upgrade procedure again
    • J

      Connecting a sensor to WiPy 1 via I2C
      WiPy 2&3 • i2c wipy 1 • • jnc  

      6
      0
      Votes
      6
      Posts
      3669
      Views

      robert-hh

      @jnc said in Connecting a sensor to WiPy 1 via I2C: I assume you have to specify the scl and ads pin in the constructor, like: i2c = I2C(0, scl=lux_scl, sda=lux_sda) And you may have to switch GP12 and GP13, as far as I understand the PinOut https://raw.githubusercontent.com/wipy/wipy/master/docs/PinOUT.png lux_scl = Pin('GP12', mode=Pin.ALT, alt=5) lux_sda = Pin('GP13', mode=Pin.ALT, alt=5)
    • 1 / 1