Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help merging/embedding
#2
You can't simply merge them. The first one is looping continuously, allowing the LEDs to be updated as fast as the sensor can be read and the loop updated. There's no history that needs to be kept, so this is fine.

The second one is keeping an average, and that depends on how fast the updates happen. So it sleeps every 30 seconds. If it ran as fast as the LED loop, the average would be lost. If it caused the LED loop to pause every 30 seconds, the scale would be very non-responsive.

I would probably use datetime to pull a timestamp. Then in the LED loop if the timestamp is more than 30 seconds old, update the timestamp and call a function to update the moving average and print the text.
Reply


Messages In This Thread
Need help merging/embedding - by duckredbeard - Aug-12-2020, 09:39 PM
RE: Need help merging/embedding - by bowlofred - Aug-12-2020, 10:12 PM
RE: Need help merging/embedding - by duckredbeard - Aug-12-2020, 10:18 PM
RE: Need help merging/embedding - by bowlofred - Aug-12-2020, 10:29 PM
RE: Need help merging/embedding - by duckredbeard - Aug-12-2020, 10:37 PM
RE: Need help merging/embedding - by bowlofred - Aug-12-2020, 11:48 PM
RE: Need help merging/embedding - by duckredbeard - Aug-12-2020, 11:55 PM
RE: Need help merging/embedding - by bowlofred - Aug-12-2020, 11:59 PM
RE: Need help merging/embedding - by duckredbeard - Aug-13-2020, 12:32 AM
RE: Need help merging/embedding - by bowlofred - Aug-13-2020, 03:12 AM
RE: Need help merging/embedding - by duckredbeard - Aug-13-2020, 04:48 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Embedding python script into html via pyscript pyscript_dude 7 1,604 Apr-16-2023, 11:17 PM
Last Post: pyscript_dude
  C++ python embedding comarius 0 839 Aug-26-2022, 02:01 AM
Last Post: comarius
Question Embedding a python file online Dreary35 0 1,544 Jun-10-2021, 05:05 PM
Last Post: Dreary35
  Embedding return in a print statement Tapster 3 2,310 Oct-07-2019, 03:10 PM
Last Post: Tapster
  Calling Extended Embedding Python as shared library jibarra 0 2,240 Jul-19-2019, 05:22 PM
Last Post: jibarra
  More Python Embedding Trouble jibarra 3 2,952 Jul-11-2019, 09:25 PM
Last Post: Gribouillis
  Python Embedding jibarra 4 3,089 Jul-11-2019, 03:25 PM
Last Post: jibarra
  Embedding or adding IDE like "repl" inside Flask app sray 1 2,246 Jul-03-2019, 03:13 PM
Last Post: nilamo
  Embedding Python into a simulator siggi 0 2,207 Apr-24-2019, 07:42 PM
Last Post: siggi
  Embedding, windows, and virtual environments mariofutire 0 3,064 Sep-14-2018, 10:30 AM
Last Post: mariofutire

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020