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
10
votes
4 answers

choose a tool to create/maintain custom eclipse distrib

I would like to settle on a tool to create/maintain my custom eclipse distrib (starting with next 3.6). By studying previous questions main contenders seem: Pulse Yoxos Google Workspace Mechanic: recently announced doing it yourself in eclipse Has…
Persimmonium
  • 15,593
  • 11
  • 47
  • 78
9
votes
2 answers

Pulse width modulation (PWM) on AVR Studio

I'm trying to use PWM for an LED on an ATmega8, any pin of port B. Setting up timers has been a annoying, and I don't know what to do with my OCR1A. Here's my code, and I'd love some feedback. I'm just trying to figure out how use PWM. I know the…
michaeljiz
  • 194
  • 1
  • 2
  • 10
9
votes
1 answer

jQuery pulsate effect

Hoping someone can give me some pointers. I'm trying to add a 'pulsate' effect onto a div after a button is clicked. The following script I've written is fine and does work - however I'd ideally like it to alternate between background colours rather…
V Neal
  • 419
  • 1
  • 10
  • 28
7
votes
3 answers

How can I prevent submitting an empty Perforce changelist from being an error?

Attempting to submit a changelist with no files is considered by Perforce to be an error (p4 submit ... returns exit code 1). This causes a periodic integration build to fail on our build server (we're using Zutubi's Pulse system); in this case I…
user197015
7
votes
1 answer

Explanation of Text on Threading in "C# 3.0 in a Nutshell"

While reading C# 3.0 in a Nutshell by Joseph and Ben Albahari, I came across the following paragraph (page 673, first paragraph in section titled "Signaling with Wait and Pulse") "The Monitor class provides another signalling construct via two…
RAL
  • 917
  • 8
  • 19
6
votes
1 answer

Pulse ring animation around a Google Maps marker iOS

I want to add a pulse ring animation around a marker as a current user location in iOS google maps (like Uber). I tried with adding CABasicAnimation to marker layer by addAnimation. It is not working. Also I tried animate the scale of the marker…
Antony Raphel
  • 2,036
  • 2
  • 25
  • 45
6
votes
5 answers

How to create pulsating value from 0..1..0..1..0 etc for a given duration?

I'm working on some code where I have a Time object with a member time. Time.time gives me the time since my application started in seconds (float value). Now I want to create a pulsating value between 0 and 1 and then from 1 to 0 again, which…
pollux
  • 779
  • 2
  • 14
  • 30
5
votes
1 answer

TMonitor.Pulse vs TMonitor.PulseAll

The Delphi Docwiki explains that Pulse notifies the next thread in the waiting queue that it will be able to lock the specified object as soon as the calling thread releases the object. PulseAll signals all threads in the waiting queue. I found this…
mjn
  • 36,362
  • 28
  • 176
  • 378
5
votes
2 answers

Pause simultaneous REST calls until first one completes

We have a REST API method similar to: List GetItems(int AccountID) { var x = getFromCache(AccountID); if(x==null) { x = getFromDatabase(AccountID); addToCache(AccountID, x); } return x; } This is a fairly…
Feech
  • 439
  • 1
  • 6
  • 14
4
votes
3 answers

How to gererate a single pulse depending on a state machne in C?

I want to write a c code to generate a pulse but cant seem to wrap my head around the logic to implement it. I come from a strong Verilog background & know how to do this in verilog(look for a change of state using xor & use that pulse, stretch it…
KharoBangdo
  • 321
  • 5
  • 14
3
votes
1 answer

Pulsing Background Color in Kivy

I'm new to kivy, but I really stuck on this. Is there any way to have a Pulsing background on a canvas similar to this effect in CSS: https://codepen.io/LukeAskew/pen/gabgom body { background-color: #222; animation-name: color; …
Shamus Berube
  • 466
  • 3
  • 12
3
votes
3 answers

CPU cycles in Arduino uno for Digital read and counting pulses

I'm trying to count number of HB100 microwave sensor pulses in 200ms time quanta. Here is the code: #include #include elapsedMillis ElapsedTime; #define Sensor A0 #define TimeQuanta 200 int Counter = 0; boolean…
Mehran
  • 307
  • 1
  • 3
  • 15
3
votes
2 answers

Linkedin API Pulse Share

I am trying to integrate my blog to Linkedin Pulse by connecting to my linkedin app. I found that posting to API /v1/people/~/shares shares my update but I can't figure out how to post it on Pulse - long post. Is it even possible? Cheers!
Trouble
  • 428
  • 3
  • 21
3
votes
5 answers

The method split(String) is undefined for the type String

I am using Pulse - the Plugin Manager for Eclipse and installed. I have the Eclipse 3.5 for mobile development(Pulsar) profile with a couple other profiles. I realized that the split() method called on a string from code such as below: String data =…
pi.
  • 1,441
  • 3
  • 19
  • 25
3
votes
1 answer

Pulsing image-button in Java

I have created a simple musical metronome in Java. It starts and stops by pressing a button that has the shape of a butterfly. I would love to add a visual effect of the tempo by making the button/butterfly appear and disappear together with the…
1
2 3
9 10