Navigation

    Welcome to the Pycom forum

    Forum

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

    • B

      High GPIO Pins
      Expansion Board • sipy pin gpio • • bradnz  

      2
      0
      Votes
      2
      Posts
      1094
      Views

      robert-hh

      @bradnz So you want to tell, if the voltage of the LiPo battery is above 2.5 V. That should be done using the ADC, for various reasons. a) The value at which a digital input switches from HIGH to LOW is not well defined and not stable. It is somewhere between 0.75 * Vdd and 0.25 * Vdd b) You have to check the value of the variable charger anyhow, so instead of doing that you could also read an ADC value. If you want to have that done in an interrupt fashion, you can set-up a timer interrup which reads the ADC,
    • C

      Unable to Program SiPy
      SiPy • firmware pymakr sipy serial repl • • choco  

      7
      0
      Votes
      7
      Posts
      2074
      Views

      C

      @jcaron It worked! My bad. Didn't even think about that. I erased flash memory and uploaded most recent firmware. Thank you @robert-hh as well. For the future, are there any best practices for connecting/disconnecting, from both a hardware and software standpoint. e.g. my boot.py file: import os from machine import UART uart = UART(0, 115200) os.dupterm(uart) Should I include anything else?
    • L

      Pysense and SiPy: Ways of reducing active current
      Issues & Bugs • pysense sipy consumption current active • • lmagalhaes  

      1
      0
      Votes
      1
      Posts
      770
      Views

      No one has replied

    • O

      sipy ufl connectors
      Discussion • sipy antenna ufl • • ozeta  

      3
      0
      Votes
      3
      Posts
      1027
      Views

      O

      @robert-hh oooh ok this was silly. i didn't see the pinout, but only the spec on the shop. thanks!
    • C

      Reading data through Uart
      MicroPython • sipy micropython uart • • chrisi  

      3
      0
      Votes
      3
      Posts
      1417
      Views

      C

      Good pickup, I will try and use P10 and P11 unless you recommend anything else? Edit, it works now thanks for the help
    • B

      LeakKiller Challenge - Win up to £15,000
      Announcements & News • sipy iot challenge leakkiller rs components • • Bettina  

      2
      1
      Votes
      2
      Posts
      1732
      Views

      RobTuDelft

      Nice challange! Got some new hardware incoming to see what we can do :-)
    • S

      Error sending payload. SiPy Sigfox. **SOLVED**
      SiPy • sipy sigfox crash payload • • scg94  

      3
      0
      Votes
      3
      Posts
      1524
      Views

      S

      Hi everyone. I want to tell you that I have already solved the problem. There is a conflict with the line in which I declare a Pin as output and the moment in which it is transmitted: Pin('P5', mode=Pin.OUT, value=1) What I did was change the pin to P13, this ended the problem and I was able to transmit without any inconvenience and see the data in the Sigfox Backend.: Pin('P13', mode=Pin.OUT, value=1)
    • D

      How to test the SiPy (SigFox not available in my country)
      SiPy • sipy sigfox • • dommei  

      7
      0
      Votes
      7
      Posts
      2239
      Views

      C

      @dommei I have always been in an area near the Sigfox network and don't know of a way to get data into the Sigfox back end any other way. If you just want to get the data for testing you can just save it to an SD card if you have the PySense or Pytrack or wifi. Or are you trying to export the data from the Sigfox back end into a database? If this is the case you are trying to get some test data into the Sigfox backend. I have no idea how to do this Sorry. https://resources.sigfox.com/document/callbacks-documentation might help?
    • O

      [SOLVED] Can't update the firmware
      SiPy • firmware sipy sipy firmware • • OceaneHebert  

      7
      0
      Votes
      7
      Posts
      2191
      Views

      O

      It works ! Thank you !
    • B

      Check which radio system on the chip via Python code?
      Discussion • lopy fipy wipy sipy radio • • bigboy20769  

      2
      0
      Votes
      2
      Posts
      912
      Views

      J

      @bigboy20769 I see at least two options: call the respective init methods in a try block call os.uname and check the type of module
    • A

      How can I write to SiPy flash memory?
      SiPy • sipy documentation internal flash • • apsolar  

      4
      0
      Votes
      4
      Posts
      2344
      Views

      A

      @jmarcelino Thank you for sharing this. To add to this question, are there code example of we can persist an array of structs to the file system? I have a clear idea of how I want to implement a simple persistent database but I cant find micropython examples of doing so. The btree library would have been great but I realised I couldnt use it in this version of the port.
    • A

      [SOLVED] Sipy shows under Sigfox France when registered for New Zealand
      SiPy • sipy backend rcz4 • • apsolar  

      3
      0
      Votes
      3
      Posts
      1080
      Views

      A

      I finally got it to work, had to position the helical antenna upright, lying flat it wasnt able to send the message out.
    • A

      No activity on Pycom Console in Visual Studio Code - Windows
      SiPy • pymakr sipy usb serial conn visual studio c pycom console • • apsolar  

      2
      0
      Votes
      2
      Posts
      1069
      Views

      A

      I got this to work on a different pc with windows 10, 32 bit installer of the the visual studio code (even though windows 10 install is a 64 bit install). 64 bit install of the visual studio code didnt work with the pymakr plugin for me.
    • Lokefar

      Reset pin low every 100ms
      SiPy • sipy reset crash • • Lokefar  

      1
      0
      Votes
      1
      Posts
      827
      Views

      No one has replied

    • iotmaker

      Can you use I2C and One Wire together? deepsleep shield
      Discussion • sipy deepsleep • • iotmaker  

      2
      0
      Votes
      2
      Posts
      795
      Views

      robert-hh

      @iotmaker You can tell both I2C and onewire which Pin to use. For I2c, you do it by i2c.init(), for the onewire driver, it is given in the constructor of the class.
    • T

      Pin: max sink current
      Getting Started • sipy power pin hardware open drain • • txinto  

      4
      0
      Votes
      4
      Posts
      2433
      Views

      robert-hh

      @littlebat It said max current 40 mA in the maximum ratings sections, but I myself did not trust that anyhow. Even if, the output levels then are somewhat off GND/Vcc. So 12 mA sounds much more convenient.
    • Lokefar

      Crash after 1min 20sec
      SiPy • sipy crash • • Lokefar  

      2
      0
      Votes
      2
      Posts
      918
      Views

      Lokefar

      I looks like a re-flashing of the firmware fixed the issue.
    • Lokefar

      [SOLVED] Sigfox message error on backend
      SiPy • sipy sigfox • • Lokefar  

      3
      0
      Votes
      3
      Posts
      1356
      Views

      Lokefar

      That worked like a charm! Thanks!
    • Lokefar

      Crash on boot
      SiPy • sipy crash • • Lokefar  

      5
      0
      Votes
      5
      Posts
      1475
      Views

      jmarcelino

      @Lokefar said in Crash on boot: The device is powered by a 3.3V power supply. OK but make sure the the supply can deliver 500mA @ 3.3V. While the board doesn't use this much in normal use, the boot up is particularly demanding and the voltage can dip below what's necessary - for example during WiFi calibration. Most boot crashes are due to inadequate supply.
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 4 / 7