This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <soap:Envelope | |
| xmlns:soap="http://www.w3.org/2003/05/soap-envelope/" | |
| soap:encodingStyle="http://www.w3.org/2003/05/soap-encoding"> | |
| <soap:Header> | |
| ... | |
| </soap:Header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const int SENSOR_PIN = 0; | |
| const int AMOUNT = 20; | |
| int averageLevel = 0; | |
| int averageIndex = 0; | |
| /** | |
| * The Pulse Oximeter sketch is an Arduino sketch intended for use with an | |
| * analog sensor reading the amount of light passing through a human finger. | |
| * |
NewerOlder