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 * Author: Adam Dunkels <adam@sics.se>
helmut 0:5150b09127e3 3 *
helmut 0:5150b09127e3 4 */
helmut 0:5150b09127e3 5 #ifndef __LWIP_SYS_ARCH_H__
helmut 0:5150b09127e3 6 #define __LWIP_SYS_ARCH_H__
helmut 0:5150b09127e3 7
helmut 0:5150b09127e3 8 typedef unsigned int u32_t;
helmut 0:5150b09127e3 9
helmut 0:5150b09127e3 10 #ifdef __cplusplus
helmut 0:5150b09127e3 11 extern "C" {
helmut 0:5150b09127e3 12 #endif
helmut 0:5150b09127e3 13
helmut 0:5150b09127e3 14 //DG 2010
helmut 0:5150b09127e3 15 void sys_init(void); /* To be called first */
helmut 0:5150b09127e3 16 u32_t sys_jiffies(void); /* since power up. */
helmut 0:5150b09127e3 17
helmut 0:5150b09127e3 18 /** Returns the current time in milliseconds,
helmut 0:5150b09127e3 19 * may be the same as sys_jiffies or at least based on it. */
helmut 0:5150b09127e3 20 u32_t sys_now(void);
helmut 0:5150b09127e3 21
helmut 0:5150b09127e3 22 #ifdef __cplusplus
helmut 0:5150b09127e3 23 }
helmut 0:5150b09127e3 24 #endif
helmut 0:5150b09127e3 25
helmut 0:5150b09127e3 26
helmut 0:5150b09127e3 27 #endif /* __LWIP_ARCH_CC_H__ */