Hallo Accso

Der Winke-Codi ist ein privates Projekt von mir, das als Willkommensgruß zur Einstellung bei Accso gedacht war.

Jedoch gibt es ein paar erwähnenswerte Technologien, die den Winke-Codi auch für die Industrie interessant machen.

Der Winke-Codi nutzt ein raw-embedded C/C++ ESP8266 Mikrocontroller mit WLAN von Espressif.

Die Idee ist es den Winke-Codi zu animieren, sobald jemand einen QR Code scannt und das unabhängig von der scannenden Hardware.

Dazu wird ein QR Code generiert aus einer zufälligen SSID und einem zufälligen Passwort. Diese Kombination wird als QR Code wird auf einem ePaper Display angezeigt und kann per iOS/Android Device gescannt werden, um sich mit dem WLAN zu verbinden. (iOS reicht die Kamera-App)

Sobald sich ein Client verbunden hat, wird eine neue zufällige SSID mit einem neuen zufälligen Passwort generiert und der Codi über ein Modellbauservo kurz zum Winken animiert.

Denkt man die Idee weiter, kann man einen QR Code von einem ePaper Display nutzen, um sich lokal an einem WLAN Accesspoint für eine begrenzte Zeit bzw. einmalig einzuloggen, um Informationen zu erhalten, Aktionen auszulösen oder Konfigurationen durchzuführen.

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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <Servo.h>
#include <epd1in54.h>
#include <epdpaint.h>
#include <epdif.h>
#include <qrcode.h>
#ifndef APSSID
#define APSSID "TurnMeOn"
#define APPSK  "thereisnospoon"
#endif
#define COLORED     1
#define UNCOLORED   0
/* Set these to your desired credentials. */
char ssid[20];
char password[10];
ESP8266WebServer server(80);
Servo servo;
unsigned char image[1024];
Paint paint(image, 0, 0);    // width should be the multiple of 8
Epd epd;
void generatePass(char* pass,uint8_t u8Len)
{
  uint8_t i;
  for(i = 0;i < u8Len;i++)
  {
      do
      {
          pass[i] = random(33, 126);
      } while(pass[i] == ';');
  }
  pass[i++] = 0;
}
void generateSsid(char* ssid)
{
  ssid[0] = 'A';
  ssid[1] = 'c';
  ssid[2] = 'c';
  ssid[3] = 's';
  ssid[4] = 'o';
  ssid[5] = 'n';
  ssid[6] = 'a';
  ssid[7] = 'u';
  ssid[8] = 't';
  ssid[9] = '_';
  uint8_t i;
  for(i = 10;i < 20;i++)
  {
      switch(random(0,3))
      {
          case 0:
              ssid[i] = random(48, 58);
              break;
          case 1:
              ssid[i] = random(65, 91);
              break;
          case 2:
              ssid[i] = random(97, 123);
              break;
      }
  }
  ssid[i++] = 0;
}
void drawQrCode(char* Text)
{
  // The structure to manage the QR code
  QRCode qrcode;
  // Allocate a chunk of memory to store the QR code
  uint8_t qrcodeBytes[qrcode_getBufferSize(3)];
  qrcode_initText(&qrcode, qrcodeBytes, 3, ECC_LOW, Text);
if (epd.Init(lut_full_update) != 0) {
    Serial.print("e-Paper init failed");
    return;
}
epd.ClearPatternMemory(0xFF);   // bit set = white, bit reset = black
epd.DisplayPattern();
epd.ClearPatternMemory(0xFF);   // bit set = white, bit reset = black
epd.DisplayPattern();
  const uint8_t u8Size = 6;
  for (uint8 y = 0; y < qrcode.size; y++) {
      paint.SetWidth(180);
      paint.SetHeight(u8Size);
      paint.SetRotate(ROTATE_0);
      paint.Clear(UNCOLORED);
      for (uint8 x = 0; x < qrcode.size; x++) {
          if (qrcode_getModule(&qrcode, x, y)) {
              paint.DrawFilledRectangle(x*u8Size, 0, x*u8Size+u8Size-1, u8Size-1, COLORED);
          } else {
          }
      }
      epd.SetPatternMemory(paint.GetImage(), 13,13+ y*u8Size, paint.GetWidth(), paint.GetHeight());
  }
  epd.DisplayPattern();
}
void generateQr(char* pass,char* wifi_ssid)
{
  char str[80] = "WIFI:S:";
  strcat(str,wifi_ssid);
  strcat(str,";T:WPA;P:");
  strcat(str,pass);
  strcat(str,";;");
  drawQrCode(str);
}
/* Just a little test message.  Go to http://192.168.4.1 in a web browser
 connected to this access point to see it.
*/
void handleRoot() {
server.send(200, "text/html", "<h1>You are connected</h1>");
}
void setup() {
delay(1000);
servo.attach(4);
pinMode(5, OUTPUT);
generatePass(password,sizeof(password)-1);
generateSsid(ssid);
generateQr(password,ssid);
Serial.begin(115200);
Serial.println();
Serial.print("Configuring access point...");
/* You can remove the password parameter if you want the AP to be open. */
WiFi.softAP(ssid, password);
IPAddress myIP = WiFi.softAPIP();
Serial.print("AP IP address: ");
Serial.println(myIP);
server.on("/", handleRoot);
server.begin();
Serial.println("HTTP server started");
}
void loop() {
int i;
static uint32_t u32Counter = 0;
u32Counter++;
server.handleClient();
if ((millis() % (1000 * 60 * 30)) == 0)
{
    servo.write(0);
    server.handleClient();
    delay(300);
    server.handleClient();
    servo.write(90);
    server.handleClient();
    delay(300);
    server.handleClient();
}
if (WiFi.softAPgetStationNum() > 0)
{
    paint.SetWidth(180);
    paint.SetHeight(32);
    paint.SetRotate(ROTATE_0);
    paint.Clear(UNCOLORED);
    paint.DrawStringAt(0, 4, "Winke Winke", &Font24, COLORED);
    epd.SetPatternMemory(paint.GetImage(), 8, 100, paint.GetWidth(), paint.GetHeight());
    epd.DisplayPattern();
    digitalWrite(5,HIGH);
    for(i = 0;i < 10;i++)
    {
      servo.write(0);
      server.handleClient();
      delay(300);
      server.handleClient();
      servo.write(90);
      server.handleClient();
      delay(300);
      server.handleClient();
    }
    digitalWrite(5,LOW);
    WiFi.softAPdisconnect(true);
    delay(5000);
    generatePass(password,sizeof(password)-1);
    generateSsid(ssid);
    generateQr(password,ssid);
    WiFi.softAP(ssid, password);
}
}

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.