-
Notifications
You must be signed in to change notification settings - Fork 1
/
SnobTrashcan.ino
155 lines (129 loc) · 4.05 KB
/
SnobTrashcan.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
WiFi UDP Send and Receive String
This sketch wait an UDP packet on localPort using the CC3200 launchpad
When a packet is received an Acknowledge packet is sent to the client on port remotePort
created 30 December 2012
by dlf (Metodo2 srl)
modified 1 July 2014
by Noah Luskey
*/
#ifndef __CC3200R1M1RGC__
// Do not include SPI for CC3200 LaunchPad
#include <SPI.h>
#endif
#define PWMpin RED_LED
#define humanSensorButton PUSH1
#include <WiFi.h>
int lidAngle = 0;
int analogPin = A3;
int val = 0;
// your network name also called SSID
char ssid[] = "8-301";
// your network password
char password[] = "aokbike668";
unsigned int localPort = 2390; // local port to listen on
char packetBuffer[255]; //buffer to hold incoming packet
char ReplyBuffer[] = "acknowledged"; // a string to send back
WiFiUDP Udp;
void setup() {
//Initialize serial and wait for port to open:
Serial.begin(115200);
pinMode(PWMpin, OUTPUT);
pinMode(humanSensorButton, INPUT_PULLUP);
attachInterrupt(humanSensorButton, buttonSendHumanPassedby, RISING);
// attempt to connect to Wifi network:
Serial.print("Attempting to connect to Network named: ");
// print the network name (SSID);
Serial.println(ssid);
// Connect to WPA/WPA2 network. Change this line if using open or WEP network:
WiFi.begin(ssid, password);
while ( WiFi.status() != WL_CONNECTED) {
// print dots while we wait to connect
Serial.print(".");
delay(300);
}
Serial.println("\nYou're connected to the network");
Serial.println("Waiting for an ip address");
while (WiFi.localIP() == INADDR_NONE) {
// print dots while we wait for an ip addresss
Serial.print(".");
delay(300);
}
Serial.println("\nIP Address obtained");
printWifiStatus();
Serial.println("\nWaiting for a connection from a client...");
Udp.begin(localPort);
}
void loop() {
// if there's data available, read a packet
int packetSize = Udp.parsePacket();
if (packetSize)
{
Serial.print("Received packet of size ");
Serial.println(packetSize);
Serial.print("From ");
IPAddress remoteIp = Udp.remoteIP();
Serial.print(remoteIp);
Serial.print(", port ");
Serial.println(Udp.remotePort());
// read the packet into packetBufffer
int len = Udp.read(packetBuffer, 255);
if (len > 0) packetBuffer[len] = 0;
Serial.println("Contents:");
Serial.println(packetBuffer);
// lidControl
if(strncmp("Lid: ", packetBuffer, 5) == 0){
char lidAngleString[4];
strncpy(lidAngleString, packetBuffer+5, len-5);
lidAngle = atoi(lidAngleString);
Serial.println("Lid Angle set to:");
Serial.println(lidAngle);
setLidAngle(lidAngle);
}
// send a reply, to the IP address and port that sent us the packet we received
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
Udp.write(ReplyBuffer);
Udp.endPacket();
}
}
void setLidAngle(int newAngle){
analogWrite(PWMpin, newAngle);
}
void autoHumanPassedby(){
delay(20);
val = analogRead(analogPin); // read the input pin
if(val>0){
sendHumanPassedby();
}
}
void buttonSendHumanPassedby(){
delay(20);
if(digitalRead(humanSensorButton)==HIGH){
sendHumanPassedby();
}
}
void sendHumanPassedby(){
Serial.println("Sending human sensor passedby");
Serial.print("To:");
IPAddress remoteIp = Udp.remoteIP();
Serial.print(remoteIp);
Serial.print(", port ");
Serial.println(Udp.remotePort());
Udp.beginPacket(Udp.remoteIP(), Udp.remotePort());
Udp.write("passby");
Udp.endPacket();
}
void printWifiStatus() {
// print the SSID of the network you're attached to:
Serial.print("SSID: ");
Serial.println(WiFi.SSID());
// print your WiFi IP address:
IPAddress ip = WiFi.localIP();
Serial.print("IP Address: ");
Serial.println(ip);
// print the received signal strength:
long rssi = WiFi.RSSI();
Serial.print("signal strength (RSSI):");
Serial.print(rssi);
Serial.println(" dBm");
}