123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- ESP_UKI
- largely base on http://www.john-lassen.de/index.php/projects/esp-8266-arduino-ide-webconfig
- TODO : better function organizing
- add firmware number in webserver
- rework led system with tickers
- send ADC to default IP via udp, allow configuration
- build onDemand config mode
- load/save parameters (fixed ip, uki_name, udp_port udp_ip
- */
- /* LEDS */
- #include "includes.h" //headers and variables declaration
- /* UDP CONFIGURATION */
- int UKI_UDP_In_Port = 9000; //udp port input for ESP
- IPAddress UKI_UDP_Master_IP(192, 168, 0, 41); //default udp address to send to. Will automatically change to the ip sending something to udp in
- Ticker tkUKI; // periodic send ADC to UDP
- //int GSR_sensor;
- void setup ( void ) {
-
- //EEPROM.begin(512);
- Serial.begin(115200);
- Serial.println("Starting ESP8266");
- setupWifi();
-
- //setupLeds();
-
- //setupOTA();
-
- delay(200);
- Serial.println("Ready");
- Serial.print("IP address: ");
- //Serial.println(WiFi.localIP());
- //UKI sensor setup
- UKI_UDP.begin(UKI_UDP_In_Port);
- // delay(1000);
- // digitalWrite(Red_Led, HIGH); //red led off
- // digitalWrite(Blue_Led, HIGH);
- // delay(1000);
- // ledBlink(Red_Led, 3, 100); //3 quick blink on red led as we start
- // delay (1000);
- //blueLedState(-1, 500);
-
-
- }
- void loop ( void ) {
- StartConfigAP();
-
- /* UKI part */
- // GSR_sensor = analogRead(A0);
- // //UKI_UDP.beginPacketMulticast((224, 1, 2, 3), 8000, WiFi.localIP());//
- // UKI_UDP.beginPacket(UKI_UDP_Master_IP, 8000);
- // UKI_UDP.print(config.DeviceName);
- // UKI_UDP.print(" ");
- // UKI_UDP.print(GSR_sensor);
- // UKI_UDP.endPacket();
- // //yield();
- //
- // delay(20);
- //
- // //Check udp in
- // int packetSize = UKI_UDP.parsePacket();
- //
- // if(packetSize) {
- // UKI_UDP_Master_IP = UKI_UDP.remoteIP();
- // UKI_UDP.beginPacket(UKI_UDP_Master_IP, 8000);
- // UKI_UDP.print("new master ip");
- // UKI_UDP.endPacket();
- // }
- }
|