Give water to plants if dry amd pla meanwhile music the music vou can define with note length bind and breake also select several instruments for the sound

Dependencies:   mbed

Committer:
helmut
Date:
Wed Sep 19 14:16:56 2012 +0000
Revision:
0:5150b09127e3
plays mostly music that you can do with notes length breakes and bind; Some already defined; Tool is to start a pump for water to give plant is too dry.; Meanwhie plays music the most part of all

Who changed what in which revision?

UserRevisionLine numberNew contents of line
helmut 0:5150b09127e3 1 /*
helmut 0:5150b09127e3 2 ***********************************************************************
helmut 0:5150b09127e3 3 ** md5.h -- header file for implementation of MD5 **
helmut 0:5150b09127e3 4 ** RSA Data Security, Inc. MD5 Message-Digest Algorithm **
helmut 0:5150b09127e3 5 ** Created: 2/17/90 RLR **
helmut 0:5150b09127e3 6 ** Revised: 12/27/90 SRD,AJ,BSK,JT Reference C version **
helmut 0:5150b09127e3 7 ** Revised (for MD5): RLR 4/27/91 **
helmut 0:5150b09127e3 8 ** -- G modified to have y&~z instead of y&z **
helmut 0:5150b09127e3 9 ** -- FF, GG, HH modified to add in last register done **
helmut 0:5150b09127e3 10 ** -- Access pattern: round 2 works mod 5, round 3 works mod 3 **
helmut 0:5150b09127e3 11 ** -- distinct additive constant for each step **
helmut 0:5150b09127e3 12 ** -- round 4 added, working mod 7 **
helmut 0:5150b09127e3 13 ***********************************************************************
helmut 0:5150b09127e3 14 */
helmut 0:5150b09127e3 15
helmut 0:5150b09127e3 16 /*
helmut 0:5150b09127e3 17 ***********************************************************************
helmut 0:5150b09127e3 18 ** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved. **
helmut 0:5150b09127e3 19 ** **
helmut 0:5150b09127e3 20 ** License to copy and use this software is granted provided that **
helmut 0:5150b09127e3 21 ** it is identified as the "RSA Data Security, Inc. MD5 Message- **
helmut 0:5150b09127e3 22 ** Digest Algorithm" in all material mentioning or referencing this **
helmut 0:5150b09127e3 23 ** software or this function. **
helmut 0:5150b09127e3 24 ** **
helmut 0:5150b09127e3 25 ** License is also granted to make and use derivative works **
helmut 0:5150b09127e3 26 ** provided that such works are identified as "derived from the RSA **
helmut 0:5150b09127e3 27 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all **
helmut 0:5150b09127e3 28 ** material mentioning or referencing the derived work. **
helmut 0:5150b09127e3 29 ** **
helmut 0:5150b09127e3 30 ** RSA Data Security, Inc. makes no representations concerning **
helmut 0:5150b09127e3 31 ** either the merchantability of this software or the suitability **
helmut 0:5150b09127e3 32 ** of this software for any particular purpose. It is provided "as **
helmut 0:5150b09127e3 33 ** is" without express or implied warranty of any kind. **
helmut 0:5150b09127e3 34 ** **
helmut 0:5150b09127e3 35 ** These notices must be retained in any copies of any part of this **
helmut 0:5150b09127e3 36 ** documentation and/or software. **
helmut 0:5150b09127e3 37 ***********************************************************************
helmut 0:5150b09127e3 38 */
helmut 0:5150b09127e3 39
helmut 0:5150b09127e3 40 #ifndef MD5_H
helmut 0:5150b09127e3 41 #define MD5_H
helmut 0:5150b09127e3 42
helmut 0:5150b09127e3 43 /* Data structure for MD5 (Message-Digest) computation */
helmut 0:5150b09127e3 44 typedef struct {
helmut 0:5150b09127e3 45 u32_t i[2]; /* number of _bits_ handled mod 2^64 */
helmut 0:5150b09127e3 46 u32_t buf[4]; /* scratch buffer */
helmut 0:5150b09127e3 47 unsigned char in[64]; /* input buffer */
helmut 0:5150b09127e3 48 unsigned char digest[16]; /* actual digest after MD5Final call */
helmut 0:5150b09127e3 49 } MD5_CTX;
helmut 0:5150b09127e3 50
helmut 0:5150b09127e3 51 void MD5Init ( MD5_CTX *mdContext);
helmut 0:5150b09127e3 52 void MD5Update( MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen);
helmut 0:5150b09127e3 53 void MD5Final ( unsigned char hash[], MD5_CTX *mdContext);
helmut 0:5150b09127e3 54
helmut 0:5150b09127e3 55 #endif /* MD5_H */