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 * Copyright (c) 2001, Swedish Institute of Computer Science.
helmut 0:5150b09127e3 3 * All rights reserved.
helmut 0:5150b09127e3 4 *
helmut 0:5150b09127e3 5 * Redistribution and use in source and binary forms, with or without
helmut 0:5150b09127e3 6 * modification, are permitted provided that the following conditions
helmut 0:5150b09127e3 7 * are met:
helmut 0:5150b09127e3 8 * 1. Redistributions of source code must retain the above copyright
helmut 0:5150b09127e3 9 * notice, this list of conditions and the following disclaimer.
helmut 0:5150b09127e3 10 * 2. Redistributions in binary form must reproduce the above copyright
helmut 0:5150b09127e3 11 * notice, this list of conditions and the following disclaimer in the
helmut 0:5150b09127e3 12 * documentation and/or other materials provided with the distribution.
helmut 0:5150b09127e3 13 * 3. Neither the name of the Institute nor the names of its contributors
helmut 0:5150b09127e3 14 * may be used to endorse or promote products derived from this software
helmut 0:5150b09127e3 15 * without specific prior written permission.
helmut 0:5150b09127e3 16 *
helmut 0:5150b09127e3 17 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
helmut 0:5150b09127e3 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
helmut 0:5150b09127e3 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
helmut 0:5150b09127e3 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
helmut 0:5150b09127e3 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
helmut 0:5150b09127e3 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
helmut 0:5150b09127e3 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
helmut 0:5150b09127e3 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
helmut 0:5150b09127e3 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
helmut 0:5150b09127e3 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
helmut 0:5150b09127e3 27 * SUCH DAMAGE.
helmut 0:5150b09127e3 28 *
helmut 0:5150b09127e3 29 * This file is part of the lwIP TCP/IP stack.
helmut 0:5150b09127e3 30 *
helmut 0:5150b09127e3 31 * Author: Adam Dunkels <adam@sics.se>
helmut 0:5150b09127e3 32 *
helmut 0:5150b09127e3 33 */
helmut 0:5150b09127e3 34 #ifndef __NETIF_SLIPIF_H__
helmut 0:5150b09127e3 35 #define __NETIF_SLIPIF_H__
helmut 0:5150b09127e3 36
helmut 0:5150b09127e3 37 #include "lwip/netif.h"
helmut 0:5150b09127e3 38
helmut 0:5150b09127e3 39 #ifdef __cplusplus
helmut 0:5150b09127e3 40 extern "C" {
helmut 0:5150b09127e3 41 #endif
helmut 0:5150b09127e3 42
helmut 0:5150b09127e3 43 err_t slipif_init(struct netif * netif);
helmut 0:5150b09127e3 44 void slipif_poll(struct netif *netif);
helmut 0:5150b09127e3 45
helmut 0:5150b09127e3 46 #ifdef __cplusplus
helmut 0:5150b09127e3 47 }
helmut 0:5150b09127e3 48 #endif
helmut 0:5150b09127e3 49
helmut 0:5150b09127e3 50 #endif
helmut 0:5150b09127e3 51