Alvaro Cassinelli / Mbed 2 deprecated skinGames_II

Dependencies:   mbed

Committer:
mbedalvaro
Date:
Tue Dec 02 04:39:15 2014 +0000
Revision:
0:df6fdd9b99f0
this new version of skinGames will have a function that stops scanning as the laser reaches the same position (i.e., loops) with a certain precision. It is for extracting contours for Takashita project. It can then save on a file or send on osc

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbedalvaro 0:df6fdd9b99f0 1
mbedalvaro 0:df6fdd9b99f0 2 /*
mbedalvaro 0:df6fdd9b99f0 3 Copyright (c) 2010 Donatien Garnier (donatiengar [at] gmail [dot] com)
mbedalvaro 0:df6fdd9b99f0 4
mbedalvaro 0:df6fdd9b99f0 5 Permission is hereby granted, free of charge, to any person obtaining a copy
mbedalvaro 0:df6fdd9b99f0 6 of this software and associated documentation files (the "Software"), to deal
mbedalvaro 0:df6fdd9b99f0 7 in the Software without restriction, including without limitation the rights
mbedalvaro 0:df6fdd9b99f0 8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
mbedalvaro 0:df6fdd9b99f0 9 copies of the Software, and to permit persons to whom the Software is
mbedalvaro 0:df6fdd9b99f0 10 furnished to do so, subject to the following conditions:
mbedalvaro 0:df6fdd9b99f0 11
mbedalvaro 0:df6fdd9b99f0 12 The above copyright notice and this permission notice shall be included in
mbedalvaro 0:df6fdd9b99f0 13 all copies or substantial portions of the Software.
mbedalvaro 0:df6fdd9b99f0 14
mbedalvaro 0:df6fdd9b99f0 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
mbedalvaro 0:df6fdd9b99f0 16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
mbedalvaro 0:df6fdd9b99f0 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
mbedalvaro 0:df6fdd9b99f0 18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
mbedalvaro 0:df6fdd9b99f0 19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
mbedalvaro 0:df6fdd9b99f0 20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
mbedalvaro 0:df6fdd9b99f0 21 THE SOFTWARE.
mbedalvaro 0:df6fdd9b99f0 22 */
mbedalvaro 0:df6fdd9b99f0 23
mbedalvaro 0:df6fdd9b99f0 24 #ifndef LWIPNETIF_H
mbedalvaro 0:df6fdd9b99f0 25 #define LWIPNETIF_H
mbedalvaro 0:df6fdd9b99f0 26
mbedalvaro 0:df6fdd9b99f0 27 //class Ticker;
mbedalvaro 0:df6fdd9b99f0 28 #include "mbed.h"
mbedalvaro 0:df6fdd9b99f0 29
mbedalvaro 0:df6fdd9b99f0 30 #define NET_LWIP_STACK 1
mbedalvaro 0:df6fdd9b99f0 31 #include "core/net.h"
mbedalvaro 0:df6fdd9b99f0 32 #include "if/net/netif.h"
mbedalvaro 0:df6fdd9b99f0 33 /*
mbedalvaro 0:df6fdd9b99f0 34 #include "lwipNetTcpSocket.h"
mbedalvaro 0:df6fdd9b99f0 35 #include "lwipNetUdpSocket.h"
mbedalvaro 0:df6fdd9b99f0 36 #include "lwipNetDnsRequest.h"
mbedalvaro 0:df6fdd9b99f0 37 */
mbedalvaro 0:df6fdd9b99f0 38
mbedalvaro 0:df6fdd9b99f0 39 class LwipNetIf : public NetIf
mbedalvaro 0:df6fdd9b99f0 40 {
mbedalvaro 0:df6fdd9b99f0 41 public:
mbedalvaro 0:df6fdd9b99f0 42 LwipNetIf();
mbedalvaro 0:df6fdd9b99f0 43 virtual ~LwipNetIf();
mbedalvaro 0:df6fdd9b99f0 44
mbedalvaro 0:df6fdd9b99f0 45 void init();
mbedalvaro 0:df6fdd9b99f0 46
mbedalvaro 0:df6fdd9b99f0 47 virtual NetTcpSocket* tcpSocket(); //Create a new tcp socket
mbedalvaro 0:df6fdd9b99f0 48 virtual NetUdpSocket* udpSocket(); //Create a new udp socket
mbedalvaro 0:df6fdd9b99f0 49 virtual NetDnsRequest* dnsRequest(const char* hostname); //Create a new NetDnsRequest object
mbedalvaro 0:df6fdd9b99f0 50 virtual NetDnsRequest* dnsRequest(Host* pHost); //Create a new NetDnsRequest object
mbedalvaro 0:df6fdd9b99f0 51
mbedalvaro 0:df6fdd9b99f0 52 virtual void poll();
mbedalvaro 0:df6fdd9b99f0 53
mbedalvaro 0:df6fdd9b99f0 54 private:
mbedalvaro 0:df6fdd9b99f0 55 Timer m_tcpTimer;
mbedalvaro 0:df6fdd9b99f0 56 Timer m_dnsTimer;
mbedalvaro 0:df6fdd9b99f0 57
mbedalvaro 0:df6fdd9b99f0 58 bool m_init;
mbedalvaro 0:df6fdd9b99f0 59
mbedalvaro 0:df6fdd9b99f0 60 };
mbedalvaro 0:df6fdd9b99f0 61
mbedalvaro 0:df6fdd9b99f0 62 #endif