Questions tagged [pulse]

This tag has numerous interpretations:

Software

  • RSS news reader app for Android, iOS and HTML5 browsers, released around 2010.
  • JunOS Pulse, the SSL VPN client
  • Pulse CMS, content management for small web sites
  • The Zutubi Pulse continuous integration server
  • Various Salesforce.com plugins (examples)
  • C# Monitor.Pulse (discouraged, too granular)
  • The Python function wxGauge.Pulse (discouraged, too granular)

Concepts

  • an (use that tag instead)
  • an animation type defined by AnimationExtender (ASP.NET AJAX). use
  • human pulse sensors (eg. Arduino integration)
  • for analog engineers, a pulse wave is a bar graph created from 1-D vector input data. pulse generators can be used to generate this type of signal. pulse waveforms are commonly used in synthesizer programming.
  • Radio control pulse position modulation encoding (PPM), pulse code modulation (PCM), pulse width modulation (PWM). try or instead
150 questions
2
votes
1 answer

How can I read this particular buffer data that I'm getting from arduino while using nodejs?

I'm currently using a pulse sensor on an arduino, and trying to get data from the sensor and trying to display it on the browser. This is what my nodejs code looks like. var SerialPort = require("serialport").SerialPort var serialPort = new…
fancy_avocado
  • 45
  • 1
  • 6
2
votes
1 answer

Does this use of Monitor.Wait/Pulse have a race condition?

I have a simple producer/consumer scenario, where there is only ever a single item being produced/consumed. Also, the producer waits for the worker thread to finish before continuing. I realize that kind of obviates the whole point of…
jw.
  • 318
  • 2
  • 11
2
votes
1 answer

Having trouble pulsing vibrator

I'm trying to implement a feature into my app where it can pulse the vibrator. The user can change 3 things, the vibration strength, pulse length, and time between pulses, using sliders. I was thinking of some code like: for(i=0; i<(pulse length *…
DingleNutZ
  • 163
  • 1
  • 7
1
vote
1 answer

Salesforce IDE Pluse Installer download failure

I'm trying to install the salesforce IDE via the pulse installer it all goes swimmingly except for a final 27.8kb that is listed as "org.eclipse.rcp.configuration_root.win32.win32.x86" I'm assuming this resource has a binary extension and is…
Baxter
  • 2,416
  • 1
  • 22
  • 29
1
vote
2 answers

Shared Variables for Monitor Locking with Threads and Different Classes

I have a C# Windows application I'm working on where I kick off different classes in their own thread (ie: Class1 instance in Thread 1, Class 2 instance in Thread 2, etc). I'm trying to correctly suspend/resume the threads, but I can't figure out…
Harry
  • 863
  • 3
  • 10
  • 26
1
vote
1 answer

Cloud Foundry plug-in is not installable into pulse managed eclipse (due to missing joda time osgi bundle)

I'm trying to install Cloud Foundry Integration for Eclipse Indigo (3.7) Through the eclipse marketplace into my pulse managed eclipse. During the "marketplace, Installing Software" phase, I'm getting the error: Could not find repositories…
user85155
  • 1,370
  • 16
  • 24
1
vote
1 answer

Eclipse Plugin Fails to Load

Eclipse can some times fail to load plugins. I have experienced this E3.7 with both ScalaIDE and GroovyEclipse. In both cases some times the syntax highlighting fails. Also I have noticed some times plugin related menu items and popups do not…
1
vote
0 answers

fan speed control using pulse sensor in Arduino Uno

Good day everyone, I have some problem regarding to my practice of fan speed control using pulse sensor in Arduino Uno. I can gather the pulse rate and rpm of the fan. However, the fan won't change its speed depending on the pulse rate. Here is my…
Alvin
  • 11
  • 1
1
vote
3 answers

TeamCity users: a few questions

These questions are for TeamCity users only 1) Is it possible to configure TeamCity to extract build artifact information based on your own your regular expressions? This is exactly what Pulse does here 2) Does TeamCity integrate with any task/bug…
sivabudh
  • 31,807
  • 63
  • 162
  • 228
1
vote
1 answer

Java Image/Text Pulsating Glow Effect (Graphics)

How would I make an Image have a pulsating effect to it? I already know how to draw an Image to the screen, so I just need to know how I can add a pulsating glow effect. Would I need to use tons of threads? Also, how would I make some text have the…
Dylan Wheeler
  • 6,928
  • 14
  • 56
  • 80
1
vote
0 answers

ESP32 - Interrupt is triggering when I send a pulse through digital pin

I have a precision pulse flow meter connected onto pin D4 of my ESP32 and am programming in the Arduino IDE environment. The following libraries are used: /* Libraries */ // Include WiFi Library #include #include // Include…
1
vote
1 answer

Create clock pulse with python

I want to work with exactly 20ms sleep time. When i was using time.sleep(0.02), i am facing many problems. It is not working what i want. If I had to give an example; import time i = 0 end = time.time() + 10 while time.time() < end: i += 1 …
1
vote
1 answer

Using lock, Monitor Pulse and Wait to synchronize threads

I have read the official documentation and about 25 tutorials, but I'm still struggling with how I might synchronize say, 3 threads with Monitor Pulse() and Wait() methods and using lock objects. (Yes, I know there are other techniques of…
Ginzorf
  • 769
  • 11
  • 19
1
vote
2 answers

CSS pulse animation override on hover

I have a pulsing circle that needs to be able to stop pulsing on hover, but then scale to the correct size. @keyframes pulse { 0%, 100% { transform: scale(1); animation-timing-function: ease-in; } 50% { …
Andrew Gordon
  • 181
  • 1
  • 10
1
vote
0 answers

Extract the onset of pulses in praat

I am currently wirting a script to calculte VOT of consonants in English Tier 3 : phoneme Tier 4 : CV The goal is to detect in the interval of Tier 4 the onset of the pulses. Here is a part of the code : thisSound$ = selected$("Sound") thisTextGrid$…
1 2
3
9 10