Navigation

    Welcome to the Pycom forum

    Forum

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

    • C

      BLE Mesh + LoRa in LoPy4
      LoPy • lorawan ttn gateway lopy ble mesh ble bluetooth • • Camilo Piñón  

      1
      0
      Votes
      1
      Posts
      13
      Views

      No one has replied

    • T

      Can't use Bluetooth.BLE_Mesh on Wipy 3 board. Why?
      WiPy 2&3 • bluetooth wipy 3.0 mesh • • Tobias Eliasson  

      2
      0
      Votes
      2
      Posts
      23
      Views

      J

      @Tobias-Eliasson I believe you need to enable Pymesh via Pybytes (and accept the associated license) before you can use it. See https://docs.pycom.io/pybytes/pymeshintegration/provisioning/ for info.
    • B

      We're ready to Launch
      Pylife • iot pymesh pylife mesh wearables • • Bettina  

      4
      1
      Votes
      4
      Posts
      1312
      Views

      D

      Is this available for direct purchase?
    • I

      How to build the minimal thread device (MTD) for Lopy4 mesh networking?
      LoPy • lora lopy4 mesh openthread • • iotGeek  

      3
      0
      Votes
      3
      Posts
      516
      Views

      I

      hi @catalin, thank you very much! This answers my question. I would like to evaluate the mesh networking functions for a project at our university. The devices are energy constrained and expected to consume as little energy as possible. For this usecase I would like to use a Sleepy End Device or at least a Minimal End Device. I will use the CLI in combination with disabling the router role for a first evaluation.
    • C

      Update on LoraMesh
      Enhancements • lora mesh example loramesh border router • • chadtfraser  

      9
      0
      Votes
      9
      Posts
      1393
      Views

      M

      @catalin Everything's clear now, thanks again.
    • J

      LoRa Mesh General Questions
      Discussion • lora mesh mesh network • • Joseph  

      4
      1
      Votes
      4
      Posts
      1052
      Views

      catalin

      @sympatron Probably, we'll release a stable version at the end of this week, not completely sure. Also, as these Mesh features (Border Router) are in progress, not sure when to commit that I'll finish. Anyway, I will look into a micropython solution first, maybe some minor C code changes (released as development).
    • B

      A bit more about MESH - On the Wall with Daniel and Fred
      Announcements & News • lorawan mesh mesh network ipv6 6lowpan • • Bettina  

      1
      0
      Votes
      1
      Posts
      448
      Views

      No one has replied

    • B

      Launching MESH Networks on Pycom
      Announcements & News • lora mesh mesh network ipv6 6lowpan • • Bettina  

      11
      5
      Votes
      11
      Posts
      3626
      Views

      D

      This can only be done when the data transmission rates within the mesh network are very low.
    • A

      Mesh network: Get the ip address from station or access point
      LoPy • socket wlan network mesh • • andnil94  

      12
      0
      Votes
      12
      Posts
      4773
      Views

      robert-hh

      @shariq I have the code below in main.py, which sets up the device for connecting to my router with a fixed IP, which you then can use to access the device. WIFI_IP = "aa.bb.cc.ss" ROUTER_IP = "aa.bb.cc.rr") WIFI_SSID = "your AP SSID" WIFI_PASS = "your AP Password" def do_connect(): import network import time wlan = network.WLAN(mode=network.WLAN.STA) # create station interface if not wlan.isconnected(): # check if the station is connected to an AP wlan.ifconfig(config=(WIFI_IP, "255.255.255.0", ROUTER_IP, ROUTER_IP)) wlan.connect(ssid=WIFI_SSID, auth=(network.WLAN.WPA2, WIFI_PASSWD)) for _ in range(100): if wlan.isconnected(): # check if the station is connected to an AP break print('.', end='') time.sleep_ms(200) else: print("Connect attempt timed out\n") return print('\nnetwork config:', wlan.ifconfig()) do_connect()
    • Innocenzo

      Mesh Network on WiPy 2.0
      WiPy 2&3 • wipy 2.0 network mesh • • Innocenzo  

      10
      0
      Votes
      10
      Posts
      5365
      Views

      C

      @misterlisty yep. Go ahead ! :)
    • 1 / 1