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 * auth.h - PPP Authentication and phase control header file.
helmut 0:5150b09127e3 3 *
helmut 0:5150b09127e3 4 * Copyright (c) 2003 by Marc Boucher, Services Informatiques (MBSI) inc.
helmut 0:5150b09127e3 5 * portions Copyright (c) 1998 Global Election Systems Inc.
helmut 0:5150b09127e3 6 *
helmut 0:5150b09127e3 7 * The authors hereby grant permission to use, copy, modify, distribute,
helmut 0:5150b09127e3 8 * and license this software and its documentation for any purpose, provided
helmut 0:5150b09127e3 9 * that existing copyright notices are retained in all copies and that this
helmut 0:5150b09127e3 10 * notice and the following disclaimer are included verbatim in any
helmut 0:5150b09127e3 11 * distributions. No written agreement, license, or royalty fee is required
helmut 0:5150b09127e3 12 * for any of the authorized uses.
helmut 0:5150b09127e3 13 *
helmut 0:5150b09127e3 14 * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS *AS IS* AND ANY EXPRESS OR
helmut 0:5150b09127e3 15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
helmut 0:5150b09127e3 16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
helmut 0:5150b09127e3 17 * IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
helmut 0:5150b09127e3 18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
helmut 0:5150b09127e3 19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
helmut 0:5150b09127e3 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
helmut 0:5150b09127e3 21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
helmut 0:5150b09127e3 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
helmut 0:5150b09127e3 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
helmut 0:5150b09127e3 24 *
helmut 0:5150b09127e3 25 ******************************************************************************
helmut 0:5150b09127e3 26 * REVISION HISTORY
helmut 0:5150b09127e3 27 *
helmut 0:5150b09127e3 28 * 03-01-01 Marc Boucher <marc@mbsi.ca>
helmut 0:5150b09127e3 29 * Ported to lwIP.
helmut 0:5150b09127e3 30 * 97-12-04 Guy Lancaster <lancasterg@acm.org>, Global Election Systems Inc.
helmut 0:5150b09127e3 31 * Original derived from BSD pppd.h.
helmut 0:5150b09127e3 32 *****************************************************************************/
helmut 0:5150b09127e3 33 /*
helmut 0:5150b09127e3 34 * pppd.h - PPP daemon global declarations.
helmut 0:5150b09127e3 35 *
helmut 0:5150b09127e3 36 * Copyright (c) 1989 Carnegie Mellon University.
helmut 0:5150b09127e3 37 * All rights reserved.
helmut 0:5150b09127e3 38 *
helmut 0:5150b09127e3 39 * Redistribution and use in source and binary forms are permitted
helmut 0:5150b09127e3 40 * provided that the above copyright notice and this paragraph are
helmut 0:5150b09127e3 41 * duplicated in all such forms and that any documentation,
helmut 0:5150b09127e3 42 * advertising materials, and other materials related to such
helmut 0:5150b09127e3 43 * distribution and use acknowledge that the software was developed
helmut 0:5150b09127e3 44 * by Carnegie Mellon University. The name of the
helmut 0:5150b09127e3 45 * University may not be used to endorse or promote products derived
helmut 0:5150b09127e3 46 * from this software without specific prior written permission.
helmut 0:5150b09127e3 47 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
helmut 0:5150b09127e3 48 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
helmut 0:5150b09127e3 49 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
helmut 0:5150b09127e3 50 *
helmut 0:5150b09127e3 51 */
helmut 0:5150b09127e3 52
helmut 0:5150b09127e3 53 #ifndef AUTH_H
helmut 0:5150b09127e3 54 #define AUTH_H
helmut 0:5150b09127e3 55
helmut 0:5150b09127e3 56 /***********************
helmut 0:5150b09127e3 57 *** PUBLIC FUNCTIONS ***
helmut 0:5150b09127e3 58 ***********************/
helmut 0:5150b09127e3 59
helmut 0:5150b09127e3 60 /* we are starting to use the link */
helmut 0:5150b09127e3 61 void link_required (int);
helmut 0:5150b09127e3 62
helmut 0:5150b09127e3 63 /* we are finished with the link */
helmut 0:5150b09127e3 64 void link_terminated (int);
helmut 0:5150b09127e3 65
helmut 0:5150b09127e3 66 /* the LCP layer has left the Opened state */
helmut 0:5150b09127e3 67 void link_down (int);
helmut 0:5150b09127e3 68
helmut 0:5150b09127e3 69 /* the link is up; authenticate now */
helmut 0:5150b09127e3 70 void link_established (int);
helmut 0:5150b09127e3 71
helmut 0:5150b09127e3 72 /* a network protocol has come up */
helmut 0:5150b09127e3 73 void np_up (int, u16_t);
helmut 0:5150b09127e3 74
helmut 0:5150b09127e3 75 /* a network protocol has gone down */
helmut 0:5150b09127e3 76 void np_down (int, u16_t);
helmut 0:5150b09127e3 77
helmut 0:5150b09127e3 78 /* a network protocol no longer needs link */
helmut 0:5150b09127e3 79 void np_finished (int, u16_t);
helmut 0:5150b09127e3 80
helmut 0:5150b09127e3 81 /* peer failed to authenticate itself */
helmut 0:5150b09127e3 82 void auth_peer_fail (int, u16_t);
helmut 0:5150b09127e3 83
helmut 0:5150b09127e3 84 /* peer successfully authenticated itself */
helmut 0:5150b09127e3 85 void auth_peer_success (int, u16_t, char *, int);
helmut 0:5150b09127e3 86
helmut 0:5150b09127e3 87 /* we failed to authenticate ourselves */
helmut 0:5150b09127e3 88 void auth_withpeer_fail (int, u16_t);
helmut 0:5150b09127e3 89
helmut 0:5150b09127e3 90 /* we successfully authenticated ourselves */
helmut 0:5150b09127e3 91 void auth_withpeer_success (int, u16_t);
helmut 0:5150b09127e3 92
helmut 0:5150b09127e3 93 /* check authentication options supplied */
helmut 0:5150b09127e3 94 void auth_check_options (void);
helmut 0:5150b09127e3 95
helmut 0:5150b09127e3 96 /* check what secrets we have */
helmut 0:5150b09127e3 97 void auth_reset (int);
helmut 0:5150b09127e3 98
helmut 0:5150b09127e3 99 /* Check peer-supplied username/password */
helmut 0:5150b09127e3 100 u_char check_passwd (int, char *, int, char *, int, char **, int *);
helmut 0:5150b09127e3 101
helmut 0:5150b09127e3 102 /* get "secret" for chap */
helmut 0:5150b09127e3 103 int get_secret (int, char *, char *, char *, int *, int);
helmut 0:5150b09127e3 104
helmut 0:5150b09127e3 105 /* check if IP address is authorized */
helmut 0:5150b09127e3 106 int auth_ip_addr (int, u32_t);
helmut 0:5150b09127e3 107
helmut 0:5150b09127e3 108 /* check if IP address is unreasonable */
helmut 0:5150b09127e3 109 int bad_ip_adrs (u32_t);
helmut 0:5150b09127e3 110
helmut 0:5150b09127e3 111 #endif /* AUTH_H */