8000 Comparing 0.2.6...master · blynkkk/lib-python · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: blynkkk/lib-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.2.6
Choose a base ref
...
head repository: blynkkk/lib-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 16 commits
  • 4 files changed
  • 6 contributors

Commits on May 31, 2020

  1. Ensure millisecond precision in read_response() (#35)

    The micropython documentation for utime.time() states that on
    some hardware, the function only have second precision.
    
    This is the case at least for the TinyPICO board.
    
    This means that we get an effective 1 second timeout for the
    read_response() function instead of the expected 50ms. In turn,
    it makes the run() function quite slow which delays the whole
    application.
    
    To get higher precision, the documentation recommends to use
    utime.ticks_ms() instead which is what have been implemented
    here.
    fgervais authored May 31, 2020
    Configuration menu
    Copy the full SHA
    6832b99 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef36f6e View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2020

  1. Substract timestamps using ticks_diff() to account for wrap around (#36)

    From the utime documentation, ticks_diff() should be used to compare
    timestamps. They say the wrap around is implementation specific but on
    forums I see people saying it's about 298 hours/12 days which at least
    is the case for me on the tinypico.
    
    In this specific case, the wrap around means the deltas will be small
    negative numbers which in turn will make is_server_alive() return True
    for days without sending anymore pings to the server. We will soon after
    get disconnected and the application will pretty much stay forever in
    that state.
    fgervais authored Aug 19, 2020
    Configuration menu
    Copy the full SHA
    ca5949b View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2020

  1. Update blynklib.py (#39)

    Delilovic authored Nov 20, 2020
    Configuration menu
    Copy the full SHA
    b2cc4f5 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2021

  1. Configuration menu
    Copy the full SHA
    f4a3caa View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2021

  1. Configuration menu
    Copy the full SHA
    d42468b View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2021

  1. Configuration menu
    Copy the full SHA
    5e266af View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2021

  1. Update README.md

    vshymanskyy authored Jul 26, 2021
    Configuration menu
    Copy the full SHA
    44e49df View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2021

  1. Update docs

    vshymanskyy committed Aug 4, 2021
    Configuration menu
    Copy the full SHA
    eb068b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5b4d88 View commit details
    Browse the repository at this point in the history
  3. Update links

    vshymanskyy committed Aug 4, 2021
    Configuration menu
    Copy the full SHA
    b84dd58 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2021

  1. unit test fix

    antohaUa committed Sep 14, 2021
    Configuration menu
    Copy the full SHA
    c43df24 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2022

  1. Update README.md

    vshymanskyy authored Mar 3, 2022
    Configuration menu
    Copy the full SHA
    e4043f0 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2022

  1. Update README.md

    vshymanskyy authored Mar 4, 2022
    Configuration menu
    Copy the full SHA
    5173260 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2025

  1. Update README.md

    vshymanskyy authored May 5, 2025
    Configuration menu
    Copy the full SHA
    064d9b1 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. Update README.md

    vshymanskyy authored May 7, 2025
    Configuration menu
    Copy the full SHA
    0329df6 View commit details
    Browse the repository at this point in the history
Loading
0