Commit 57f59c36 by Martin Kotula

Sensors docs

parent 9ae4cc59
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -62,8 +62,8 @@ void SendMessage(int isBusy)
String postRight = "\"}";
String post = postLeft + mac + postMiddle + isBusy + postRight;
HTTPClient http;
//http.begin("http://iot-challange.azurewebsites.net/api/status/write");
http.begin("http://10.0.100.8:5000/api/status/write");
http.begin("http://iot-challange.azurewebsites.net/api/status/write");
//http.begin("http://10.0.100.8:5000/api/status/write");
http.addHeader("Content-Type", "application/json");
int httpCode = http.POST(post);
String payload = http.getString();
......
## Circuit Board
* WIFI ESP-07 ESP8266 U.FL
* Circuit board
* Capacitatotrs
* Voltage stabilizer
* PIR sensor
## Development
Download [Arduino studio](https://www.arduino.cc/en/Main/Software)
Set custom board manager by adding this feed in preferences:
http://arduino.esp8266.com/stable/package_esp8266com_index.json
Download custom circuit board `esp8266 by esp8266 community`
Upload code to the circuit board
## Casing
Sensor casing was 3d printed using designes from [here](/casing)
\ No newline at end of file
http://arduino.esp8266.com/stable/package_esp8266com_index.json -> preferencje
esp8266 by esp8266 community -> manager płytek
\ No newline at end of file
# Occupancy sensors
## Sensors
Autonomous sensors which need to be able to report their state over HTTP or directly to MQTT Broker. Our goal was to design the sensors in a way that would not require cable connections
Autonomous sensors which need to be able to report their state over HTTP or directly to MQTT Broker. Our goal was to design the sensors in a way that would not require any cable connections
### Installation
Installation guides can be found [here](/ArduinoWiFiPIR/)
### Technology Stack
C++
C++, Arduino Studio
### Challenges
* Power supply, the prototype of the sensor is using a 9V battery/hour
* Power supply, the prototype of the sensor is using a 9V battery/5 hours
* Problems with the quality of available components - couple of chips got burned during assembly
## Hub
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment