diff --git a/.clang-format b/.clang-format index b8e6a6874e05864bee999600171b96eb1e17bfd0..673f71de96f7438eaa3691f49126bd05c6a52af9 100644 --- a/.clang-format +++ b/.clang-format @@ -11,3 +11,4 @@ BreakBeforeBinaryOperators: NonAssignment BreakBeforeBraces: Custom BraceWrapping: AfterFunction: true +... diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 3078fdfc801a3c8aa103dde92adbed240b65de44..8e55aea0f85e76d6b55dc1ad67709f91be3476c0 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,5 +1,8 @@ { - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": ["platformio.platformio-ide", "xaver.clang-format"] + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide", + "xaver.clang-format" + ], } diff --git a/client/client/.gitkeep b/client/client/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/client/client/include/ForteSensor.hpp b/client/client/include/ForteSensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..add5a01d566ef5977eef3e0286d908c4b49fcb0b --- /dev/null +++ b/client/client/include/ForteSensor.hpp @@ -0,0 +1,17 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +#include "Message.hpp" +#include "Protocol.hpp" +#include "SensorInformation.hpp" +template <class T> +class ForteSensor { + public: + virtual T readData() = 0; + virtual void setup() = 0; + virtual std::list<Message> buildMessages() = 0; + [[nodiscard]] virtual SensorInformation getSensorInformation() const = 0; + virtual ~ForteSensor() = default; +}; + +#endif \ No newline at end of file diff --git a/client/client/include/MeasurementData.hpp b/client/client/include/MeasurementData.hpp new file mode 100644 index 0000000000000000000000000000000000000000..36bd5db75fbdb714dad723d67b92affd4d4fd189 --- /dev/null +++ b/client/client/include/MeasurementData.hpp @@ -0,0 +1,39 @@ +// +// Created by cynthya on 10/6/22. +// + +#ifndef CLIENT_MEASUREMENTDATA_HPP +#define CLIENT_MEASUREMENTDATA_HPP + +#include "ArduinoJson.h" +#include "Protocol.hpp" +#include "SensorInformation.hpp" +#include <list> +#include <optional> +#include <string> +#include <utility> +class MeasurementData { + public: + MeasurementData(double value, std::optional<int> channel, std::optional<int> i2cAddress, + std::string measurementType) + : value(value), measurementType(std::move(measurementType)), channel(channel), i2cAddress(i2cAddress) + { + } + + MeasurementData(double value, std::string measurementType) + : value(value), measurementType(std::move(measurementType)) + { + } + + [[nodiscard]] double getValue() const { return value; } + [[nodiscard]] const std::string &getMeasurementType() const { return measurementType; } + [[nodiscard]] const std::optional<int> &getChannel() const { return channel; } + [[nodiscard]] const std::optional<int> &getI2CAddress() const { return i2cAddress; } + + private: + double value; + std::string measurementType; // TODO: consider using an enum + std::optional<int> channel; + std::optional<int> i2cAddress; +}; +#endif // CLIENT_MEASUREMENTDATA_HPP diff --git a/client/client/include/NoDataAvailableException.hpp b/client/client/include/NoDataAvailableException.hpp new file mode 100644 index 0000000000000000000000000000000000000000..83c56973868a76a1dca7f49487bcdb6fd33e86d8 --- /dev/null +++ b/client/client/include/NoDataAvailableException.hpp @@ -0,0 +1,8 @@ +#pragma once + +#include <exception> +#include <iostream> + +struct NoDataAvailableException : public std::exception { + const char *what() const noexcept override { return "Sensor could not read data"; } +}; \ No newline at end of file diff --git a/client/client/include/Pinout.hpp b/client/client/include/Pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..f277fd91b274caa1de127f0380ba75164dd9b707 --- /dev/null +++ b/client/client/include/Pinout.hpp @@ -0,0 +1,10 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +constexpr int I2C_SDA = 18; +constexpr int I2C_SCL = 19; + +// TODO: IF THE BOARD CHANGES (I.E. ESPCAM MODULE), THESE HAVE TO BE CHANGED (EITHER COMPILE TIME FLAG OR IFDEF OR SMTH) + +#endif diff --git a/client/client/include/Protocol.hpp b/client/client/include/Protocol.hpp new file mode 100644 index 0000000000000000000000000000000000000000..92270db81e4a54e525f2cd054a15a03e7ebade15 --- /dev/null +++ b/client/client/include/Protocol.hpp @@ -0,0 +1,15 @@ +// +// Created by zoe on 10/5/22. +// + +#ifndef CLIENT_PROTOCOL_HPP +#define CLIENT_PROTOCOL_HPP + +#include <map> +enum class Protocol { I2C, RS485, Analog }; + +// protocol to string +const static std::map<Protocol, const char *> protocolToString = { + {Protocol::I2C, "I2C"}, {Protocol::RS485, "RS485"}, {Protocol::Analog, "ANALOG"}}; + +#endif // CLIENT_PROTOCOL_HPP diff --git a/client/client/include/SensorInformation.hpp b/client/client/include/SensorInformation.hpp new file mode 100644 index 0000000000000000000000000000000000000000..4b8af5d357534be81670b503790960a2781bc282 --- /dev/null +++ b/client/client/include/SensorInformation.hpp @@ -0,0 +1,25 @@ +// +// Created by cynthya on 10/6/22. +// + +#ifndef CLIENT_SENSORINFORMATION_HPP +#define CLIENT_SENSORINFORMATION_HPP + +#include "Protocol.hpp" +#include <string> + +class SensorInformation { + public: + SensorInformation(std::string sensorName, Protocol protocol) : sensorName(std::move(sensorName)), protocol(protocol) + { + } + + [[nodiscard]] const std::string &getSensorName() const { return sensorName; } + [[nodiscard]] Protocol getProtocol() const { return protocol; } + + private: + std::string sensorName; + Protocol protocol; +}; + +#endif // CLIENT_SENSORINFORMATION_HPP diff --git a/client/client/lib/README b/client/client/lib/README index 55da06ff31bbb98f1ac6f6accba999be40aca532..6debab1e8b4c3faa0d06f4ff44bce343ce2cdcbf 100644 --- a/client/client/lib/README +++ b/client/client/lib/README @@ -3,7 +3,7 @@ This directory is intended for project specific (private) libraries. PlatformIO will compile them to static libraries and link into executable file. The source code of each library should be placed in a an own separate directory -("lib/your_library_name/[here are source files]").**** +("lib/your_library_name/[here are source files]"). For example, see a structure of the following two libraries `Foo` and `Bar`: diff --git a/client/client/lib/caching/src/ram_caching.cpp b/client/client/lib/caching/src/ram_caching.cpp index 9325e7c7909473c998d2a113779d94480fa3589c..b7df125c9f9885d5040b4a2c6cf38d14bdb69594 100644 --- a/client/client/lib/caching/src/ram_caching.cpp +++ b/client/client/lib/caching/src/ram_caching.cpp @@ -1,24 +1,28 @@ #include "ram_caching.hpp" -RTC_DATA_ATTR int cachedAmount = -1; -RTC_DATA_ATTR ClientDataPackage backup[NUM_SENSORS]; +static const char* TAG = "CACHING"; +const int NUM_SENSORS = 10; -ClientDataPackage ram_cache_pop() -{ - return backup[cachedAmount--]; -} - -void ram_cache_push(ClientDataPackage data) -{ - backup[++cachedAmount] = data; -} - -bool ram_cache_is_empty() -{ - return cachedAmount == -1; -} - -bool ram_cache_is_full() -{ - return cachedAmount == 9; -} \ No newline at end of file +//RTC_DATA_ATTR int cachedAmount = -1; +//RTC_DATA_ATTR ClientDataPackage backup[NUM_SENSORS]; +// +//ClientDataPackage ram_cache_pop() +//{ +// return backup[cachedAmount--]; +//} +// +//void ram_cache_push(ClientDataPackage data) +//{ +// backup[++cachedAmount] = data; +// ESP_LOGI(TAG, "ClientDataPackage saved"); +//} +// +//bool ram_cache_is_empty() +//{ +// return cachedAmount == -1; +//} +// +//bool ram_cache_is_full() +//{ +// return cachedAmount == 9; +//} \ No newline at end of file diff --git a/client/client/lib/caching/src/ram_caching.hpp b/client/client/lib/caching/src/ram_caching.hpp index 466668ba65578e0a9aa3f0af9bf20174889b0eb2..f4152ce799a7f746158ba80cc769ff879557f9ea 100644 --- a/client/client/lib/caching/src/ram_caching.hpp +++ b/client/client/lib/caching/src/ram_caching.hpp @@ -1,11 +1,12 @@ #ifndef _RAM_CACHE #define _RAM_CACHE -#include "ClientDataPackage.hpp" +//#include "ClientDataPackage.hpp" +#include "esp_log.h" #include <ESP32Time.h> bool ram_cache_is_empty(); bool ram_cache_is_full(); -void ram_cache_push(ClientDataPackage data); -ClientDataPackage ram_cache_pop(); +//void ram_cache_push(ClientDataPackage data); +//ClientDataPackage ram_cache_pop(); #endif \ No newline at end of file diff --git a/client/client/lib/dr26_analogue/dr26.cpp b/client/client/lib/dr26_analogue/dr26.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e8d4555fff9470023788f92abfcd8af61d8aa905 --- /dev/null +++ b/client/client/lib/dr26_analogue/dr26.cpp @@ -0,0 +1,54 @@ +#include "dr26.hpp" + +void ForteDR26 ::setup() +{ + Wire.begin(I2C_SDA, I2C_SCL); + // ads.setGain(0); + if (ads.begin()) { + ESP_LOGI(sensorInformation.getSensorName().c_str(), "ADS initialized."); + } else { + ESP_LOGW(sensorInformation.getSensorName().c_str(), "ADS initialization failed."); + } + delay(100); +} + +float ForteDR26 ::readData() +{ + float volts = 0; + for (int i = 0; i < 10; i++) { + int16_t adc = ads.readADC_SingleEnded(0); + float volt = ads.computeVolts(adc); + volts += volt; + } + volts /= 10; + return volts; +} + +// The following functions change the ADC input range: be careful +// to never to exceed VDD +0.3V max, or to exceed the upper and +// lower limits if you adjust the input range. +// SETTING THE GAIN VALUE INCORRECTLY MAY DESTROY THE ADC! +// The maximum output of the dendrometer is 2.5V, and so a gain of +// one (max 4.096V) or two (max 2.048V) is optimal. Changing the gain +// changes the accuracy of the sensor: higher gain gives a higher +// precision but a smaller range. +// +// GAIN_TWOTHIRDS // 2/3x gain +/- 6.144V 1 bit = 0.1875mV (default) +// GAIN_ONE // 1x gain +/- 4.096V 1 bit = 0.125mV +// GAIN_TWO // 2x gain +/- 2.048V 1 bit = 0.0625mV +// GAIN_FOUR // 4x gain +/- 1.024V 1 bit = 0.03125mV +// GAIN_EIGHT // 8x gain +/- 0.512V 1 bit = 0.015625mV +// GAIN_SIXTEEN // 16x gain +/- 0.256V 1 bit = 0.0078125mV +void ForteDR26 ::changeGain(adsGain_t gain) +{ + ads.setGain(gain); +} + +std::list<Message> ForteDR26::buildMessages() +{ + throw "Not implemented"; +} +SensorInformation ForteDR26::getSensorInformation() const +{ + return sensorInformation; +} diff --git a/client/client/lib/dr26_analogue/dr26.hpp b/client/client/lib/dr26_analogue/dr26.hpp new file mode 100644 index 0000000000000000000000000000000000000000..778f8fe112e1b4e2e85588e517811fc661a858ad --- /dev/null +++ b/client/client/lib/dr26_analogue/dr26.hpp @@ -0,0 +1,24 @@ +#ifndef _DR26 +#define _DR26 + +#include "Adafruit_ADS1X15.h" +#include "ForteSensor.hpp" +#include "Message.hpp" +#include "Pinout.hpp" +#include "esp_log.h" +#include <Wire.h> + +class ForteDR26 : public ForteSensor<float> { + public: + void setup() override; + float readData() override; + void changeGain(adsGain_t gain); + std::list<Message> buildMessages() override; + [[nodiscard]] SensorInformation getSensorInformation() const override; + + private: + Adafruit_ADS1115 ads; + const SensorInformation sensorInformation{"DR26", Protocol::Analog}; +}; + +#endif \ No newline at end of file diff --git a/client/client/lib/drs26_digital/drs26.cpp b/client/client/lib/drs26_digital/drs26.cpp new file mode 100644 index 0000000000000000000000000000000000000000..5c21f3a98e01d665c38a879fb23f37217b39e8f4 --- /dev/null +++ b/client/client/lib/drs26_digital/drs26.cpp @@ -0,0 +1,61 @@ +#include <drs26.hpp> + +/* +It happens for some reason that the sensor cant get reached every 2 time +Because the sensor use sdi12 protocoll we have to wait aproxemettly 1 secound between the commands +It is not known how lond the response takes so we use a while loop which can be a risk wehre the programm can get stuck +*/ + +void ForteDRS26 ::setup() +{ + drs26.begin(4); +} + +out_data_drs26 ForteDRS26 ::readData() +{ + String sdiResponse = ""; + String measurement_command = + "1M!"; // The drs26 sensor uses the sdi12 protocoll , in the sdi12 protocoll is the measurement command is + // specified as 1M!=Sebsir measurement request at adress 1 + String data_command = "1D0!"; // and the followed data command 1D0! = Sensor data request at adress 1 + + drs26.sendCommand(measurement_command); + delay(1000); + drs26.sendCommand(data_command); + + data = {-1, -1, -1}; + + while (drs26.available()) { + char next_character = drs26.read(); + if ((next_character != '\n') && (next_character != '\r')) { + sdiResponse += next_character; + delay(10); // 1 character ~ 7.5ms + } + } + + if (sdiResponse.length() > 1) { + data.id = sdiResponse.substring(0, 8).toInt(); + data.circumferenceIncrement = sdiResponse.substring(9, 15).toFloat(); + data.temperature = sdiResponse.substring(16, 22).toFloat(); + } + return data; +} + +std::list<Message> ForteDRS26 ::buildMessages() +{ + std::list<Message> messages; + MeasurementData circumferenceIncrementMeasurementData{ + data.circumferenceIncrement, 0, {}, measurementTypeToString.at(MeasurementType::CIRCUMFERENCE_INCREMENT)}; + MeasurementData temperatureMeasurementData{ + data.temperature, 0, {}, measurementTypeToString.at(MeasurementType::TEMPERATURE)}; + + messages.emplace_back(Message{circumferenceIncrementMeasurementData, sensorInformation, 0}); + messages.emplace_back(Message{temperatureMeasurementData, sensorInformation, 0}); + + ESP_LOGE(sensorInformation.getSensorName().c_str(), "test"); + return messages; +} +SensorInformation ForteDRS26::getSensorInformation() const +{ + return sensorInformation; +} diff --git a/client/client/lib/drs26_digital/drs26.hpp b/client/client/lib/drs26_digital/drs26.hpp new file mode 100644 index 0000000000000000000000000000000000000000..0d713ca66260895f63cdc1e2137ec4027294e8bd --- /dev/null +++ b/client/client/lib/drs26_digital/drs26.hpp @@ -0,0 +1,37 @@ +#ifndef _DRS26 +#define _DRS26 + +#include "ForteSensor.hpp" +#include "Message.hpp" +#include "Pinout.hpp" +#include "Wire.h" +#include "esp_log.h" +#include <SDI12.h> +#include <map> + +struct out_data_drs26 { + int id; + float circumferenceIncrement; + float temperature; +}; + +class ForteDRS26 : public ForteSensor<out_data_drs26> { + public: + void setup() override; + out_data_drs26 readData() override; + std::list<Message> buildMessages() override; + [[nodiscard]] SensorInformation getSensorInformation() const override; + + private: + SDI12 drs26; + out_data_drs26 data; + const SensorInformation sensorInformation{"DRS26", Protocol::I2C}; + enum class MeasurementType { TEMPERATURE, CIRCUMFERENCE_INCREMENT }; + + // enum to string + std::map<MeasurementType, const char *> measurementTypeToString = { + {MeasurementType::TEMPERATURE, "TEMPERATURE"}, + {MeasurementType::CIRCUMFERENCE_INCREMENT, "CIRCUMFERENCE_INCREMENT"}}; +}; + +#endif \ No newline at end of file diff --git a/client/client/lib/espnow/README b/client/client/lib/espnow/README index 55f89c0b2141283b3dd2d94c882cdaccbe2064fe..bbf1db0c44bf4b375af8aefcd9f6649864d64677 100644 --- a/client/client/lib/espnow/README +++ b/client/client/lib/espnow/README @@ -1,7 +1,7 @@ # basic usage To send data using espnow, create a new Message object, -then use the add_data(value, identifier) method for every value +then use the addData(value, identifier) method for every value to fill the message. when every value is added, use the send() method to send the data to the host (fipy). If the esp client has never recieved a config diff --git a/client/client/lib/espnow/src/ClientDataPackage.hpp b/client/client/lib/espnow/src/ClientDataPackage.hpp index 52f2be6032a190e6346bef71457cb78c983b0038..7cdd66fdc3b9175a4870933654a82c31bcf392d1 100644 --- a/client/client/lib/espnow/src/ClientDataPackage.hpp +++ b/client/client/lib/espnow/src/ClientDataPackage.hpp @@ -1,14 +1,54 @@ #pragma once -#define NUM_SENSORS 10 -// packing the struct without padding, makes reading it on the fipy easier -#pragma pack(1) +#include "ArduinoJson.h" +#include "MeasurementData.hpp" +#include "Protocol.hpp" +#include "SensorInformation.hpp" +#include <list> +#include <optional> +#include <string> +#include <utility> // having the data be a struct of basic types makes sending easier, // otherwise we would have to serialize the data before sending -struct ClientDataPackage { - int identifiers[NUM_SENSORS]; - float values[NUM_SENSORS]; - int amountData; - long timestamp; // maybe make this array +class ClientDataPackage { + private: + MeasurementData measurementData; + SensorInformation sensorInformation; + unsigned long timestamp; // maybe make this array + + public: + ClientDataPackage(MeasurementData value, SensorInformation sensorInformation, unsigned long timestamp) + : measurementData(std::move(value)), sensorInformation(std::move(sensorInformation)), timestamp(timestamp) + { + } + + [[nodiscard]] const MeasurementData &getMeasurementData() const { return measurementData; } + [[nodiscard]] const SensorInformation &getSensorInformation() const { return sensorInformation; } + [[nodiscard]] unsigned long getTimestamp() const { return timestamp; } + + [[nodiscard]] std::string getDataPackageAsMinifiedJsonString() const + { + StaticJsonDocument<250> document; // 250 byte is the max send size of espnow + + document["sensorName"] = sensorInformation.getSensorName(); + document["timestamp"] = timestamp; + document["protocol"] = protocolToString.at(sensorInformation.getProtocol()); + document["value"] = measurementData.getValue(); + + if (measurementData.getChannel().has_value()) { + document["channel"] = measurementData.getChannel().value(); + } + + if (measurementData.getI2CAddress().has_value()) { + document["i2cAddress"] = measurementData.getI2CAddress().value(); + } + + document["measurementType"] = measurementData.getMeasurementType(); + + std::string jsonString; + serializeJson(document, jsonString); + return jsonString; + } + }; diff --git a/client/client/lib/espnow/src/ESPNow.cpp b/client/client/lib/espnow/src/ESPNow.cpp index 359b43c50b855b7f90d955995befe915a3846e3d..11dafda7be07016e2f8a3ab10f362105eebdf20c 100644 --- a/client/client/lib/espnow/src/ESPNow.cpp +++ b/client/client/lib/espnow/src/ESPNow.cpp @@ -1,5 +1,7 @@ #include "ESPNow.hpp" +static const char *TAG = "ESPNOW"; + uint8_t BROADCAST_MAC[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; esp_now_peer_info_t hostInfo; Preferences preferences; @@ -7,11 +9,11 @@ Preferences preferences; void get_host_mac(uint8_t *destination) { preferences.begin("config", true); - if (!preferences.isKey("host")) { + if (preferences.isKey("host")) { preferences.getBytes("host", destination, sizeof(uint8_t) * 6); } else { memcpy(destination, BROADCAST_MAC, sizeof(BROADCAST_MAC)); - Serial.println("backup mac used"); + ESP_LOGW(TAG, "Backup MAC address used"); } preferences.end(); } @@ -22,7 +24,7 @@ void on_data_sent(const uint8_t *mac_addr, esp_now_send_status_t status) void on_data_recv(const uint8_t *mac, const uint8_t *incomingData, int len) { - Serial.println("message recieved"); + ESP_LOGI(TAG, "Message recieved"); config new_config; memcpy(&new_config, incomingData, sizeof(new_config)); // TODO: check for valid mac @@ -30,16 +32,12 @@ void on_data_recv(const uint8_t *mac, const uint8_t *incomingData, int len) preferences.begin("config", false); if (!preferences.isKey("host")) { preferences.putBytes("host", new_config.host, sizeof(new_config.host)); - Serial.println("host mac saved to flash"); - } else{ - Serial.println("host mac already exists"); - }// host change shouldn't be an issue + ESP_LOGI(TAG, "host MAC address saved to flash"); + } // host change shouldn't be an issue preferences.end(); // sync time Time::getInstance().setTime( new_config.time_millis); // see https://www.esp32.com/viewtopic.php?t=9965, maybe this needs an offset - Serial.println("Saved Time: " + (String) new_config.time_millis); - Serial.flush(); } esp_err_t espnow_setup() @@ -55,7 +53,11 @@ esp_err_t espnow_setup() get_host_mac(hostInfo.peer_addr); // check if there is a host saved in flash mem, broadcast otherwise hostInfo.channel = 0; - hostInfo.encrypt = 0; + + // TODO: PMK is used to encrypt LMK with the AES-128 algorithm. Call esp_now_set_pmk() to set PMK. If PMK is not + // set, a default PMK will be used. + // https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/network/esp_now.html + hostInfo.encrypt = false; esp_now_add_peer(&hostInfo); esp_now_register_recv_cb(on_data_recv); @@ -63,29 +65,3 @@ esp_err_t espnow_setup() return ESP_OK; } - -esp_err_t espnow_send_message(const Message& message){ - Serial.println("sending Message"); - esp_err_t success; - ClientDataPackage dataP = message.get_client_data_package(); - uint8_t recipient; - get_host_mac(&recipient); - - success = esp_now_send(&recipient, (uint8_t *) &dataP, sizeof(ClientDataPackage)); - // if(success != ESP_OK){ - // if(!ram_cache_is_full()){ - // ram_cache_push(*data); - // } - // } - - for (int i = 0; i < dataP.amountData; i++) { - Serial.println(dataP.values[i]); - } - - Serial.println((String) "time sent: " + dataP.timestamp); - Serial.println((String) "Send status: " + success); - Serial.println(); - Serial.println("done"); - Serial.flush(); - return success; -} diff --git a/client/client/lib/espnow/src/ESPNow.hpp b/client/client/lib/espnow/src/ESPNow.hpp index e4ac43b351c4431e8a1bd1b15740ae5fe085e2fe..c28cfe2ba1c2ee181c0950695381aa938000c13b 100644 --- a/client/client/lib/espnow/src/ESPNow.hpp +++ b/client/client/lib/espnow/src/ESPNow.hpp @@ -3,6 +3,7 @@ #include "Message.hpp" #include "Time.hpp" +#include "esp_log.h" #include "ram_caching.hpp" #include <ClientDataPackage.hpp> #include <ESP32Time.h> @@ -16,7 +17,7 @@ typedef struct config { } config; esp_err_t espnow_setup(); -esp_err_t espnow_send_message(const Message& message); +//esp_err_t espnow_send_message(const Message& message); bool is_host_defined(); void get_host_mac(uint8_t *destination); void on_data_sent(const uint8_t *mac_addr, esp_now_send_status_t status); diff --git a/client/client/lib/espnow/src/Message.cpp b/client/client/lib/espnow/src/Message.cpp index 6975ab6cd228ab218df9759abddc498a082c288c..7de1fc9d38ed4ea322994c52bb6a608ff74d332a 100644 --- a/client/client/lib/espnow/src/Message.cpp +++ b/client/client/lib/espnow/src/Message.cpp @@ -1,29 +1,45 @@ #include "Message.hpp" -void Message::add_data(float value, int identifier) +#include <utility> + +static const char *TAG = "MESSAGE"; + +esp_err_t Message::send() const { - if (data.amountData < NUM_SENSORS) { - data.values[data.amountData] = value; - data.identifiers[data.amountData] = identifier; - data.amountData++; + ESP_LOGI(TAG, "Sending message"); + esp_err_t success; + auto messageData = getMessageAsMinifiedJsonString(); + + // conversion from std::string to c_str adds null terminator, which is why we add 1 to message length + success = esp_now_send(recipient, (uint8_t *)messageData.c_str(), (messageData.length() + 1) * sizeof(char)); + if (success != ESP_OK) { + ESP_LOGE(TAG, "Error sending the data"); + // TODO REWRITE FOR JSON + // if (!ram_cache_is_full()) { + // // ram_cache_push(messageData); + // } } + ESP_LOGD(TAG, "Sent data: %s", messageData.c_str()); + + ESP_LOGD(TAG, "time sent: %l", clientDataPackage.getTimestamp()); + ESP_LOGD(TAG, "send status: %d", success); + + return success; } -ClientDataPackage Message ::get_client_data_package() const +std::string Message::getMessageAsMinifiedJsonString() const { - return data; + return clientDataPackage.getDataPackageAsMinifiedJsonString(); } -Message ::Message() +Message::Message(ClientDataPackage data) : clientDataPackage(std::move(data)) { // check for existing host mac address, use broadcast otherwise - - data.amountData = 0; - data.timestamp = Time::getInstance().getMillis(); // I am assuming we are not sending data from Unix Epoch + get_host_mac(recipient); } - -Message ::Message(ClientDataPackage old_data) +Message::Message(MeasurementData const &data, const SensorInformation &information, unsigned long timestamp) + : clientDataPackage(data, information, timestamp) { - data = old_data; - // memcpy(&data, &old_data, sizeof(data)); -} \ No newline at end of file + // check for existing host mac address, use broadcast otherwise + get_host_mac(recipient); +} diff --git a/client/client/lib/espnow/src/Message.hpp b/client/client/lib/espnow/src/Message.hpp index 397ca6f707105be90fb76add8200b8edef93c8ed..3711df244474bb1f7e38bb50bdbac029e73681e0 100644 --- a/client/client/lib/espnow/src/Message.hpp +++ b/client/client/lib/espnow/src/Message.hpp @@ -1,8 +1,11 @@ #pragma once #include "ClientDataPackage.hpp" +#include "ESPNow.hpp" #include "Time.hpp" +#include "esp_log.h" #include <Arduino.h> +#include <ArduinoJson.h> #include <ESP32Time.h> #include <esp_now.h> @@ -10,11 +13,14 @@ // if more things are sent from the host the name might not be accurate anymore class Message { public: - Message(); - Message(ClientDataPackage old_data); - void add_data(float value, int identifier); - ClientDataPackage get_client_data_package() const; + + explicit Message(ClientDataPackage data); + + Message(MeasurementData const &data, const SensorInformation &information, unsigned long timestamp); + esp_err_t send() const; + [[nodiscard]] std::string getMessageAsMinifiedJsonString() const; private: - ClientDataPackage data; + ClientDataPackage clientDataPackage; + uint8_t recipient[6]{}; }; \ No newline at end of file diff --git a/client/client/lib/ina219/ina219.cpp b/client/client/lib/ina219/ina219.cpp new file mode 100644 index 0000000000000000000000000000000000000000..def6a9d73acefe00e1a160a1c3fc2ba64ab2099d --- /dev/null +++ b/client/client/lib/ina219/ina219.cpp @@ -0,0 +1,35 @@ +#include "ina219.hpp" + +void ForteINA219 ::setup() +{ + Wire.begin(I2C_SDA, I2C_SCL); + if (!ina219.init()) { + // Sensor init went wrong + ESP_LOGW(sensorInformation.getSensorName().c_str(), "Initialization failed"); + return; + } +} + +out_data_ina219 ForteINA219 ::readData() +{ + if (!ina219.getOverflow()) { + data.shuntVoltage_mV = ina219.getShuntVoltage_mV(); + data.busVoltage_V = ina219.getBusVoltage_V(); + data.current_mA = ina219.getCurrent_mA(); + data.power_mW = ina219.getBusPower(); + data.loadVoltage_V = data.busVoltage_V + (data.shuntVoltage_mV / 1000); + data.ina219_overflow = ina219.getOverflow(); + + return data; + } else + return data; +} + +std::list<Message> ForteINA219::buildMessages() +{ + throw "Not yet implemented"; +} +SensorInformation ForteINA219::getSensorInformation() const +{ + return sensorInformation; +} diff --git a/client/client/lib/ina219/ina219.hpp b/client/client/lib/ina219/ina219.hpp new file mode 100644 index 0000000000000000000000000000000000000000..4a34d9591a325f9232f90ef61b4a74077fe1cf51 --- /dev/null +++ b/client/client/lib/ina219/ina219.hpp @@ -0,0 +1,33 @@ +#ifndef _INA219 +#define _INA219 + +#include "ForteSensor.hpp" +#include "Message.hpp" +#include "Pinout.hpp" +#include "Wire.h" +#include "esp_log.h" +#include <INA219_WE.h> + +struct out_data_ina219 { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; +}; + +class ForteINA219 : public ForteSensor<out_data_ina219> { + public: + void setup() override; + out_data_ina219 readData() override; + std::list<Message> buildMessages() override; + [[nodiscard]] SensorInformation getSensorInformation() const override; + + private: + INA219_WE ina219; + out_data_ina219 data; + const SensorInformation sensorInformation{"INA219", Protocol::I2C}; +}; + +#endif \ No newline at end of file diff --git a/client/client/lib/scd30/scd30.cpp b/client/client/lib/scd30/scd30.cpp new file mode 100644 index 0000000000000000000000000000000000000000..507d815ea7c401a4872aec3f7a4e2567409d3ddb --- /dev/null +++ b/client/client/lib/scd30/scd30.cpp @@ -0,0 +1,32 @@ +#include "scd30.hpp" + +void ForteSCD30 ::setup() +{ + Wire.begin(I2C_SDA, I2C_SCL); + if (!airSensor.begin()) { + // Sensor init went wrong + ESP_LOGW(sensorInformation.getSensorName().c_str(), "Initialization failed."); + return; + } +} + +out_data_scd30 ForteSCD30 ::readData() +{ + if (airSensor.dataAvailable()) { + data.C02 = airSensor.getCO2(); + data.Temperature = airSensor.getTemperature(); + data.Humidity = airSensor.getHumidity(); + + return data; + } + throw NoDataAvailableException(); +} + +std::list<Message> ForteSCD30::buildMessages() +{ + throw "Not yet implemented"; +} +SensorInformation ForteSCD30::getSensorInformation() const +{ + return sensorInformation; +} diff --git a/client/client/lib/scd30/scd30.hpp b/client/client/lib/scd30/scd30.hpp new file mode 100644 index 0000000000000000000000000000000000000000..db3e85500924db80ac3c0b5cd3698314564f6fd6 --- /dev/null +++ b/client/client/lib/scd30/scd30.hpp @@ -0,0 +1,31 @@ +#ifndef _SCD30 +#define _SCD30 + +#include "ForteSensor.hpp" +#include "Message.hpp" +#include "NoDataAvailableException.hpp" +#include "Pinout.hpp" +#include "esp_log.h" +#include <SparkFun_SCD30_Arduino_Library.h> +#include <Wire.h> + +struct out_data_scd30 { + float C02; + float Temperature; + float Humidity; +}; + +class ForteSCD30 : public ForteSensor<out_data_scd30> { + public: + void setup() override; + out_data_scd30 readData() override; + std::list<Message> buildMessages() override; + [[nodiscard]] SensorInformation getSensorInformation() const override; + + private: + SCD30 airSensor; + out_data_scd30 data; + const SensorInformation sensorInformation{"SCD30", Protocol::I2C}; +}; + +#endif \ No newline at end of file diff --git a/client/client/platformio.ini b/client/client/platformio.ini index 72fbedb2a3fadf885ac030f693513bd753f26172..28cc58c3f73df2de36e934c0cb382f9978cf9125 100644 --- a/client/client/platformio.ini +++ b/client/client/platformio.ini @@ -13,6 +13,21 @@ platform = espressif32 board = esp32-c3-devkitm-1 framework = arduino monitor_speed = 115200 -lib_deps = - fbiego/ESP32Time@^1.1.0 +; C++17 https://community.platformio.org/t/esp32-c-17-toolchain-missing-std-optional/25850/6 +; we use c++17 features (i.e. optionals in ClientDataPackage.hpp) +build_flags = + -I include + -DCORE_DEBUG_LEVEL=5 + -std=gnu++17 +build_unflags = -std=gnu++11 +lib_deps = + sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + adafruit/Adafruit ADS1X15@^2.4.0 + wollewald/INA219_WE@^1.3.1 + adafruit/Adafruit BusIO@^1.13.2 + Adafruit_I2CDevice + SPI + envirodiy/SDI-12@^2.1.4 + fbiego/ESP32Time@^2.0.0 bblanchon/ArduinoJson@^6.19.4 diff --git a/client/client/src/main.cpp b/client/client/src/main.cpp index 1c549ba722451f99037e2fb54643cdb5dfc91636..bf964c0c5c0280b41dc8e0a514f76408276314d0 100644 --- a/client/client/src/main.cpp +++ b/client/client/src/main.cpp @@ -1,44 +1,44 @@ -#include "ESPNow.hpp" -#include "ram_caching.hpp" +#include "../lib/dr26_analogue/dr26.hpp" +#include "NoDataAvailableException.hpp" +#include "esp_log.h" #include <Arduino.h> -#include <ArduinoJson.h> -#include "Time.hpp" -#include "f_deep_sleep.hpp" +#include <drs26.hpp> +#include <ina219.hpp> +#include <scd30.hpp> +// #include "esp32-hal-log.h" +static const std::string TAG = "MAIN"; +ForteDRS26 drs26; void setup() { - - // put your setup code here, to run once: Serial.begin(115200); - while (!Serial) - ; - Serial.flush(); + drs26.setup(); + espnow_setup(); - esp_err_t result = espnow_setup(); + // log_e("Setup complete."); } -int counter = 0; - void loop() { - // put your main code here, to run repeatedly: - Message new_data = Message{}; - new_data.add_data(++counter * 1.1, 0); - new_data.add_data(counter * 1.2, 1); - new_data.add_data(counter * 1.3, 2); - espnow_send_message(new_data); - - // if(!ram_cache_is_empty()){ - // ClientDataPackage old_data = ram_cache_pop(); - // Message* resend_message = new Message(old_data); - // resend_message->send(); - // delete resend_message;u - // } - Serial.println("Saved Time Loop: " + Time::getInstance().getTime("%c")); - - Serial.println("delaying..."); - Serial.flush(); - delay(5000); // 5 second receive window - // deep_sleep(900); // go to sleep for 15 mins (900s) -} \ No newline at end of file + + out_data_drs26 data{}; + + try { + // data = drs26.readData(); + auto messages = drs26.buildMessages(); + + for (const Message &message : messages) { + message.send(); + } + + } catch (const NoDataAvailableException &e) { + std::cerr << e.what() << '\n'; + } + + ESP_LOGE(TAG.c_str(), "Sensor Circumference: "); + // log_e("Temperature: "); + // log_e("Id: "); + + delay(5000); +} diff --git a/client/client/test/TestClientDataPackage.cpp b/client/client/test/TestClientDataPackage.cpp new file mode 100644 index 0000000000000000000000000000000000000000..eea536cfbc63f7c6dc9797d8288a5887c384aa0c --- /dev/null +++ b/client/client/test/TestClientDataPackage.cpp @@ -0,0 +1,46 @@ +// +// Created by zoe on 10/6/22. +// + +#include "TestClientDataPackage.hpp" +#include "MeasurementData.hpp" +#include "Protocol.hpp" +#include <vector> + +void test_export_to_json() +{ + auto dataPackage = + ClientDataPackage(MeasurementData{1.1, 0, {}, "TEMPERATURE"}, SensorInformation{"DRS26", Protocol::Analog}, 0); + + std::string json = dataPackage.getDataPackageAsMinifiedJsonString(); + // expected + std::string expected = + R"({"sensorName":"DRS26","timestamp":0,"protocol":"ANALOG","value":1.1,"channel":0,"measurementType":"TEMPERATURE"})"; + + TEST_ASSERT_EQUAL_STRING(expected.c_str(), json.c_str()); +} +void test_export_to_json_no_analog() +{ + auto dataPackage = + ClientDataPackage(MeasurementData{1.1, {}, {}, "TEMPERATURE"}, SensorInformation{"DRS26_DIGITAL", Protocol::I2C}, 0); + + std::string json = dataPackage.getDataPackageAsMinifiedJsonString(); + // expected + std::string expected = + R"({"sensorName":"DRS26_DIGITAL","timestamp":0,"protocol":"I2C","value":1.1,"measurementType":"TEMPERATURE"})"; + + TEST_ASSERT_EQUAL_STRING(expected.c_str(), json.c_str()); +} + +void test_export_to_json_no_channel_no_address() +{ + auto dataPackage = + ClientDataPackage(MeasurementData{1.1,"TEMPERATURE"}, SensorInformation{"DRS26_DIGITAL", Protocol::I2C}, 0); + + std::string json = dataPackage.getDataPackageAsMinifiedJsonString(); + // expected + std::string expected = + R"({"sensorName":"DRS26_DIGITAL","timestamp":0,"protocol":"I2C","value":1.1,"measurementType":"TEMPERATURE"})"; + + TEST_ASSERT_EQUAL_STRING(expected.c_str(), json.c_str()); +} \ No newline at end of file diff --git a/client/client/test/TestClientDataPackage.hpp b/client/client/test/TestClientDataPackage.hpp new file mode 100644 index 0000000000000000000000000000000000000000..fa5f20396c423714daff914dfd16b24c8cd6cff5 --- /dev/null +++ b/client/client/test/TestClientDataPackage.hpp @@ -0,0 +1,16 @@ +// +// Created by zoe on 10/6/22. +// + +#ifndef CLIENT_TESTCLIENTDATAPACKAGE_HPP +#define CLIENT_TESTCLIENTDATAPACKAGE_HPP + +#include <unity.h> +#include <Arduino.h> +#include <ClientDataPackage.hpp> + +void test_export_to_json(); +void test_export_to_json_no_analog(); +void test_export_to_json_no_channel_no_address(); + +#endif // CLIENT_TESTCLIENTDATAPACKAGE_HPP diff --git a/client/client/test/main.cpp b/client/client/test/main.cpp index 82d68817015b01f036c346b18fa79601a5e842aa..5ad5f3f7a0c3626689b5093cfbec886b6afa4e96 100644 --- a/client/client/test/main.cpp +++ b/client/client/test/main.cpp @@ -1,7 +1,7 @@ #include "TestESPNow.hpp" -#include "TestMessage.hpp" #include <Arduino.h> #include <unity.h> +#include "TestClientDataPackage.hpp" void setup() { @@ -9,8 +9,9 @@ void setup() UNITY_BEGIN(); RUN_TEST(test_on_data_recv_valid_config); - RUN_TEST(test_on_data_recv); - RUN_TEST(test_new_message_filled); + RUN_TEST(test_export_to_json); + RUN_TEST(test_export_to_json_no_analog); + RUN_TEST(test_export_to_json_no_channel_no_address); UNITY_END(); } diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/.gitignore b/code-snippets/client/DRS26/Example_forte_libary/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6dea8206d255251b692bc51b06adced35f789ce8 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/.gitignore @@ -0,0 +1,6 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch +!lib/ diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/.vscode/extensions.json b/code-snippets/client/DRS26/Example_forte_libary/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/include/README b/code-snippets/client/DRS26/Example_forte_libary/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/include/forte_sensor.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/include/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/include/pinout.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..7de77a4b3aab0cc8559c510091fd238db43b729d --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 +#define SDI_DATA 8 +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/README b/code-snippets/client/DRS26/Example_forte_libary/client/lib/README new file mode 100644 index 0000000000000000000000000000000000000000..6debab1e8b4c3faa0d06f4ff44bce343ce2cdcbf --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include <Foo.h> +#include <Bar.h> + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/drs26.cpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/drs26.cpp new file mode 100644 index 0000000000000000000000000000000000000000..4c3378ae05042fcd0bdc89bc905060be97dcd99e --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/drs26.cpp @@ -0,0 +1,42 @@ +#include <drs26.hpp> +/* +It happens for some reason that the sensor cant get reached every 2 time +Because the sensor use sdi12 protocoll we have to wait aproxemettly 1 secound between the commands +It is not known how lond the response takes so we use a while loop which can be a risk wehre the programm can get stuck +*/ + +void Forte_DRS26 ::setup() +{ + drs26.begin(SDI_DATA); +} + +out_data_drs26 *Forte_DRS26 ::read_data() +{ + String sdiResponse = ""; + String measurement_command="1M!"; //The drs26 sensor uses the sdi12 protocoll , in the sdi12 protocoll is the measurement command is specified as 1M!=Sebsir measurement request at adress 1 + String data_command="1D0!"; //and the followed data command 1D0! = Sensor data request at adress 1 + + drs26.sendCommand(measurement_command); + delay(1000); + drs26.sendCommand(data_command); + + while (drs26.available()) + { + char next_character = drs26.read(); + if ((next_character != '\n') && (next_character != '\r')) + { + sdiResponse += next_character; + delay(10); // 1 character ~ 7.5ms + } + } + + if (sdiResponse.length() > 1) + { + data.id = sdiResponse.substring(0, 8).toInt(); + data.circumference = sdiResponse.substring(9, 15).toFloat(); + data.temperatur = sdiResponse.substring(16, 22).toFloat(); + return &data; + } + + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/drs26.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/drs26.hpp new file mode 100644 index 0000000000000000000000000000000000000000..83d02ae0a5a5f88e556e1f4a811dc6510b122f98 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/drs26.hpp @@ -0,0 +1,27 @@ +#ifndef _DRS26 +#define _DRS26 + +#include <forte_sensor.hpp> +#include <SDI12.h> +#include <pinout.hpp> +#include "Wire.h" + + +struct out_data_drs26 { + int id; + float circumference; + float temperatur; + }; + + +class Forte_DRS26 : public Forte_Sensor{ + public: + void setup(); + out_data_drs26* read_data(); + + private: + SDI12 drs26; + out_data_drs26 data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/forte_sensor.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/pinout.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a61eb93d3898e7beea9550f34651b0a0f00ae75f --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/drs26_digital/pinout.hpp @@ -0,0 +1,6 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for SDI12 +#define SDI_DATA 8 +#endif diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/forte_sensor.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/ina219.cpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/ina219.cpp new file mode 100644 index 0000000000000000000000000000000000000000..df1fa146bc49b7e1f824bec42e7e860c260cd6b1 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/ina219.cpp @@ -0,0 +1,28 @@ +#include "ina219.hpp" +#include "Wire.h" +#include <SparkFun_SCD30_Arduino_Library.h> +#include <INA219_WE.h> + +void Forte_INA219 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!ina219.init()){ + // Sensor init went wrong + return; + } +} + +out_data* Forte_INA219 :: read_data(){ + if(!ina219.getOverflow()) + { + data.shuntVoltage_mV = ina219.getShuntVoltage_mV(); + data.busVoltage_V= ina219.getBusVoltage_V(); + data.current_mA= ina219.getCurrent_mA(); + data.power_mW= ina219.getBusPower(); + data.loadVoltage_V = data.busVoltage_V + (data.shuntVoltage_mV/1000); + data.ina219_overflow=ina219.getOverflow(); + + return &data; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/ina219.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/ina219.hpp new file mode 100644 index 0000000000000000000000000000000000000000..91b8c4ba9edf1b6603737e8c0b7aa777b5e1594a --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/ina219.hpp @@ -0,0 +1,30 @@ +#ifndef _INA219 +#define _INA219 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> +#include <INA219_WE.h> + + +struct out_data { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + }; + + +class Forte_INA219 : public Forte_Sensor{ + public: + void setup(); + out_data* read_data(); + + private: + INA219_WE ina219; + out_data data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/pinout.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9d336e45e266d1952527918387a8d36679bc3ae4 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/ina219/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 5 +#define I2C_SCL 4 + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/forte_sensor.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/pinout.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/scd30.cpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/scd30.cpp new file mode 100644 index 0000000000000000000000000000000000000000..84276568291b2d87c23222bf57e286cf7f5ab03b --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/scd30.cpp @@ -0,0 +1,24 @@ +#include "scd30.hpp" +#include "Wire.h" +#include <SparkFun_SCD30_Arduino_Library.h> + +void Forte_SCD30 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!airSensor.begin()){ + // Sensor init went wrong + return; + } +} + +float* Forte_SCD30 :: read_data(){ + if(airSensor.dataAvailable()) + { + data1[0] = airSensor.getCO2(); + data1[1] = airSensor.getTemperature(); + data1[2] = airSensor.getHumidity(); + + return data1; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/scd30.hpp b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/scd30.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a95ab8ea5467e932f4a2bd47b872acf1024cd87b --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/lib/scd30/scd30.hpp @@ -0,0 +1,18 @@ +#ifndef _SCD30 +#define _SCD30 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> + +class Forte_SCD30 : public Forte_Sensor{ + public: + void setup(); + float* read_data(); + + private: + SCD30 airSensor; + float data1[3]; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/platformio.ini b/code-snippets/client/DRS26/Example_forte_libary/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..774bd23457cc773cf1c6b4adfc4cd74961e766a9 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/platformio.ini @@ -0,0 +1,19 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = + sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + wollewald/INA219_WE@^1.3.1 + envirodiy/SDI-12@^2.1.4 diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/src/main.cpp b/code-snippets/client/DRS26/Example_forte_libary/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..d65495a98003a80b59b410efad06dc93502c944a --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/src/main.cpp @@ -0,0 +1,36 @@ + +#include <Arduino.h> + +#include <drs26.hpp> + +Forte_DRS26 sensor1; + +void setup() { + + Serial.begin(9600); + sensor1.setup(); +} + +void loop() { + + + out_data_drs26* data; + sensor1.read_data(); + + data = sensor1.read_data(); + + if(data==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Sensor ID "); Serial.println(data->id); + Serial.print("Cicumfence "); Serial.println(data->circumference); + Serial.print("Temperature "); Serial.println(data->temperatur); + Serial.println(); + } + delay(5000); + +} + diff --git a/code-snippets/client/DRS26/Example_forte_libary/client/test/README b/code-snippets/client/DRS26/Example_forte_libary/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/DRS26/Example_forte_libary/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/DRS26/Example_forte_libary/drs26_breadboard.png b/code-snippets/client/DRS26/Example_forte_libary/drs26_breadboard.png new file mode 100644 index 0000000000000000000000000000000000000000..f92d811bc6abc726a47edf07774ada8e1c4f4a09 Binary files /dev/null and b/code-snippets/client/DRS26/Example_forte_libary/drs26_breadboard.png differ diff --git a/code-snippets/client/ESPcam/.gitignore b/code-snippets/client/ESPcam/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..89cc49cbd652508924b868ea609fa8f6b758ec56 --- /dev/null +++ b/code-snippets/client/ESPcam/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/code-snippets/client/ESPcam/.vscode/extensions.json b/code-snippets/client/ESPcam/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/ESPcam/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/ESPcam/include/README b/code-snippets/client/ESPcam/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/ESPcam/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/ESPcam/platformio.ini b/code-snippets/client/ESPcam/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..51be1376266f8dbbf7633667bf84b283f5403a6f --- /dev/null +++ b/code-snippets/client/ESPcam/platformio.ini @@ -0,0 +1,17 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32cam] +platform = espressif32 +board = esp32cam +framework = arduino +monitor_speed = 115200 +lib_deps = sensirion/arduino-sht@^1.2.2 + adafruit/RTClib @^2.1.1 \ No newline at end of file diff --git a/code-snippets/client/ESPcam/src/main.cpp b/code-snippets/client/ESPcam/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ac20e29084b8801963f6875cd65dda2241634643 --- /dev/null +++ b/code-snippets/client/ESPcam/src/main.cpp @@ -0,0 +1,321 @@ +/* +Snippet content: +Takes pictures with ESP32-CAM, saves images to MicroSD Card. +Measures air temperature and relative humidity from SHT85. + +We use the ESP-CAM for the SHT85 readout because of the +limited wire length that can be used for I2C sensors - the +camera sits at the top of the mast next to the SHT85 sensor. + +ESP-CAM code partially copied from +https://dronebotworkshop.com/esp32-cam-microsd/ + +NOTE: To flash the ESP-CAM, pin IO1 has to be connected to GND! +TODO: because of this limitation, it would be nice to implement +over-the-air updates for the camera at one point. +*/ + +// Include Required Libraries +// I2C: SHT85, RTC +#include <Arduino.h> +#include <Wire.h> +#include "SHTSensor.h" // sensirion/arduino-sht@^1.2.2 +#include "RTClib.h" // adafruit/RTClib @^2.1.1 +#include "SPI.h" + +// Camera libraries +#include "esp_camera.h" +#include "soc/soc.h" +#include "soc/rtc_cntl_reg.h" +#include "driver/rtc_io.h" + +// MicroSD Libraries +#include "FS.h" +#include "SD_MMC.h" + +// Pin definitions for CAMERA_MODEL_AI_THINKER +#define PWDN_GPIO_NUM 32 +#define RESET_GPIO_NUM -1 +#define XCLK_GPIO_NUM 0 +#define SIOD_GPIO_NUM 26 +#define SIOC_GPIO_NUM 27 +#define Y9_GPIO_NUM 35 +#define Y8_GPIO_NUM 34 +#define Y7_GPIO_NUM 39 +#define Y6_GPIO_NUM 36 +#define Y5_GPIO_NUM 21 +#define Y4_GPIO_NUM 19 +#define Y3_GPIO_NUM 18 +#define Y2_GPIO_NUM 5 +#define VSYNC_GPIO_NUM 25 +#define HREF_GPIO_NUM 23 +#define PCLK_GPIO_NUM 22 + +// Pin definitions for I2C (SHT85, RTC) +// This is different from the pins on the ESP32-C3-DevKit boards! +#define SDA 12 +#define SCL 13 + +// LED control +#define LEDpin 4 + +// string for saving the time +char time_string[20]; + +// number of images to take: the last one is saved +// this is done because the first few images have a green tint otherwise +int img_number = 3; + +SHTSensor sht(SHTSensor::SHT85); // I2C address: 0x44 +RTC_DS3231 rtc; // I2C address: 0x68 +camera_config_t config; // camera configuration parameters + + + +void configESPCamera() { + // Configure Camera parameters + + config.ledc_channel = LEDC_CHANNEL_0; + config.ledc_timer = LEDC_TIMER_0; + config.pin_d0 = Y2_GPIO_NUM; + config.pin_d1 = Y3_GPIO_NUM; + config.pin_d2 = Y4_GPIO_NUM; + config.pin_d3 = Y5_GPIO_NUM; + config.pin_d4 = Y6_GPIO_NUM; + config.pin_d5 = Y7_GPIO_NUM; + config.pin_d6 = Y8_GPIO_NUM; + config.pin_d7 = Y9_GPIO_NUM; + config.pin_xclk = XCLK_GPIO_NUM; + config.pin_pclk = PCLK_GPIO_NUM; + config.pin_vsync = VSYNC_GPIO_NUM; + config.pin_href = HREF_GPIO_NUM; + config.pin_sscb_sda = SIOD_GPIO_NUM; + config.pin_sscb_scl = SIOC_GPIO_NUM; + config.pin_pwdn = PWDN_GPIO_NUM; + config.pin_reset = RESET_GPIO_NUM; + config.xclk_freq_hz = 20000000; + config.pixel_format = PIXFORMAT_JPEG; // Choices are YUV422, GRAYSCALE, RGB565, JPEG + + // Select lower framesize if the camera doesn't support PSRAM + if (psramFound()) { + config.frame_size = FRAMESIZE_UXGA; // FRAMESIZE_ + QVGA|CIF|VGA|SVGA|XGA|SXGA|UXGA + config.jpeg_quality = 10; //10-63 lower number means higher quality + config.fb_count = 2; + } else { + config.frame_size = FRAMESIZE_SVGA; + config.jpeg_quality = 12; + config.fb_count = 1; + } + + // Initialize the Camera + esp_err_t err = esp_camera_init(&config); + + if (err != ESP_OK) { + Serial.printf("Camera init failed with error 0x%x", err); + return; + } + + // Camera quality adjustments + sensor_t * s = esp_camera_sensor_get(); + + // TODO: this is copied from an online tutorial, it's possible that we don't need this at all! + // BRIGHTNESS (-2 to 2) + s->set_brightness(s, 0); + // CONTRAST (-2 to 2) + s->set_contrast(s, 0); + // SATURATION (-2 to 2) + s->set_saturation(s, 0); + // SPECIAL EFFECTS (0 - No Effect, 1 - Negative, 2 - Grayscale, 3 - Red Tint, 4 - Green Tint, 5 - Blue Tint, 6 - Sepia) + s->set_special_effect(s, 0); + // WHITE BALANCE (0 = Disable , 1 = Enable) + s->set_whitebal(s, 1); + // AWB GAIN (0 = Disable , 1 = Enable) + s->set_awb_gain(s, 1); + // WB MODES (0 - Auto, 1 - Sunny, 2 - Cloudy, 3 - Office, 4 - Home) + s->set_wb_mode(s, 0); + // EXPOSURE CONTROLS (0 = Disable , 1 = Enable) + s->set_exposure_ctrl(s, 1); + // AEC2 (0 = Disable , 1 = Enable) + s->set_aec2(s, 0); + // AE LEVELS (-2 to 2) + s->set_ae_level(s, 0); + // AEC VALUES (0 to 1200) + s->set_aec_value(s, 300); + // GAIN CONTROLS (0 = Disable , 1 = Enable) + s->set_gain_ctrl(s, 1); + // AGC GAIN (0 to 30) + s->set_agc_gain(s, 0); + // GAIN CEILING (0 to 6) + s->set_gainceiling(s, (gainceiling_t)0); + // BPC (0 = Disable , 1 = Enable) + s->set_bpc(s, 0); + // WPC (0 = Disable , 1 = Enable) + s->set_wpc(s, 1); + // RAW GMA (0 = Disable , 1 = Enable) + s->set_raw_gma(s, 1); + // LENC (0 = Disable , 1 = Enable) + s->set_lenc(s, 1); + // HORIZ MIRROR (0 = Disable , 1 = Enable) + s->set_hmirror(s, 0); + // VERT FLIP (0 = Disable , 1 = Enable) + s->set_vflip(s, 0); + // DCW (0 = Disable , 1 = Enable) + s->set_dcw(s, 1); + // COLOR BAR PATTERN (0 = Disable , 1 = Enable) + s->set_colorbar(s, 0); +} + +void initMicroSDCard() { + // Start the MicroSD card + Serial.println("Mounting MicroSD Card"); + if (!SD_MMC.begin("/sdcard", true)) { // the arguments disable the LED when using the SD card - leave them there! + Serial.println("MicroSD Card Mount Failed"); + return; + } + uint8_t cardType = SD_MMC.cardType(); + if (cardType == CARD_NONE) { + Serial.println("No MicroSD Card found"); + return; + } +} + +void takeNewPhoto(String path) { + // Take picture with the camera and save it + + // Take multiple pictures with a short break in between + // necessary for the camera to auto-adjust settings + camera_fb_t * fb; + for (int i = 1; i <= img_number; i++) { + // Setup frame buffer + fb = esp_camera_fb_get(); + // digitalWrite(LEDpin, LOW); // disable flash LED if needed + + if (!fb) { + Serial.println("Camera capture failed"); + return; + } else { + Serial.println("Camera capture successful"); + } + // TODO check if this delay is necessary once the SD-card todo below + // is resolved. It's possible that it can be at least shortened. + if (i == img_number) { + delay(2000); + } + + esp_camera_fb_return(fb); + // Without this delay the image is corrupt + // TODO this delay can possibly also be optimized. + delay(1500); + + /* TODO: + The SD card throws the following error when the capture fails: + E (877528) sdmmc_cmd: sdmmc_write_sectors_dma: sdmmc_send_cmd returned 0x109 + E (877528) diskio_sdmmc: sdmmc_write_blocks failed (265) + This happens infrequently, say every 10th image or so. + If this happens, one more new image should be taken and saved + */ + } + + // Save picture to microSD card + fs::FS &fs = SD_MMC; + File file = fs.open(path.c_str(), FILE_WRITE); + if (!file) { + Serial.println("Failed to open file in write mode"); + } + else { + file.write(fb->buf, fb->len); // payload (image), payload length + Serial.printf("Saved file to path: %s\n", path.c_str()); + } + // Close the file + file.close(); + + // Return the frame buffer back to the driver for reuse + esp_camera_fb_return(fb); +} + + +void readSHT(){ + // Read data from the initialized SHT85 + // TODO send via esp now instead of printing + if (sht.readSample()) { + Serial.print("T: "); + Serial.println(sht.getTemperature(), 2); + Serial.print("RH: "); + Serial.println(sht.getHumidity(), 2); + } else { + Serial.print("Error in readSample()\n"); + } +} + +void readRTC(){ + // This is used for a picture timestamp (name of the image) + rtc.begin(); + DateTime now = rtc.now(); + sprintf(time_string, "%04d-%02d-%02dT%02d-%02d-%02d", now.year(), now.month(), now.day(), now.hour(), now.minute(), now.second()); + Serial.println(time_string); +} + +void readI2C(){ + // Start the I2C bus + Wire.begin(SDA, SCL); + delay(100); // let serial console settle + + // initiate the SHT85 sensor + Serial.println(""); + if (sht.init()) { + Serial.println("SHT initialization successful"); + } else { + Serial.println("SHT initialization failed"); + } + + // T + RH reading + readSHT(); + // real-time clock reading + readRTC(); + delay(100); + + // end I2C to free the pins to be used by the SD card + Wire.end(); +} + + +void setup() { + // control of the LED pin + pinMode(LEDpin, OUTPUT); + // Disable brownout detector + WRITE_PERI_REG(RTC_CNTL_BROWN_OUT_REG, 0); + + // Start Serial + Serial.begin(115200); + + // Initialize the camera + Serial.print("Initializing the camera module..."); + configESPCamera(); + Serial.println("Camera OK!"); + +} + +void loop() { + // initiate I2C, read SHT+RTC, end I2C + readI2C(); + + // Initialize the MicroSD + Serial.print("Initializing the MicroSD card module... "); + initMicroSDCard(); + + // Path where new image will be saved in MicroSD card + String path = "/" + String(time_string) + ".jpg"; + Serial.printf("Picture file name: %s\n", path.c_str()); + + // Take and save a picture + takeNewPhoto(path); + + // Unmount SD card to free the pins for I2C use + SD_MMC.end(); + + // Delay for specified period + delay(1000); +} + + + diff --git a/code-snippets/client/ESPcam/test/README b/code-snippets/client/ESPcam/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/ESPcam/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/INA219/Example/basic_example_arduino/basic_example_arduino.ino b/code-snippets/client/INA219/Example/basic_example_arduino/basic_example_arduino.ino new file mode 100644 index 0000000000000000000000000000000000000000..0b8e2e8b42368135e2374507276397b272cb2964 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_arduino/basic_example_arduino.ino @@ -0,0 +1,105 @@ +#include <Wire.h> +#include <INA219_WE.h> +/* There are several ways to create your INA219 object: + * INA219_WE ina219 = INA219_WE() -> uses Wire / I2C Address = 0x40 + * INA219_WE ina219 = INA219_WE(ICM20948_ADDR) -> uses Wire / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2) -> uses the TwoWire object wire2 / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2, I2C_ADDRESS) -> all together + * Successfully tested with two I2C busses on an ESP32 + */ + +INA219_WE ina219 = INA219_WE(); +int sda_pin = 5; // GPIO16 as I2C SDA +int scl_pin = 4; // GPIO17 as I2C SCL +void setup() { + Serial.begin(9600); + Wire.setPins(sda_pin, scl_pin); + Wire.begin(); + if(!ina219.init()){ + Serial.println("INA219 not connected!"); + } + + /* Set ADC Mode for Bus and ShuntVoltage + * Mode * * Res / Samples * * Conversion Time * + BIT_MODE_9 9 Bit Resolution 84 µs + BIT_MODE_10 10 Bit Resolution 148 µs + BIT_MODE_11 11 Bit Resolution 276 µs + BIT_MODE_12 12 Bit Resolution 532 µs (DEFAULT) + SAMPLE_MODE_2 Mean Value 2 samples 1.06 ms + SAMPLE_MODE_4 Mean Value 4 samples 2.13 ms + SAMPLE_MODE_8 Mean Value 8 samples 4.26 ms + SAMPLE_MODE_16 Mean Value 16 samples 8.51 ms + SAMPLE_MODE_32 Mean Value 32 samples 17.02 ms + SAMPLE_MODE_64 Mean Value 64 samples 34.05 ms + SAMPLE_MODE_128 Mean Value 128 samples 68.10 ms + */ + //ina219.setADCMode(SAMPLE_MODE_128); // choose mode and uncomment for change of default + + /* Set measure mode + POWER_DOWN - INA219 switched off + TRIGGERED - measurement on demand + ADC_OFF - Analog/Digital Converter switched off + CONTINUOUS - Continuous measurements (DEFAULT) + */ + // ina219.setMeasureMode(CONTINUOUS); // choose mode and uncomment for change of default + + /* Set PGain + * Gain * * Shunt Voltage Range * * Max Current (if shunt is 0.1 ohms) * + PG_40 40 mV 0.4 A + PG_80 80 mV 0.8 A + PG_160 160 mV 1.6 A + PG_320 320 mV 3.2 A (DEFAULT) + */ + // ina219.setPGain(PG_320); // choose gain and uncomment for change of default + + /* Set Bus Voltage Range + BRNG_16 -> 16 V + BRNG_32 -> 32 V (DEFAULT) + */ + // ina219.setBusRange(BRNG_32); // choose range and uncomment for change of default + + Serial.println("INA219 Current Sensor Example Sketch - Continuous"); + + /* If the current values delivered by the INA219 differ by a constant factor + from values obtained with calibrated equipment you can define a correction factor. + Correction factor = current delivered from calibrated equipment / current delivered by INA219 + */ + // ina219.setCorrectionFactor(0.98); // insert your correction factor if necessary + + /* If you experience a shunt voltage offset, that means you detect a shunt voltage which is not + zero, although the current should be zero, you can apply a correction. For this, uncomment the + following function and apply the offset you have detected. + */ + // ina219.setShuntVoltOffset_mV(0.5); // insert the shunt voltage (millivolts) you detect at zero current +} + +void loop() { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + + shuntVoltage_mV = ina219.getShuntVoltage_mV(); + busVoltage_V = ina219.getBusVoltage_V(); + current_mA = ina219.getCurrent_mA(); + power_mW = ina219.getBusPower(); + loadVoltage_V = busVoltage_V + (shuntVoltage_mV/1000); + ina219_overflow = ina219.getOverflow(); + + Serial.print("Shunt Voltage [mV]: "); Serial.println(shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(power_mW); + if(!ina219_overflow){ + Serial.println("Values OK - no overflow"); + } + else{ + Serial.println("Overflow! Choose higher PGAIN"); + } + Serial.println(); + + delay(3000); +} diff --git a/code-snippets/client/INA219/Example/basic_example_io/.gitignore b/code-snippets/client/INA219/Example/basic_example_io/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..89cc49cbd652508924b868ea609fa8f6b758ec56 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_io/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/code-snippets/client/INA219/Example/basic_example_io/.vscode/extensions.json b/code-snippets/client/INA219/Example/basic_example_io/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_io/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/INA219/Example/basic_example_io/include/README b/code-snippets/client/INA219/Example/basic_example_io/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_io/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/INA219/Example/basic_example_io/platformio.ini b/code-snippets/client/INA219/Example/basic_example_io/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..785eef08c12434f0af85c1306c7653a68961eea6 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_io/platformio.ini @@ -0,0 +1,15 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = wollewald/INA219_WE@^1.3.1 diff --git a/code-snippets/client/INA219/Example/basic_example_io/src/main.cpp b/code-snippets/client/INA219/Example/basic_example_io/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0b8e2e8b42368135e2374507276397b272cb2964 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_io/src/main.cpp @@ -0,0 +1,105 @@ +#include <Wire.h> +#include <INA219_WE.h> +/* There are several ways to create your INA219 object: + * INA219_WE ina219 = INA219_WE() -> uses Wire / I2C Address = 0x40 + * INA219_WE ina219 = INA219_WE(ICM20948_ADDR) -> uses Wire / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2) -> uses the TwoWire object wire2 / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2, I2C_ADDRESS) -> all together + * Successfully tested with two I2C busses on an ESP32 + */ + +INA219_WE ina219 = INA219_WE(); +int sda_pin = 5; // GPIO16 as I2C SDA +int scl_pin = 4; // GPIO17 as I2C SCL +void setup() { + Serial.begin(9600); + Wire.setPins(sda_pin, scl_pin); + Wire.begin(); + if(!ina219.init()){ + Serial.println("INA219 not connected!"); + } + + /* Set ADC Mode for Bus and ShuntVoltage + * Mode * * Res / Samples * * Conversion Time * + BIT_MODE_9 9 Bit Resolution 84 µs + BIT_MODE_10 10 Bit Resolution 148 µs + BIT_MODE_11 11 Bit Resolution 276 µs + BIT_MODE_12 12 Bit Resolution 532 µs (DEFAULT) + SAMPLE_MODE_2 Mean Value 2 samples 1.06 ms + SAMPLE_MODE_4 Mean Value 4 samples 2.13 ms + SAMPLE_MODE_8 Mean Value 8 samples 4.26 ms + SAMPLE_MODE_16 Mean Value 16 samples 8.51 ms + SAMPLE_MODE_32 Mean Value 32 samples 17.02 ms + SAMPLE_MODE_64 Mean Value 64 samples 34.05 ms + SAMPLE_MODE_128 Mean Value 128 samples 68.10 ms + */ + //ina219.setADCMode(SAMPLE_MODE_128); // choose mode and uncomment for change of default + + /* Set measure mode + POWER_DOWN - INA219 switched off + TRIGGERED - measurement on demand + ADC_OFF - Analog/Digital Converter switched off + CONTINUOUS - Continuous measurements (DEFAULT) + */ + // ina219.setMeasureMode(CONTINUOUS); // choose mode and uncomment for change of default + + /* Set PGain + * Gain * * Shunt Voltage Range * * Max Current (if shunt is 0.1 ohms) * + PG_40 40 mV 0.4 A + PG_80 80 mV 0.8 A + PG_160 160 mV 1.6 A + PG_320 320 mV 3.2 A (DEFAULT) + */ + // ina219.setPGain(PG_320); // choose gain and uncomment for change of default + + /* Set Bus Voltage Range + BRNG_16 -> 16 V + BRNG_32 -> 32 V (DEFAULT) + */ + // ina219.setBusRange(BRNG_32); // choose range and uncomment for change of default + + Serial.println("INA219 Current Sensor Example Sketch - Continuous"); + + /* If the current values delivered by the INA219 differ by a constant factor + from values obtained with calibrated equipment you can define a correction factor. + Correction factor = current delivered from calibrated equipment / current delivered by INA219 + */ + // ina219.setCorrectionFactor(0.98); // insert your correction factor if necessary + + /* If you experience a shunt voltage offset, that means you detect a shunt voltage which is not + zero, although the current should be zero, you can apply a correction. For this, uncomment the + following function and apply the offset you have detected. + */ + // ina219.setShuntVoltOffset_mV(0.5); // insert the shunt voltage (millivolts) you detect at zero current +} + +void loop() { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + + shuntVoltage_mV = ina219.getShuntVoltage_mV(); + busVoltage_V = ina219.getBusVoltage_V(); + current_mA = ina219.getCurrent_mA(); + power_mW = ina219.getBusPower(); + loadVoltage_V = busVoltage_V + (shuntVoltage_mV/1000); + ina219_overflow = ina219.getOverflow(); + + Serial.print("Shunt Voltage [mV]: "); Serial.println(shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(power_mW); + if(!ina219_overflow){ + Serial.println("Values OK - no overflow"); + } + else{ + Serial.println("Overflow! Choose higher PGAIN"); + } + Serial.println(); + + delay(3000); +} diff --git a/code-snippets/client/INA219/Example/basic_example_io/test/README b/code-snippets/client/INA219/Example/basic_example_io/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/INA219/Example/basic_example_io/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/INA219/Example_forte_libary/client/.gitignore b/code-snippets/client/INA219/Example_forte_libary/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6dea8206d255251b692bc51b06adced35f789ce8 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/.gitignore @@ -0,0 +1,6 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch +!lib/ diff --git a/code-snippets/client/INA219/Example_forte_libary/client/.vscode/extensions.json b/code-snippets/client/INA219/Example_forte_libary/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/INA219/Example_forte_libary/client/include/README b/code-snippets/client/INA219/Example_forte_libary/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/INA219/Example_forte_libary/client/include/forte_sensor.hpp b/code-snippets/client/INA219/Example_forte_libary/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/include/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/include/pinout.hpp b/code-snippets/client/INA219/Example_forte_libary/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/README b/code-snippets/client/INA219/Example_forte_libary/client/lib/README new file mode 100644 index 0000000000000000000000000000000000000000..6debab1e8b4c3faa0d06f4ff44bce343ce2cdcbf --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include <Foo.h> +#include <Bar.h> + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/forte_sensor.hpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/ina219.cpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/ina219.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7f4beb3527965f301f0f9c50679189958275220c --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/ina219.cpp @@ -0,0 +1,26 @@ +#include "ina219.hpp" + + +void Forte_INA219 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!ina219.init()){ + // Sensor init went wrong + return; + } +} + +out_data_ina219* Forte_INA219 :: read_data(){ + if(!ina219.getOverflow()) + { + data.shuntVoltage_mV = ina219.getShuntVoltage_mV(); + data.busVoltage_V= ina219.getBusVoltage_V(); + data.current_mA= ina219.getCurrent_mA(); + data.power_mW= ina219.getBusPower(); + data.loadVoltage_V = data.busVoltage_V + (data.shuntVoltage_mV/1000); + data.ina219_overflow=ina219.getOverflow(); + + return &data; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/ina219.hpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/ina219.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a975ba51978c825f33740d6a84aeb7bf4f96bcd6 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/ina219.hpp @@ -0,0 +1,31 @@ +#ifndef _INA219 +#define _INA219 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <INA219_WE.h> +#include "Wire.h" + + + +struct out_data_ina219 { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + }; + + +class Forte_INA219 : public Forte_Sensor{ + public: + void setup(); + out_data_ina219* read_data(); + + private: + INA219_WE ina219; + out_data_ina219 data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/pinout.hpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9d336e45e266d1952527918387a8d36679bc3ae4 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/ina219/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 5 +#define I2C_SCL 4 + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/forte_sensor.hpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/pinout.hpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/scd30.cpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/scd30.cpp new file mode 100644 index 0000000000000000000000000000000000000000..84276568291b2d87c23222bf57e286cf7f5ab03b --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/scd30.cpp @@ -0,0 +1,24 @@ +#include "scd30.hpp" +#include "Wire.h" +#include <SparkFun_SCD30_Arduino_Library.h> + +void Forte_SCD30 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!airSensor.begin()){ + // Sensor init went wrong + return; + } +} + +float* Forte_SCD30 :: read_data(){ + if(airSensor.dataAvailable()) + { + data1[0] = airSensor.getCO2(); + data1[1] = airSensor.getTemperature(); + data1[2] = airSensor.getHumidity(); + + return data1; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/scd30.hpp b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/scd30.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a95ab8ea5467e932f4a2bd47b872acf1024cd87b --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/lib/scd30/scd30.hpp @@ -0,0 +1,18 @@ +#ifndef _SCD30 +#define _SCD30 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> + +class Forte_SCD30 : public Forte_Sensor{ + public: + void setup(); + float* read_data(); + + private: + SCD30 airSensor; + float data1[3]; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219/Example_forte_libary/client/platformio.ini b/code-snippets/client/INA219/Example_forte_libary/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..1f54ab848812cd679cfa03c95ed91860c145660d --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/platformio.ini @@ -0,0 +1,18 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = + sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + wollewald/INA219_WE@^1.3.1 diff --git a/code-snippets/client/INA219/Example_forte_libary/client/src/main.cpp b/code-snippets/client/INA219/Example_forte_libary/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..8e0ffb9b7dcd614e29bd8c51d2a013da26e35ad0 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/src/main.cpp @@ -0,0 +1,32 @@ + +#include <Arduino.h> +#include <ina219.hpp> + +Forte_INA219 sensor1; + +void setup() { + Serial.begin(9600); + sensor1.setup(); +} + +void loop() { + + out_data_ina219* data; + data = sensor1.read_data(); + + if(data==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Shunt Voltage [mV]: "); Serial.println(data->shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(data->busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(data->loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(data->current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(data->power_mW); + data->ina219_overflow== false ? Serial.println("Values OK - no overflow") : Serial.println("Overflow! Choose higher PGAIN"); + Serial.println(); + } + delay(5000); +} diff --git a/code-snippets/client/INA219/Example_forte_libary/client/test/README b/code-snippets/client/INA219/Example_forte_libary/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/INA219/Example_forte_libary/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/INA219/circuit_diagramm_pic.png b/code-snippets/client/INA219/circuit_diagramm_pic.png new file mode 100644 index 0000000000000000000000000000000000000000..65780746d9fef5d3bb25d44dc75f66f6937476d7 Binary files /dev/null and b/code-snippets/client/INA219/circuit_diagramm_pic.png differ diff --git a/code-snippets/client/INA219/documentaion DeepSleep Timer wake up.docx b/code-snippets/client/INA219/documentaion DeepSleep Timer wake up.docx new file mode 100644 index 0000000000000000000000000000000000000000..ee0673a1875d3f47e2a8e49a751cf2ee5ba5199b Binary files /dev/null and b/code-snippets/client/INA219/documentaion DeepSleep Timer wake up.docx differ diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_arduino/basic_example_arduino.ino b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_arduino/basic_example_arduino.ino new file mode 100644 index 0000000000000000000000000000000000000000..0b8e2e8b42368135e2374507276397b272cb2964 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_arduino/basic_example_arduino.ino @@ -0,0 +1,105 @@ +#include <Wire.h> +#include <INA219_WE.h> +/* There are several ways to create your INA219 object: + * INA219_WE ina219 = INA219_WE() -> uses Wire / I2C Address = 0x40 + * INA219_WE ina219 = INA219_WE(ICM20948_ADDR) -> uses Wire / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2) -> uses the TwoWire object wire2 / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2, I2C_ADDRESS) -> all together + * Successfully tested with two I2C busses on an ESP32 + */ + +INA219_WE ina219 = INA219_WE(); +int sda_pin = 5; // GPIO16 as I2C SDA +int scl_pin = 4; // GPIO17 as I2C SCL +void setup() { + Serial.begin(9600); + Wire.setPins(sda_pin, scl_pin); + Wire.begin(); + if(!ina219.init()){ + Serial.println("INA219 not connected!"); + } + + /* Set ADC Mode for Bus and ShuntVoltage + * Mode * * Res / Samples * * Conversion Time * + BIT_MODE_9 9 Bit Resolution 84 µs + BIT_MODE_10 10 Bit Resolution 148 µs + BIT_MODE_11 11 Bit Resolution 276 µs + BIT_MODE_12 12 Bit Resolution 532 µs (DEFAULT) + SAMPLE_MODE_2 Mean Value 2 samples 1.06 ms + SAMPLE_MODE_4 Mean Value 4 samples 2.13 ms + SAMPLE_MODE_8 Mean Value 8 samples 4.26 ms + SAMPLE_MODE_16 Mean Value 16 samples 8.51 ms + SAMPLE_MODE_32 Mean Value 32 samples 17.02 ms + SAMPLE_MODE_64 Mean Value 64 samples 34.05 ms + SAMPLE_MODE_128 Mean Value 128 samples 68.10 ms + */ + //ina219.setADCMode(SAMPLE_MODE_128); // choose mode and uncomment for change of default + + /* Set measure mode + POWER_DOWN - INA219 switched off + TRIGGERED - measurement on demand + ADC_OFF - Analog/Digital Converter switched off + CONTINUOUS - Continuous measurements (DEFAULT) + */ + // ina219.setMeasureMode(CONTINUOUS); // choose mode and uncomment for change of default + + /* Set PGain + * Gain * * Shunt Voltage Range * * Max Current (if shunt is 0.1 ohms) * + PG_40 40 mV 0.4 A + PG_80 80 mV 0.8 A + PG_160 160 mV 1.6 A + PG_320 320 mV 3.2 A (DEFAULT) + */ + // ina219.setPGain(PG_320); // choose gain and uncomment for change of default + + /* Set Bus Voltage Range + BRNG_16 -> 16 V + BRNG_32 -> 32 V (DEFAULT) + */ + // ina219.setBusRange(BRNG_32); // choose range and uncomment for change of default + + Serial.println("INA219 Current Sensor Example Sketch - Continuous"); + + /* If the current values delivered by the INA219 differ by a constant factor + from values obtained with calibrated equipment you can define a correction factor. + Correction factor = current delivered from calibrated equipment / current delivered by INA219 + */ + // ina219.setCorrectionFactor(0.98); // insert your correction factor if necessary + + /* If you experience a shunt voltage offset, that means you detect a shunt voltage which is not + zero, although the current should be zero, you can apply a correction. For this, uncomment the + following function and apply the offset you have detected. + */ + // ina219.setShuntVoltOffset_mV(0.5); // insert the shunt voltage (millivolts) you detect at zero current +} + +void loop() { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + + shuntVoltage_mV = ina219.getShuntVoltage_mV(); + busVoltage_V = ina219.getBusVoltage_V(); + current_mA = ina219.getCurrent_mA(); + power_mW = ina219.getBusPower(); + loadVoltage_V = busVoltage_V + (shuntVoltage_mV/1000); + ina219_overflow = ina219.getOverflow(); + + Serial.print("Shunt Voltage [mV]: "); Serial.println(shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(power_mW); + if(!ina219_overflow){ + Serial.println("Values OK - no overflow"); + } + else{ + Serial.println("Overflow! Choose higher PGAIN"); + } + Serial.println(); + + delay(3000); +} diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/.gitignore b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..89cc49cbd652508924b868ea609fa8f6b758ec56 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/.vscode/extensions.json b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/include/README b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/platformio.ini b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..785eef08c12434f0af85c1306c7653a68961eea6 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/platformio.ini @@ -0,0 +1,15 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = wollewald/INA219_WE@^1.3.1 diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/src/main.cpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..0b8e2e8b42368135e2374507276397b272cb2964 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/src/main.cpp @@ -0,0 +1,105 @@ +#include <Wire.h> +#include <INA219_WE.h> +/* There are several ways to create your INA219 object: + * INA219_WE ina219 = INA219_WE() -> uses Wire / I2C Address = 0x40 + * INA219_WE ina219 = INA219_WE(ICM20948_ADDR) -> uses Wire / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2) -> uses the TwoWire object wire2 / I2C_ADDRESS + * INA219_WE ina219 = INA219_WE(&wire2, I2C_ADDRESS) -> all together + * Successfully tested with two I2C busses on an ESP32 + */ + +INA219_WE ina219 = INA219_WE(); +int sda_pin = 5; // GPIO16 as I2C SDA +int scl_pin = 4; // GPIO17 as I2C SCL +void setup() { + Serial.begin(9600); + Wire.setPins(sda_pin, scl_pin); + Wire.begin(); + if(!ina219.init()){ + Serial.println("INA219 not connected!"); + } + + /* Set ADC Mode for Bus and ShuntVoltage + * Mode * * Res / Samples * * Conversion Time * + BIT_MODE_9 9 Bit Resolution 84 µs + BIT_MODE_10 10 Bit Resolution 148 µs + BIT_MODE_11 11 Bit Resolution 276 µs + BIT_MODE_12 12 Bit Resolution 532 µs (DEFAULT) + SAMPLE_MODE_2 Mean Value 2 samples 1.06 ms + SAMPLE_MODE_4 Mean Value 4 samples 2.13 ms + SAMPLE_MODE_8 Mean Value 8 samples 4.26 ms + SAMPLE_MODE_16 Mean Value 16 samples 8.51 ms + SAMPLE_MODE_32 Mean Value 32 samples 17.02 ms + SAMPLE_MODE_64 Mean Value 64 samples 34.05 ms + SAMPLE_MODE_128 Mean Value 128 samples 68.10 ms + */ + //ina219.setADCMode(SAMPLE_MODE_128); // choose mode and uncomment for change of default + + /* Set measure mode + POWER_DOWN - INA219 switched off + TRIGGERED - measurement on demand + ADC_OFF - Analog/Digital Converter switched off + CONTINUOUS - Continuous measurements (DEFAULT) + */ + // ina219.setMeasureMode(CONTINUOUS); // choose mode and uncomment for change of default + + /* Set PGain + * Gain * * Shunt Voltage Range * * Max Current (if shunt is 0.1 ohms) * + PG_40 40 mV 0.4 A + PG_80 80 mV 0.8 A + PG_160 160 mV 1.6 A + PG_320 320 mV 3.2 A (DEFAULT) + */ + // ina219.setPGain(PG_320); // choose gain and uncomment for change of default + + /* Set Bus Voltage Range + BRNG_16 -> 16 V + BRNG_32 -> 32 V (DEFAULT) + */ + // ina219.setBusRange(BRNG_32); // choose range and uncomment for change of default + + Serial.println("INA219 Current Sensor Example Sketch - Continuous"); + + /* If the current values delivered by the INA219 differ by a constant factor + from values obtained with calibrated equipment you can define a correction factor. + Correction factor = current delivered from calibrated equipment / current delivered by INA219 + */ + // ina219.setCorrectionFactor(0.98); // insert your correction factor if necessary + + /* If you experience a shunt voltage offset, that means you detect a shunt voltage which is not + zero, although the current should be zero, you can apply a correction. For this, uncomment the + following function and apply the offset you have detected. + */ + // ina219.setShuntVoltOffset_mV(0.5); // insert the shunt voltage (millivolts) you detect at zero current +} + +void loop() { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + + shuntVoltage_mV = ina219.getShuntVoltage_mV(); + busVoltage_V = ina219.getBusVoltage_V(); + current_mA = ina219.getCurrent_mA(); + power_mW = ina219.getBusPower(); + loadVoltage_V = busVoltage_V + (shuntVoltage_mV/1000); + ina219_overflow = ina219.getOverflow(); + + Serial.print("Shunt Voltage [mV]: "); Serial.println(shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(power_mW); + if(!ina219_overflow){ + Serial.println("Values OK - no overflow"); + } + else{ + Serial.println("Overflow! Choose higher PGAIN"); + } + Serial.println(); + + delay(3000); +} diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/test/README b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example/basic_example_io/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/.gitignore b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6dea8206d255251b692bc51b06adced35f789ce8 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/.gitignore @@ -0,0 +1,6 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch +!lib/ diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/.vscode/extensions.json b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/README b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/forte_sensor.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/pinout.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/README b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/README new file mode 100644 index 0000000000000000000000000000000000000000..6debab1e8b4c3faa0d06f4ff44bce343ce2cdcbf --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include <Foo.h> +#include <Bar.h> + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/forte_sensor.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/ina219.cpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/ina219.cpp new file mode 100644 index 0000000000000000000000000000000000000000..fde41673e18fea8f7379fe3379155c3cff58cffa --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/ina219.cpp @@ -0,0 +1,26 @@ +#include "ina219.hpp" + + +void Forte_INA219 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!ina219.init()){ + // Sensor init went wrong + return; + } +} + +out_data* Forte_INA219 :: read_data(){ + if(!ina219.getOverflow()) + { + data.shuntVoltage_mV = ina219.getShuntVoltage_mV(); + data.busVoltage_V= ina219.getBusVoltage_V(); + data.current_mA= ina219.getCurrent_mA(); + data.power_mW= ina219.getBusPower(); + data.loadVoltage_V = data.busVoltage_V + (data.shuntVoltage_mV/1000); + data.ina219_overflow=ina219.getOverflow(); + + return &data; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/ina219.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/ina219.hpp new file mode 100644 index 0000000000000000000000000000000000000000..2dcc568ab6ba8a0a05c688ecec32f2b8c4a618a0 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/ina219.hpp @@ -0,0 +1,31 @@ +#ifndef _INA219 +#define _INA219 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <INA219_WE.h> +#include "Wire.h" + + + +struct out_data { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + }; + + +class Forte_INA219 : public Forte_Sensor{ + public: + void setup(); + out_data* read_data(); + + private: + INA219_WE ina219; + out_data data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/pinout.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..793bc6b2edc966602bde83eeb2b1609a19e11f48 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/ina219/pinout.hpp @@ -0,0 +1,7 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SCL 6 +#define I2C_SDA 7 +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/forte_sensor.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/pinout.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/scd30.cpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/scd30.cpp new file mode 100644 index 0000000000000000000000000000000000000000..84276568291b2d87c23222bf57e286cf7f5ab03b --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/scd30.cpp @@ -0,0 +1,24 @@ +#include "scd30.hpp" +#include "Wire.h" +#include <SparkFun_SCD30_Arduino_Library.h> + +void Forte_SCD30 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!airSensor.begin()){ + // Sensor init went wrong + return; + } +} + +float* Forte_SCD30 :: read_data(){ + if(airSensor.dataAvailable()) + { + data1[0] = airSensor.getCO2(); + data1[1] = airSensor.getTemperature(); + data1[2] = airSensor.getHumidity(); + + return data1; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/scd30.hpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/scd30.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a95ab8ea5467e932f4a2bd47b872acf1024cd87b --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/lib/scd30/scd30.hpp @@ -0,0 +1,18 @@ +#ifndef _SCD30 +#define _SCD30 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> + +class Forte_SCD30 : public Forte_Sensor{ + public: + void setup(); + float* read_data(); + + private: + SCD30 airSensor; + float data1[3]; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/platformio.ini b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..1f54ab848812cd679cfa03c95ed91860c145660d --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/platformio.ini @@ -0,0 +1,18 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = + sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + wollewald/INA219_WE@^1.3.1 diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/ example.csv b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/ example.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c32286a390dd7dba83ca48995379ae00ce61c75 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/ example.csv @@ -0,0 +1,51 @@ +,Shunt Voltage [mV],Bus Voltage [V].Load Voltage [V],Current[mA],Bus Power [mW],Overflow +0.28,1.8,1.8,2.7,4.0,0 +0.27,1.8,1.8,2.9,6.0,0 +0.28,1.8,1.8,2.8,6.0,0 +0.3,1.8,1.8,3.0,6.0,0 +0.29,1.8,1.8,2.9,6.0,0 +0.3,1.8,1.8,2.9,6.0,0 +0.29,1.8,1.8,3.0,6.0,0 +0.27,1.8,1.8,2.7,4.0,0 +0.26,1.8,1.8,2.6,4.0,0 +0.25,1.8,1.8,2.6,4.0,0 +0.26,1.8,1.8,2.6,4.0,0 +0.27,1.8,1.8,2.8,6.0,0 +0.28,1.8,1.8,2.8,6.0,0 +0.27,1.8,1.8,2.9,6.0,0 +0.27,1.8,1.8,2.9,6.0,0 +0.31,1.8,1.8,2.9,6.0,0 +0.27,1.8,1.8,2.8,6.0,0 +0.28,1.8,1.8,2.8,6.0,0 +0.26,1.8,1.8,2.6,4.0,0 +0.28,1.8,1.8,2.9,6.0,0 +0.28,1.8,1.8,2.7,4.0,0 +0.28,1.8,1.8,2.9,6.0,0 +0.3,1.8,1.8,2.7,4.0,0 +0.27,1.8,1.8,2.8,6.0,0 +0.29,1.8,1.8,2.7,4.0,0 +0.27,1.8,1.8,2.9,6.0,0 +0.29,1.8,1.8,2.9,6.0,0 +0.3,1.8,1.8,2.7,4.0,0 +0.28,1.8,1.8,2.9,6.0,0 +0.28,1.8,1.8,2.9,6.0,0 +0.28,1.8,1.8,2.7,4.0,0 +0.28,1.8,1.8,2.8,6.0,0 +0.26,1.8,1.8,3.0,6.0,0 +0.28,1.8,1.8,2.9,6.0,0 +0.29,1.8,1.8,2.7,4.0,0 +0.27,1.8,1.8,2.9,6.0,0 +0.29,1.8,1.8,2.7,4.0,0 +0.27,1.8,1.8,2.9,6.0,0 +0.26,1.8,1.8,2.7,4.0,0 +0.29,1.8,1.8,2.7,4.0,0 +0.28,1.8,1.8,2.8,6.0,0 +0.27,1.8,1.8,3.0,6.0,0 +0.27,1.8,1.8,2.8,6.0,0 +0.27,1.8,1.8,2.8,6.0,0 +0.29,1.8,1.8,2.9,6.0,0 +0.26,1.8,1.8,3.0,6.0,0 +0.29,1.8,1.8,2.9,6.0,0 +0.23,1.8,1.8,2.7,4.0,0 +0.28,1.8,1.8,2.9,6.0,0 +0.27,1.8,1.8,2.9,6.0,0 diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/py_serial.py b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/py_serial.py new file mode 100644 index 0000000000000000000000000000000000000000..68fe585e33801152959f0bb81f899ccb0b5a68f4 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/py_serial.py @@ -0,0 +1,26 @@ +import serial.tools.list_ports + +ports = serial.tools.list_ports.comports() +serialInst= serial.Serial() + +portList = [] + +for onePort in ports: + portList.append(str(onePort)) + print(str(onePort)) + +serialInst.port = "/dev/ttyUSB0" +serialInst.baudrate=9600 +serialInst.open() + +f= open('readmee.txt', 'w') +f.write("shajfksad\n") +f.writelines("hsjdhsjhd") +f.writelines("hsjdhsjhd") + +while True: + if serialInst.in_waiting: + packet=serialInst.readline() + # print(packet.decode('utf')) + f.writelines(packet.decode('utf')) + diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/py_writeIntoTextfile.py b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/py_writeIntoTextfile.py new file mode 100644 index 0000000000000000000000000000000000000000..8d248bd929ea151894ba6a34f7b46f812bd3c4c7 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/py_writeIntoTextfile.py @@ -0,0 +1,4 @@ +f= open('readmee.txt', 'w') +f.write("shajfksad\n") +f.writelines("hsjdhsjhd") +f.writelines("hsjdhsjhd") \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/raw_data.txt b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/raw_data.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc4884482aeec96ed2f0dfd38bc1fddf5dbee9f5 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/raw_data.txt @@ -0,0 +1,52 @@ + +Shunt Voltage [mV],Bus Voltage [V].Load Voltage [V],Current[mA],Bus Power [mW],Overflow +0.28,1.80,1.80,2.70,4.00,0 +0.27,1.80,1.80,2.90,6.00,0 +0.28,1.80,1.80,2.80,6.00,0 +0.30,1.80,1.80,3.00,6.00,0 +0.29,1.80,1.80,2.90,6.00,0 +0.30,1.80,1.80,2.90,6.00,0 +0.29,1.80,1.80,3.00,6.00,0 +0.27,1.80,1.80,2.70,4.00,0 +0.26,1.80,1.80,2.60,4.00,0 +0.25,1.80,1.80,2.60,4.00,0 +0.26,1.80,1.80,2.60,4.00,0 +0.27,1.80,1.80,2.80,6.00,0 +0.28,1.80,1.80,2.80,6.00,0 +0.27,1.80,1.80,2.90,6.00,0 +0.27,1.80,1.80,2.90,6.00,0 +0.31,1.80,1.80,2.90,6.00,0 +0.27,1.80,1.80,2.80,6.00,0 +0.28,1.80,1.80,2.80,6.00,0 +0.26,1.80,1.80,2.60,4.00,0 +0.28,1.80,1.80,2.90,6.00,0 +0.28,1.80,1.80,2.70,4.00,0 +0.28,1.80,1.80,2.90,6.00,0 +0.30,1.80,1.80,2.70,4.00,0 +0.27,1.80,1.80,2.80,6.00,0 +0.29,1.80,1.80,2.70,4.00,0 +0.27,1.80,1.80,2.90,6.00,0 +0.29,1.80,1.80,2.90,6.00,0 +0.30,1.80,1.80,2.70,4.00,0 +0.28,1.80,1.80,2.90,6.00,0 +0.28,1.80,1.80,2.90,6.00,0 +0.28,1.80,1.80,2.70,4.00,0 +0.28,1.80,1.80,2.80,6.00,0 +0.26,1.80,1.80,3.00,6.00,0 +0.28,1.80,1.80,2.90,6.00,0 +0.29,1.80,1.80,2.70,4.00,0 +0.27,1.80,1.80,2.90,6.00,0 +0.29,1.80,1.80,2.70,4.00,0 +0.27,1.80,1.80,2.90,6.00,0 +0.26,1.80,1.80,2.70,4.00,0 +0.29,1.80,1.80,2.70,4.00,0 +0.28,1.80,1.80,2.80,6.00,0 +0.27,1.80,1.80,3.00,6.00,0 +0.27,1.80,1.80,2.80,6.00,0 +0.27,1.80,1.80,2.80,6.00,0 +0.29,1.80,1.80,2.90,6.00,0 +0.26,1.80,1.80,3.00,6.00,0 +0.29,1.80,1.80,2.90,6.00,0 +0.23,1.80,1.80,2.70,4.00,0 +0.28,1.80,1.80,2.90,6.00,0 +0.27,1.80,1.80,2.90,6.00,0 \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/text_to_csv.py b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/text_to_csv.py new file mode 100644 index 0000000000000000000000000000000000000000..7655df60b4da84a7bff51976e0e7556f2eaebad9 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/text_to_csv.py @@ -0,0 +1,6 @@ +import pandas as pd + +read_file=pd.read_csv(r'/home/hassan/Documents/TEAM/sensor-system/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/raw_data.txt') + +read_file.to_csv(r'/home/hassan/Documents/TEAM/sensor-system/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/ example.csv') +read_file.to_excel(r'/home/hassan/Documents/TEAM/sensor-system/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/python_txt_to_csv/ example.csv') \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/readme.txt b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..175272b775dc05983991a69b26fc0cfea702e4c6 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/readme.txt @@ -0,0 +1 @@ +hsjdhsjhdhsjdhsjhd \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/readmee.txt b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/readmee.txt new file mode 100644 index 0000000000000000000000000000000000000000..93a0c8bfc5b951e95da23935309a366d68dfb9db --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/readmee.txt @@ -0,0 +1,5038 @@ +shajfksad +hsjdhsjhdhsjdhsjhdif you want to start the sensor mesaurment type 'y' +Measuring.. +Finished Mesasrument. +Output data + + + + + + + + + + + +Shunt Voltage [mV],Bus Voltage [V].Load Voltage [V],Current[mA],Bus Power [mW],Overflow +0.24,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.27,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.70,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.70,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.19,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.19,1.65,1.65,1.90,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.70,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.00,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.70,4.00,0 +0.25,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.19,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,1.90,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,1.80,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.20,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.00,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.20,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,1.90,4.00,0 +0.20,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.20,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.27,1.65,1.65,2.10,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.20,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.26,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.00,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.00,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.19,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.18,1.65,1.65,2.30,4.00,0 +0.27,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.20,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.00,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.20,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.70,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.27,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.27,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.00,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.70,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.27,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,1.90,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.27,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.18,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.19,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.70,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.60,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.19,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.70,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.70,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.60,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.27,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,1.90,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,1.90,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.00,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.20,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.80,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.00,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.18,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.27,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.20,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.20,1.64,1.64,1.90,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.19,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.27,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.19,1.65,1.65,2.20,4.00,0 +0.20,1.64,1.64,2.70,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.00,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,1.90,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.19,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.20,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.27,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.19,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,1.90,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.20,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.19,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.20,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.50,4.00,0 +0.19,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.20,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.18,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,1.90,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.21,1.65,1.65,2.00,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.19,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.00,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.27,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.26,1.65,1.65,2.50,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,1.90,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.80,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.00,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.18,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.17,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.20,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.19,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.26,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.27,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,1.90,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.27,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.00,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,1.90,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.70,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,1.90,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.70,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.27,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.00,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.10,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.27,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.19,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.19,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,1.90,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.20,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.20,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.19,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.60,4.00,0 +0.21,1.65,1.65,1.90,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.00,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.20,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.26,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.27,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.19,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.00,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.27,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,1.90,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.20,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.27,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,1.80,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.20,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.20,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.00,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,1.90,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.00,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.70,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.70,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,1.90,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.27,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.28,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.27,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.28,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.19,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,1.90,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.00,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.70,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.00,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.27,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.26,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,1.90,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.19,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.00,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.70,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.70,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.20,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.21,1.65,1.65,2.50,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.00,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.00,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.70,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.20,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.27,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.60,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.60,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.19,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,1.90,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.60,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.20,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.25,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.00,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.19,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.20,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,1.90,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.19,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,1.90,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.26,1.64,1.64,2.00,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.60,4.00,0 +0.24,1.64,1.64,2.00,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.00,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.27,1.65,1.65,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.27,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.26,1.64,1.64,1.90,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.19,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.21,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.60,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.20,1.65,1.65,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.20,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.26,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.10,4.00,0 +0.24,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.22,1.65,1.65,1.90,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.10,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,1.90,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.30,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.10,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.70,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.18,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.26,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.25,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.26,1.65,1.65,2.40,4.00,0 +0.21,1.65,1.65,2.20,4.00,0 +0.24,1.64,1.64,2.70,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.10,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.65,1.65,2.50,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.21,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.20,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.21,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.21,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.30,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.40,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.19,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.64,1.64,2.10,4.00,0 +0.24,1.64,1.64,2.60,4.00,0 +0.24,1.64,1.64,1.90,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.23,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.26,1.64,1.64,2.10,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.20,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.21,1.65,1.65,2.30,4.00,0 +0.24,1.64,1.64,2.50,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.21,1.64,1.64,2.00,4.00,0 +0.23,1.64,1.64,2.50,4.00,0 +0.25,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.23,1.65,1.65,2.30,4.00,0 +0.23,1.64,1.64,2.60,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.23,1.65,1.65,2.20,4.00,0 +0.23,1.64,1.64,2.40,4.00,0 +0.22,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.24,1.65,1.65,2.40,4.00,0 +0.22,1.64,1.64,2.20,4.00,0 +0.22,1.65,1.65,2.30,4.00,0 +0.22,1.64,1.64,2.30,4.00,0 +0.24,1.65,1.65,2.20,4.00,0 +0.23,1.65,1.65,2.40,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.64,1.64,2.30,4.00,0 +0.22,1.64,1.64,2.40,4.00,0 +0.25,1.64,1.64,2.20,4.00,0 +0.23,1.64,1.64,2.30,4.00,0 +0.24,1.64,1.64,2.30,4.00,0 +0.25,1.65,1.65,2.40,4.00,0 + +Shunt Voltage [mV]: 0.24 +Bus Voltage [V]: 1.64 +Load Voltage [V]: 1.64 +Current[mA]: 2.30 +Bus Power [mW]: 4.00 +Values OK - no overflow + +if you want to start the sensor mesaurment type 'y' +Measuring.. +Guru Meditation Error: Core 0 panic'ed (Store access fault). Exception was unhandled. + +Core 0 register dump: +MEPC : 0x4005882e RA : 0x420000f2 SP : 0x3fc939c0 GP : 0x3fc8b600 +TP : 0x3fc8939c T0 : 0x3fd1f30e T1 : 0x3c0302fc T2 : 0x3e6b851f +S0/FP : 0x3fc8c000 S1 : 0x00000000 A0 : 0x00000000 A1 : 0x3fc8c44c +A2 : 0xfffffff4 A3 : 0x00000014 A4 : 0x00000015 A5 : 0x00000000 +A6 : 0x00000000 A7 : 0x00000000 S2 : 0x0001d4c0 S3 : 0x00000000 +S4 : 0x3fc8c000 S5 : 0x00000000 S6 : 0x00000000 S7 : 0x00000000 +S8 : 0x00000000 S9 : 0x00000000 S10 : 0x00000000 S11 : 0x00000000 +T3 : 0x00000000 T4 : 0x40800000 T5 : 0x400ccccd T6 : 0x3fd1eb85 diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/src/main.cpp b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9c8e79175a7501f3f29a07d753527bba71a05167 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/src/main.cpp @@ -0,0 +1,122 @@ + +#include <Arduino.h> +#include <ina219.hpp> + +Forte_INA219 sensor1; + +void setup() +{ + Serial.begin(9600); + sensor1.setup(); +} + +void loop() +{ + + out_data *data; + data = sensor1.read_data(); + + if (data == 0) { + Serial.println("Waiting for data!"); + Serial.println(); + } else { + Serial.print("Shunt Voltage [mV]: "); + Serial.println(data->shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); + Serial.println(data->busVoltage_V); + Serial.print("Load Voltage [V]: "); + Serial.println(data->loadVoltage_V); + Serial.print("Current[mA]: "); + Serial.println(data->current_mA); + Serial.print("Bus Power [mW]: "); + Serial.println(data->power_mW); + data->ina219_overflow == false ? Serial.println("Values OK - no overflow") + : Serial.println("Overflow! Choose higher PGAIN"); + Serial.println(); + } + delay(5000); + + int samples = 5000; + out_data *data_raw = (out_data *)malloc(samples * sizeof(out_data)); + + Serial.println("if you want to start the sensor mesaurment type 'y' "); +/* while (Serial.read() != 'y') { + delay(1000); + } +*/ + Serial.println("Measuring.."); + + for (int i = 0; i < samples; i++) { + data_raw[i] = *sensor1.read_data(); + // Serial.println(sensor1.read_data()->current_mA); + delay(1); + } + Serial.println("Finished Mesasrument."); + + delay(1000); + Serial.println("Output data"); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + Serial.println(); + + /* + for (int i = 0; i < samples; i++) { + + if (&data_raw[i] == 0) { + Serial.println("Waiting for data!"); + Serial.println(); + } else { + Serial.print("Shunt Voltage [mV]: "); + Serial.println(data_raw[i].shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); + Serial.println(data_raw[i].busVoltage_V); + Serial.print("Load Voltage [V]: "); + Serial.println(data_raw[i].loadVoltage_V); + Serial.print("Current[mA]: "); + Serial.println(data_raw[i].current_mA); + Serial.print("Bus Power [mW]: "); + Serial.println(data_raw[i].power_mW); + data_raw[i].ina219_overflow == false ? Serial.println("Values OK - no overflow") + : Serial.println("Overflow! Choose higher PGAIN"); + Serial.println(); + } + } + */ + +Serial.print("Shunt Voltage [mV],"); +Serial.print("Bus Voltage [V]."); +Serial.print("Load Voltage [V],"); +Serial.print("Current[mA],"); +Serial.print("Bus Power [mW],"); +Serial.println("Overflow"); + + for (int i = 0; i < samples; i++) { + + if (&data_raw[i] == 0) { + Serial.println("Waiting for data!"); + Serial.println(); + } else { + Serial.print(data_raw[i].shuntVoltage_mV); + Serial.print(","); + Serial.print(data_raw[i].busVoltage_V); + Serial.print(","); + Serial.print(data_raw[i].loadVoltage_V); + Serial.print(","); + Serial.print(data_raw[i].current_mA); + Serial.print(","); + Serial.print(data_raw[i].power_mW); + Serial.print(","); + data_raw[i].ina219_overflow == false ? Serial.println("0") : Serial.println("1"); + } + } + + Serial.println(); +} \ No newline at end of file diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/test/README b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/Example_forte_libary/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/circuit_diagramm_pic.png b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/circuit_diagramm_pic.png new file mode 100644 index 0000000000000000000000000000000000000000..65780746d9fef5d3bb25d44dc75f66f6937476d7 Binary files /dev/null and b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/circuit_diagramm_pic.png differ diff --git a/code-snippets/client/INA219_POWER_MEASURMENT_STATION/documentaion DeepSleep Timer wake up.docx b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/documentaion DeepSleep Timer wake up.docx new file mode 100644 index 0000000000000000000000000000000000000000..ee0673a1875d3f47e2a8e49a751cf2ee5ba5199b Binary files /dev/null and b/code-snippets/client/INA219_POWER_MEASURMENT_STATION/documentaion DeepSleep Timer wake up.docx differ diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/.gitignore b/code-snippets/client/SCD30/Example_forte_libary/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..6dea8206d255251b692bc51b06adced35f789ce8 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/.gitignore @@ -0,0 +1,6 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch +!lib/ diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/.vscode/extensions.json b/code-snippets/client/SCD30/Example_forte_libary/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/include/README b/code-snippets/client/SCD30/Example_forte_libary/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/include/forte_sensor.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/include/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/include/pinout.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..7de77a4b3aab0cc8559c510091fd238db43b729d --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 +#define SDI_DATA 8 +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/README b/code-snippets/client/SCD30/Example_forte_libary/client/lib/README new file mode 100644 index 0000000000000000000000000000000000000000..6debab1e8b4c3faa0d06f4ff44bce343ce2cdcbf --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include <Foo.h> +#include <Bar.h> + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/drs26.cpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/drs26.cpp new file mode 100644 index 0000000000000000000000000000000000000000..eeacce1df551248025c9005524c03f11c6ccab93 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/drs26.cpp @@ -0,0 +1,42 @@ +#include <drs26.hpp> +/* +It happens for some reason that the sensor cant get reached every 2 time +Because the sensor use sdi12 protocoll we have to wait aproxemettly 1 secound between the commands +It is not known how lond the response takes so we use a while loop which can be a risk wehre the programm can get stuck +*/ + +void Forte_DRS26 ::setup() +{ + drs26.begin(SDI_DATA); +} + +out_data *Forte_DRS26 ::read_data() +{ + String sdiResponse = ""; + String measurement_command="1M!"; //The drs26 sensor uses the sdi12 protocoll , in the sdi12 protocoll is the measurement command is specified as 1M!=Sebsir measurement request at adress 1 + String data_command="1D0!"; //and the followed data command 1D0! = Sensor data request at adress 1 + + drs26.sendCommand(measurement_command); + delay(1000); + drs26.sendCommand(data_command); + + while (drs26.available()) + { + char next_character = drs26.read(); + if ((next_character != '\n') && (next_character != '\r')) + { + sdiResponse += next_character; + delay(10); // 1 character ~ 7.5ms + } + } + + if (sdiResponse.length() > 1) + { + data.id = sdiResponse.substring(0, 8).toInt(); + data.circumference = sdiResponse.substring(9, 15).toFloat(); + data.temperatur = sdiResponse.substring(16, 22).toFloat(); + return &data; + } + + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/drs26.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/drs26.hpp new file mode 100644 index 0000000000000000000000000000000000000000..f34dad204d52a157db704dc0ef7730d806a251a0 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/drs26.hpp @@ -0,0 +1,27 @@ +#ifndef _INA219 +#define _INA219 + +#include <forte_sensor.hpp> +#include <SDI12.h> +#include <pinout.hpp> +#include "Wire.h" + + +struct out_data { + int id; + float circumference; + float temperatur; + }; + + +class Forte_DRS26 : public Forte_Sensor{ + public: + void setup(); + out_data* read_data(); + + private: + SDI12 drs26; + out_data data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/forte_sensor.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/pinout.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..4c284359487510b4740a2ac4b555e4fa19b68d05 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/drs26_digital/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 5 +#define I2C_SCL 4 +#define SDI_DATA 8 +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/forte_sensor.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/ina219.cpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/ina219.cpp new file mode 100644 index 0000000000000000000000000000000000000000..df1fa146bc49b7e1f824bec42e7e860c260cd6b1 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/ina219.cpp @@ -0,0 +1,28 @@ +#include "ina219.hpp" +#include "Wire.h" +#include <SparkFun_SCD30_Arduino_Library.h> +#include <INA219_WE.h> + +void Forte_INA219 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!ina219.init()){ + // Sensor init went wrong + return; + } +} + +out_data* Forte_INA219 :: read_data(){ + if(!ina219.getOverflow()) + { + data.shuntVoltage_mV = ina219.getShuntVoltage_mV(); + data.busVoltage_V= ina219.getBusVoltage_V(); + data.current_mA= ina219.getCurrent_mA(); + data.power_mW= ina219.getBusPower(); + data.loadVoltage_V = data.busVoltage_V + (data.shuntVoltage_mV/1000); + data.ina219_overflow=ina219.getOverflow(); + + return &data; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/ina219.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/ina219.hpp new file mode 100644 index 0000000000000000000000000000000000000000..91b8c4ba9edf1b6603737e8c0b7aa777b5e1594a --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/ina219.hpp @@ -0,0 +1,30 @@ +#ifndef _INA219 +#define _INA219 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> +#include <INA219_WE.h> + + +struct out_data { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + }; + + +class Forte_INA219 : public Forte_Sensor{ + public: + void setup(); + out_data* read_data(); + + private: + INA219_WE ina219; + out_data data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/pinout.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9d336e45e266d1952527918387a8d36679bc3ae4 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/ina219/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 5 +#define I2C_SCL 4 + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/forte_sensor.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/pinout.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/scd30.cpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/scd30.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c7c2084754bfc94aef7b1ca25947ede9c4c03fc1 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/scd30.cpp @@ -0,0 +1,23 @@ +#include "scd30.hpp" + + +void Forte_SCD30 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!airSensor.begin()){ + // Sensor init went wrong + return; + } +} + +out_data_scd30* Forte_SCD30 :: read_data(){ + if(airSensor.dataAvailable()) + { + data.C02= airSensor.getCO2(); + data.Temperature = airSensor.getTemperature(); + data.Humidity = airSensor.getHumidity(); + + return &data; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/scd30.hpp b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/scd30.hpp new file mode 100644 index 0000000000000000000000000000000000000000..d630c0fa808fcdd7ad59dd13eac1e110c6346628 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/lib/scd30/scd30.hpp @@ -0,0 +1,27 @@ +#ifndef _SCD30 +#define _SCD30 + +#include <forte_sensor.hpp> +#include <Wire.h> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> + +struct out_data_scd30 +{ + float C02; + float Temperature; + float Humidity; +}; + + +class Forte_SCD30 : public Forte_Sensor{ + public: + void setup(); + out_data_scd30* read_data(); + + private: + SCD30 airSensor; + out_data_scd30 data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/platformio.ini b/code-snippets/client/SCD30/Example_forte_libary/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..774bd23457cc773cf1c6b4adfc4cd74961e766a9 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/platformio.ini @@ -0,0 +1,19 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = + sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + wollewald/INA219_WE@^1.3.1 + envirodiy/SDI-12@^2.1.4 diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/src/main.cpp b/code-snippets/client/SCD30/Example_forte_libary/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c97c6ae8050b03db1c85f3fae3bf46d9c1b7f2ea --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/src/main.cpp @@ -0,0 +1,31 @@ + +#include <Arduino.h> + +#include <scd30.hpp> + +Forte_SCD30 scd30; + +void setup() { + Serial.begin(9600); + scd30.setup(); +} + +void loop() { + + out_data_scd30* data; + data = scd30.read_data(); + + if(data==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Sensor CO2 "); Serial.println(data->C02); + Serial.print("Humidity "); Serial.println(data->Humidity); + Serial.print("Temperature "); Serial.println(data->Temperature); + Serial.println(); + } + delay(5000); +} + diff --git a/code-snippets/client/SCD30/Example_forte_libary/client/test/README b/code-snippets/client/SCD30/Example_forte_libary/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/SCD30/Example_forte_libary/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/deep_sleep/.~lock.documentaion DeepSleep Timer wake up.docx# b/code-snippets/client/deep_sleep/.~lock.documentaion DeepSleep Timer wake up.docx# new file mode 100644 index 0000000000000000000000000000000000000000..9ae15a60afed4bba4536b4bdce48c5f787d2d47b --- /dev/null +++ b/code-snippets/client/deep_sleep/.~lock.documentaion DeepSleep Timer wake up.docx# @@ -0,0 +1 @@ +,hassan,hassan-Lifebook-U7411,17.08.2022 16:52,file:///home/hassan/.config/libreoffice/4; \ No newline at end of file diff --git a/code-snippets/client/deep_sleep/ESP32_LOW_POWER Management.pdf b/code-snippets/client/deep_sleep/ESP32_LOW_POWER Management.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c93ade6a83ac217e56d40a0e53fe2f56c9b0dcc7 Binary files /dev/null and b/code-snippets/client/deep_sleep/ESP32_LOW_POWER Management.pdf differ diff --git a/code-snippets/client/deep_sleep/documentaion DeepSleep Timer wake up.docx b/code-snippets/client/deep_sleep/documentaion DeepSleep Timer wake up.docx new file mode 100644 index 0000000000000000000000000000000000000000..ec4930d43b77bb43e1a22e65f8c6fc565b9ae987 Binary files /dev/null and b/code-snippets/client/deep_sleep/documentaion DeepSleep Timer wake up.docx differ diff --git a/code-snippets/client/deep_sleep/f_deep_sleep/examples/deep_sleep_timer_wake_up/deep_sleep_timer_wake_up.ino b/code-snippets/client/deep_sleep/f_deep_sleep/examples/deep_sleep_timer_wake_up/deep_sleep_timer_wake_up.ino new file mode 100644 index 0000000000000000000000000000000000000000..c17462c33f91d844ba4e09cbe9e2de11685e633c --- /dev/null +++ b/code-snippets/client/deep_sleep/f_deep_sleep/examples/deep_sleep_timer_wake_up/deep_sleep_timer_wake_up.ino @@ -0,0 +1,31 @@ +#include <f_deep_sleep.h> +/* +This code is under Public Domain License. +Author: Pranav Cherukupalli <cherukupallip@gmail.com> +*/ + +/* Data saved on the RTC memory will not be deletet while the deep sleep mode */ +RTC_DATA_ATTR int bootCount = 0; +/* First we configure the wake up source We set our ESP32 to wake up every 5 seconds */ +#define TIME_TO_SLEEP 5 + +void setup(){ + Serial.begin(115200); + Serial.println("******************After weak up Programm starts in setup**********************"); + delay(1000); //Take some time to open up the Serial Monitor + +} + + +void loop(){ + ++bootCount; + Serial.println("Boot number: " + String(bootCount)); + //Print the wakeup reason for ESP32 + print_wakeup_reason(); + Serial.println("Setup ESP32 to sleep for every " + String(TIME_TO_SLEEP) + " Seconds"); + Serial.println("Going to sleep now"); + Serial.println(); + Serial.flush(); + //going to sleep + deep_sleep(TIME_TO_SLEEP); +} diff --git a/code-snippets/client/deep_sleep/f_deep_sleep/f_deep_sleep.cpp b/code-snippets/client/deep_sleep/f_deep_sleep/f_deep_sleep.cpp new file mode 100644 index 0000000000000000000000000000000000000000..fc827756ab8792770dad6c1fdc41ccbfb3fbcd09 --- /dev/null +++ b/code-snippets/client/deep_sleep/f_deep_sleep/f_deep_sleep.cpp @@ -0,0 +1,23 @@ +#include "f_deep_sleep.h" + +void print_wakeup_reason(){ + esp_sleep_wakeup_cause_t wakeup_reason; + + wakeup_reason = esp_sleep_get_wakeup_cause(); + + switch(wakeup_reason) + { + case ESP_SLEEP_WAKEUP_EXT0 : Serial.println("Wakeup caused by external signal using RTC_IO"); break; + case ESP_SLEEP_WAKEUP_EXT1 : Serial.println("Wakeup caused by external signal using RTC_CNTL"); break; + case ESP_SLEEP_WAKEUP_TIMER : Serial.println("Wakeup caused by timer"); break; + case ESP_SLEEP_WAKEUP_TOUCHPAD : Serial.println("Wakeup caused by touchpad"); break; + case ESP_SLEEP_WAKEUP_ULP : Serial.println("Wakeup caused by ULP program"); break; + default : Serial.printf("Wakeup was not caused by deep sleep: %d\n",wakeup_reason); break; + } +} + + +void deep_sleep(int time_in_sec){//Increment boot number and print it every reboot + esp_sleep_enable_timer_wakeup(time_in_sec * 1000000); + esp_deep_sleep_start(); +} diff --git a/code-snippets/client/deep_sleep/f_deep_sleep/f_deep_sleep.h b/code-snippets/client/deep_sleep/f_deep_sleep/f_deep_sleep.h new file mode 100644 index 0000000000000000000000000000000000000000..876500d27ddac67e99ff0bbc4cecf74acdbeca6a --- /dev/null +++ b/code-snippets/client/deep_sleep/f_deep_sleep/f_deep_sleep.h @@ -0,0 +1,6 @@ +#ifndef F_DEEP_SLEEP_H +#define F_DEEP_SLEEP_H +#include <Arduino.h> +void deep_sleep(int time_to_sleep); +void print_wakeup_reason(); +#endif diff --git a/code-snippets/client/sensor_station/client/.gitignore b/code-snippets/client/sensor_station/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..89cc49cbd652508924b868ea609fa8f6b758ec56 --- /dev/null +++ b/code-snippets/client/sensor_station/client/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/code-snippets/client/sensor_station/client/.gitkeep b/code-snippets/client/sensor_station/client/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-snippets/client/sensor_station/client/.vscode/extensions.json b/code-snippets/client/sensor_station/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/sensor_station/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/sensor_station/client/include/README b/code-snippets/client/sensor_station/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/sensor_station/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/sensor_station/client/include/forte_sensor.hpp b/code-snippets/client/sensor_station/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/sensor_station/client/include/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station/client/include/pinout.hpp b/code-snippets/client/sensor_station/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/sensor_station/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station/client/platformio.ini b/code-snippets/client/sensor_station/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..0094691b2838c1b195b11d15a62e2b1773267887 --- /dev/null +++ b/code-snippets/client/sensor_station/client/platformio.ini @@ -0,0 +1,18 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + wollewald/INA219_WE@^1.3.1 + envirodiy/SDI-12@^2.1.4 diff --git a/code-snippets/client/sensor_station/client/src/main.cpp b/code-snippets/client/sensor_station/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..36d7eab2838c72c7dd95161d05919d8ea3772607 --- /dev/null +++ b/code-snippets/client/sensor_station/client/src/main.cpp @@ -0,0 +1,61 @@ +#include <Arduino.h> +#include <scd30.hpp> +#include <ina219.hpp> +#include <drs26.hpp> + +Forte_SCD30 scd30; +Forte_INA219 ina219; +Forte_DRS26 drs26; + + +void setup() { + Serial.begin(9600); + ina219.setup(); + drs26.setup(); + +} + +void loop() { + +//***********************************************************DATA for ins219************************** + + out_data_ina219* data_ina219; + data_ina219 = ina219.read_data(); + Serial.println("******************************INA219********************Power--Consumption**********************************"); + if(data_ina219==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Shunt Voltage [mV]: "); Serial.println(data_ina219->shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(data_ina219->busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(data_ina219->loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(data_ina219->current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(data_ina219->power_mW); + data_ina219->ina219_overflow== false ? Serial.println("Values OK - no overflow") : Serial.println("Overflow! Choose higher PGAIN"); + Serial.println(); + } + delay(1000); + + + out_data_drs26* data; + drs26.read_data(); + + data = drs26.read_data(); + Serial.println("******************************DRS26********************Tree-size**********************************"); + if(data==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Sensor ID "); Serial.println(data->id); + Serial.print("Cicumfence "); Serial.println(data->circumference); + Serial.print("Temperature "); Serial.println(data->temperatur); + Serial.println(); + } + delay(1000); + +} + diff --git a/code-snippets/client/sensor_station/client/test/README b/code-snippets/client/sensor_station/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/sensor_station/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/sensor_station_Analog/client/.gitignore b/code-snippets/client/sensor_station_Analog/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..89cc49cbd652508924b868ea609fa8f6b758ec56 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/code-snippets/client/sensor_station_Analog/client/.gitkeep b/code-snippets/client/sensor_station_Analog/client/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-snippets/client/sensor_station_Analog/client/.vscode/extensions.json b/code-snippets/client/sensor_station_Analog/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/sensor_station_Analog/client/.vscode/settings.json b/code-snippets/client/sensor_station_Analog/client/.vscode/settings.json new file mode 100644 index 0000000000000000000000000000000000000000..67863418a31be3d92fc16a4546f09287d55dd01a --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/.vscode/settings.json @@ -0,0 +1,53 @@ +{ + "files.associations": { + "array": "cpp", + "atomic": "cpp", + "*.tcc": "cpp", + "cctype": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "unordered_map": "cpp", + "unordered_set": "cpp", + "vector": "cpp", + "exception": "cpp", + "algorithm": "cpp", + "functional": "cpp", + "iterator": "cpp", + "map": "cpp", + "memory": "cpp", + "memory_resource": "cpp", + "numeric": "cpp", + "optional": "cpp", + "random": "cpp", + "string": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "utility": "cpp", + "fstream": "cpp", + "initializer_list": "cpp", + "iomanip": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "istream": "cpp", + "limits": "cpp", + "new": "cpp", + "ostream": "cpp", + "sstream": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "cinttypes": "cpp", + "typeinfo": "cpp" + } +} \ No newline at end of file diff --git a/code-snippets/client/sensor_station_Analog/client/include/Adafruit_ADS1X15_Forte/Adafruit_ADS1X15_Forte.cpp b/code-snippets/client/sensor_station_Analog/client/include/Adafruit_ADS1X15_Forte/Adafruit_ADS1X15_Forte.cpp new file mode 100644 index 0000000000000000000000000000000000000000..4d78b4d7bd52142293bcd1fd95a73082c4f2fe05 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/include/Adafruit_ADS1X15_Forte/Adafruit_ADS1X15_Forte.cpp @@ -0,0 +1,403 @@ +/**************************************************************************/ +/*! + @file Adafruit_ADS1X15.cpp + @author K.Townsend (Adafruit Industries) + + @mainpage Adafruit ADS1X15 ADC Breakout Driver + + @section intro_sec Introduction + + This is a library for the Adafruit ADS1X15 ADC breakout boards. + + Adafruit invests time and resources providing this open source code, + please support Adafruit and open-source hardware by purchasing + products from Adafruit! + + @section author Author + + Written by Kevin "KTOWN" Townsend for Adafruit Industries. + + @section HISTORY + + v1.0 - First release + v1.1 - Added ADS1115 support - W. Earl + v2.0 - Refactor - C. Nelson + + @section license License + + BSD license, all text here must be included in any redistribution +*/ +/**************************************************************************/ +#include "Adafruit_ADS1X15_Forte.h" + +/**************************************************************************/ +/*! + @brief Instantiates a new ADS1015 class w/appropriate properties +*/ +/**************************************************************************/ +Adafruit_ADS1015::Adafruit_ADS1015() { + m_bitShift = 4; + m_gain = GAIN_TWOTHIRDS; /* +/- 6.144V range (limited to VDD +0.3V max!) */ + m_dataRate = RATE_ADS1015_1600SPS; +} + +/**************************************************************************/ +/*! + @brief Instantiates a new ADS1115 class w/appropriate properties +*/ +/**************************************************************************/ +Adafruit_ADS1115::Adafruit_ADS1115() { + m_bitShift = 0; + m_gain = GAIN_TWOTHIRDS; /* +/- 6.144V range (limited to VDD +0.3V max!) */ + m_dataRate = RATE_ADS1115_128SPS; +} + +/**************************************************************************/ +/*! + @brief Sets up the HW (reads coefficients values, etc.) + + @param i2c_addr I2C address of device + @param wire I2C bus + + @return true if successful, otherwise false +*/ +/**************************************************************************/ +bool Adafruit_ADS1X15::begin(uint8_t i2c_addr, TwoWire *wire) { + m_i2c_dev = new Adafruit_I2CDevice(i2c_addr, wire); + return m_i2c_dev->begin(); +} + +/**************************************************************************/ +/*! + @brief Sets the gain and input voltage range + + @param gain gain setting to use +*/ +/**************************************************************************/ +void Adafruit_ADS1X15::setGain(adsGain_t gain) { m_gain = gain; } + +/**************************************************************************/ +/*! + @brief Gets a gain and input voltage range + + @return the gain setting +*/ +/**************************************************************************/ +adsGain_t Adafruit_ADS1X15::getGain() { return m_gain; } + +/**************************************************************************/ +/*! + @brief Sets the data rate + + @param rate the data rate to use +*/ +/**************************************************************************/ +void Adafruit_ADS1X15::setDataRate(uint16_t rate) { m_dataRate = rate; } + +/**************************************************************************/ +/*! + @brief Gets the current data rate + + @return the data rate +*/ +/**************************************************************************/ +uint16_t Adafruit_ADS1X15::getDataRate() { return m_dataRate; } + +/**************************************************************************/ +/*! + @brief Gets a single-ended ADC reading from the specified channel + + @param channel ADC channel to read + + @return the ADC reading +*/ +/**************************************************************************/ +int16_t Adafruit_ADS1X15::readADC_SingleEnded(uint8_t channel) { + if (channel > 3) { + return 0; + } + + startADCReading(MUX_BY_CHANNEL[channel], /*continuous=*/false); + + // Wait for the conversion to complete + while (!conversionComplete()) + ; + + // Read the conversion results + return getLastConversionResults(); +} + +/**************************************************************************/ +/*! + @brief Reads the conversion results, measuring the voltage + difference between the P (AIN0) and N (AIN1) input. Generates + a signed value since the difference can be either + positive or negative. + + @return the ADC reading +*/ +/**************************************************************************/ +int16_t Adafruit_ADS1X15::readADC_Differential_0_1() { + startADCReading(ADS1X15_REG_CONFIG_MUX_DIFF_0_1, /*continuous=*/false); + + // Wait for the conversion to complete + while (!conversionComplete()) + ; + + // Read the conversion results + return getLastConversionResults(); +} + +/**************************************************************************/ +/*! + @brief Reads the conversion results, measuring the voltage + difference between the P (AIN0) and N (AIN3) input. Generates + a signed value since the difference can be either + positive or negative. + @return the ADC reading +*/ +/**************************************************************************/ +int16_t Adafruit_ADS1X15::readADC_Differential_0_3() { + startADCReading(ADS1X15_REG_CONFIG_MUX_DIFF_0_3, /*continuous=*/false); + + // Wait for the conversion to complete + while (!conversionComplete()) + ; + + // Read the conversion results + return getLastConversionResults(); +} + +/**************************************************************************/ +/*! + @brief Reads the conversion results, measuring the voltage + difference between the P (AIN1) and N (AIN3) input. Generates + a signed value since the difference can be either + positive or negative. + @return the ADC reading +*/ +/**************************************************************************/ +int16_t Adafruit_ADS1X15::readADC_Differential_1_3() { + startADCReading(ADS1X15_REG_CONFIG_MUX_DIFF_1_3, /*continuous=*/false); + + // Wait for the conversion to complete + while (!conversionComplete()) + ; + + // Read the conversion results + return getLastConversionResults(); +} + +/**************************************************************************/ +/*! + @brief Reads the conversion results, measuring the voltage + difference between the P (AIN2) and N (AIN3) input. Generates + a signed value since the difference can be either + positive or negative. + + @return the ADC reading +*/ +/**************************************************************************/ +int16_t Adafruit_ADS1X15::readADC_Differential_2_3() { + startADCReading(ADS1X15_REG_CONFIG_MUX_DIFF_2_3, /*continuous=*/false); + + // Wait for the conversion to complete + while (!conversionComplete()) + ; + + // Read the conversion results + return getLastConversionResults(); +} + +/**************************************************************************/ +/*! + @brief Sets up the comparator to operate in basic mode, causing the + ALERT/RDY pin to assert (go from high to low) when the ADC + value exceeds the specified threshold. + + This will also set the ADC in continuous conversion mode. + + @param channel ADC channel to use + @param threshold comparator threshold +*/ +/**************************************************************************/ +void Adafruit_ADS1X15::startComparator_SingleEnded(uint8_t channel, + int16_t threshold) { + // Start with default values + uint16_t config = + ADS1X15_REG_CONFIG_CQUE_1CONV | // Comparator enabled and asserts on 1 + // match + ADS1X15_REG_CONFIG_CLAT_LATCH | // Latching mode + ADS1X15_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val) + ADS1X15_REG_CONFIG_CMODE_TRAD | // Traditional comparator (default val) + ADS1X15_REG_CONFIG_MODE_CONTIN | // Continuous conversion mode + ADS1X15_REG_CONFIG_MODE_CONTIN; // Continuous conversion mode + + // Set PGA/voltage range + config |= m_gain; + + // Set data rate + config |= m_dataRate; + + config |= MUX_BY_CHANNEL[channel]; + + // Set the high threshold register + // Shift 12-bit results left 4 bits for the ADS1015 + writeRegister(ADS1X15_REG_POINTER_HITHRESH, threshold << m_bitShift); + + // Write config register to the ADC + writeRegister(ADS1X15_REG_POINTER_CONFIG, config); +} + +/**************************************************************************/ +/*! + @brief In order to clear the comparator, we need to read the + conversion results. This function reads the last conversion + results without changing the config value. + + @return the last ADC reading +*/ +/**************************************************************************/ +int16_t Adafruit_ADS1X15::getLastConversionResults() { + // Read the conversion results + uint16_t res = readRegister(ADS1X15_REG_POINTER_CONVERT) >> m_bitShift; + if (m_bitShift == 0) { + return (int16_t)res; + } else { + // Shift 12-bit results right 4 bits for the ADS1015, + // making sure we keep the sign bit intact + if (res > 0x07FF) { + // negative number - extend the sign to 16th bit + res |= 0xF000; + } + return (int16_t)res; + } +} + +/**************************************************************************/ +/*! + @brief Returns true if conversion is complete, false otherwise. + + @param counts the ADC reading in raw counts + + @return the ADC reading in volts +*/ +/**************************************************************************/ +float Adafruit_ADS1X15::computeVolts(int16_t counts) { + // see data sheet Table 3 + float fsRange; + switch (m_gain) { + case GAIN_TWOTHIRDS: + fsRange = 6.144f; + break; + case GAIN_ONE: + fsRange = 4.096f; + break; + case GAIN_TWO: + fsRange = 2.048f; + break; + case GAIN_FOUR: + fsRange = 1.024f; + break; + case GAIN_EIGHT: + fsRange = 0.512f; + break; + case GAIN_SIXTEEN: + fsRange = 0.256f; + break; + default: + fsRange = 0.0f; + } + return counts * (fsRange / (32768 >> m_bitShift)); +} + +/**************************************************************************/ +/*! + @brief Non-blocking start conversion function + + Call getLastConversionResults() once conversionComplete() returns true. + In continuous mode, getLastConversionResults() will always return the + latest result. + ALERT/RDY pin is set to RDY mode, and a 8us pulse is generated every + time new data is ready. + + @param mux mux field value + @param continuous continuous if set, otherwise single shot +*/ +/**************************************************************************/ +void Adafruit_ADS1X15::startADCReading(uint16_t mux, bool continuous) { + // Start with default values + uint16_t config = + ADS1X15_REG_CONFIG_CQUE_1CONV | // Set CQUE to any value other than + // None so we can use it in RDY mode + ADS1X15_REG_CONFIG_CLAT_NONLAT | // Non-latching (default val) + ADS1X15_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val) + ADS1X15_REG_CONFIG_CMODE_TRAD; // Traditional comparator (default val) + + if (continuous) { + config |= ADS1X15_REG_CONFIG_MODE_CONTIN; + } else { + config |= ADS1X15_REG_CONFIG_MODE_SINGLE; + } + + // Set PGA/voltage range + config |= m_gain; + + // Set data rate + config |= m_dataRate; + + // Set channels + config |= mux; + + // Set 'start single-conversion' bit + config |= ADS1X15_REG_CONFIG_OS_SINGLE; + + // Write config register to the ADC + writeRegister(ADS1X15_REG_POINTER_CONFIG, config); + + // Set ALERT/RDY to RDY mode. + writeRegister(ADS1X15_REG_POINTER_HITHRESH, 0x8000); + writeRegister(ADS1X15_REG_POINTER_LOWTHRESH, 0x0000); +} + +/**************************************************************************/ +/*! + @brief Returns true if conversion is complete, false otherwise. + + @return True if conversion is complete, false otherwise. +*/ +/**************************************************************************/ +bool Adafruit_ADS1X15::conversionComplete() { + return (readRegister(ADS1X15_REG_POINTER_CONFIG) & 0x8000) != 0; +} + +/**************************************************************************/ +/*! + @brief Writes 16-bits to the specified destination register + + @param reg register address to write to + @param value value to write to register +*/ +/**************************************************************************/ +void Adafruit_ADS1X15::writeRegister(uint8_t reg, uint16_t value) { + buffer[0] = reg; + buffer[1] = value >> 8; + buffer[2] = value & 0xFF; + m_i2c_dev->write(buffer, 3); +} + +/**************************************************************************/ +/*! + @brief Read 16-bits from the specified destination register + + @param reg register address to read from + + @return 16 bit register value read +*/ +/**************************************************************************/ +uint16_t Adafruit_ADS1X15::readRegister(uint8_t reg) { + buffer[0] = reg; + m_i2c_dev->write(buffer, 1); + m_i2c_dev->read(buffer, 2); + return ((buffer[0] << 8) | buffer[1]); +} diff --git a/code-snippets/client/sensor_station_Analog/client/include/Adafruit_ADS1X15_Forte/Adafruit_ADS1X15_Forte.h b/code-snippets/client/sensor_station_Analog/client/include/Adafruit_ADS1X15_Forte/Adafruit_ADS1X15_Forte.h new file mode 100644 index 0000000000000000000000000000000000000000..c1c1adf4f789653e7962ef07e3a6ab0685306737 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/include/Adafruit_ADS1X15_Forte/Adafruit_ADS1X15_Forte.h @@ -0,0 +1,201 @@ +/**************************************************************************/ +/*! + @file Adafruit_ADS1X15.h + + This is a library for the Adafruit ADS1X15 ADC breakout boards. + + Adafruit invests time and resources providing this open source code, + please support Adafruit and open-source hardware by purchasing + products from Adafruit! + + Written by Kevin "KTOWN" Townsend for Adafruit Industries. + + BSD license, all text here must be included in any redistribution +*/ +/**************************************************************************/ +#ifndef __ADS1X15_Forte_H__ +#define __ADS1X15_Forte_H__ + +#include <Adafruit_I2CDevice.h> +#include <Arduino.h> +#include <Wire.h> + +/*========================================================================= + I2C ADDRESS/BITS + -----------------------------------------------------------------------*/ +#define ADS1X15_ADDRESS (0x48) ///< 1001 000 (ADDR = GND) +/*=========================================================================*/ + +/*========================================================================= + POINTER REGISTER + -----------------------------------------------------------------------*/ +#define ADS1X15_REG_POINTER_MASK (0x03) ///< Point mask +#define ADS1X15_REG_POINTER_CONVERT (0x00) ///< Conversion +#define ADS1X15_REG_POINTER_CONFIG (0x01) ///< Configuration +#define ADS1X15_REG_POINTER_LOWTHRESH (0x02) ///< Low threshold +#define ADS1X15_REG_POINTER_HITHRESH (0x03) ///< High threshold +/*=========================================================================*/ + +/*========================================================================= + CONFIG REGISTER + -----------------------------------------------------------------------*/ +#define ADS1X15_REG_CONFIG_OS_MASK (0x8000) ///< OS Mask +#define ADS1X15_REG_CONFIG_OS_SINGLE \ + (0x8000) ///< Write: Set to start a single-conversion +#define ADS1X15_REG_CONFIG_OS_BUSY \ + (0x0000) ///< Read: Bit = 0 when conversion is in progress +#define ADS1X15_REG_CONFIG_OS_NOTBUSY \ + (0x8000) ///< Read: Bit = 1 when device is not performing a conversion + +#define ADS1X15_REG_CONFIG_MUX_MASK (0x7000) ///< Mux Mask +#define ADS1X15_REG_CONFIG_MUX_DIFF_0_1 \ + (0x0000) ///< Differential P = AIN0, N = AIN1 (default) +#define ADS1X15_REG_CONFIG_MUX_DIFF_0_3 \ + (0x1000) ///< Differential P = AIN0, N = AIN3 +#define ADS1X15_REG_CONFIG_MUX_DIFF_1_3 \ + (0x2000) ///< Differential P = AIN1, N = AIN3 +#define ADS1X15_REG_CONFIG_MUX_DIFF_2_3 \ + (0x3000) ///< Differential P = AIN2, N = AIN3 +#define ADS1X15_REG_CONFIG_MUX_SINGLE_0 (0x4000) ///< Single-ended AIN0 +#define ADS1X15_REG_CONFIG_MUX_SINGLE_1 (0x5000) ///< Single-ended AIN1 +#define ADS1X15_REG_CONFIG_MUX_SINGLE_2 (0x6000) ///< Single-ended AIN2 +#define ADS1X15_REG_CONFIG_MUX_SINGLE_3 (0x7000) ///< Single-ended AIN3 + +constexpr uint16_t MUX_BY_CHANNEL[] = { + ADS1X15_REG_CONFIG_MUX_SINGLE_0, ///< Single-ended AIN0 + ADS1X15_REG_CONFIG_MUX_SINGLE_1, ///< Single-ended AIN1 + ADS1X15_REG_CONFIG_MUX_SINGLE_2, ///< Single-ended AIN2 + ADS1X15_REG_CONFIG_MUX_SINGLE_3 ///< Single-ended AIN3 +}; ///< MUX config by channel + +#define ADS1X15_REG_CONFIG_PGA_MASK (0x0E00) ///< PGA Mask +#define ADS1X15_REG_CONFIG_PGA_6_144V (0x0000) ///< +/-6.144V range = Gain 2/3 +#define ADS1X15_REG_CONFIG_PGA_4_096V (0x0200) ///< +/-4.096V range = Gain 1 +#define ADS1X15_REG_CONFIG_PGA_2_048V \ + (0x0400) ///< +/-2.048V range = Gain 2 (default) +#define ADS1X15_REG_CONFIG_PGA_1_024V (0x0600) ///< +/-1.024V range = Gain 4 +#define ADS1X15_REG_CONFIG_PGA_0_512V (0x0800) ///< +/-0.512V range = Gain 8 +#define ADS1X15_REG_CONFIG_PGA_0_256V (0x0A00) ///< +/-0.256V range = Gain 16 + +#define ADS1X15_REG_CONFIG_MODE_MASK (0x0100) ///< Mode Mask +#define ADS1X15_REG_CONFIG_MODE_CONTIN (0x0000) ///< Continuous conversion mode +#define ADS1X15_REG_CONFIG_MODE_SINGLE \ + (0x0100) ///< Power-down single-shot mode (default) + +#define ADS1X15_REG_CONFIG_RATE_MASK (0x00E0) ///< Data Rate Mask + +#define ADS1X15_REG_CONFIG_CMODE_MASK (0x0010) ///< CMode Mask +#define ADS1X15_REG_CONFIG_CMODE_TRAD \ + (0x0000) ///< Traditional comparator with hysteresis (default) +#define ADS1X15_REG_CONFIG_CMODE_WINDOW (0x0010) ///< Window comparator + +#define ADS1X15_REG_CONFIG_CPOL_MASK (0x0008) ///< CPol Mask +#define ADS1X15_REG_CONFIG_CPOL_ACTVLOW \ + (0x0000) ///< ALERT/RDY pin is low when active (default) +#define ADS1X15_REG_CONFIG_CPOL_ACTVHI \ + (0x0008) ///< ALERT/RDY pin is high when active + +#define ADS1X15_REG_CONFIG_CLAT_MASK \ + (0x0004) ///< Determines if ALERT/RDY pin latches once asserted +#define ADS1X15_REG_CONFIG_CLAT_NONLAT \ + (0x0000) ///< Non-latching comparator (default) +#define ADS1X15_REG_CONFIG_CLAT_LATCH (0x0004) ///< Latching comparator + +#define ADS1X15_REG_CONFIG_CQUE_MASK (0x0003) ///< CQue Mask +#define ADS1X15_REG_CONFIG_CQUE_1CONV \ + (0x0000) ///< Assert ALERT/RDY after one conversions +#define ADS1X15_REG_CONFIG_CQUE_2CONV \ + (0x0001) ///< Assert ALERT/RDY after two conversions +#define ADS1X15_REG_CONFIG_CQUE_4CONV \ + (0x0002) ///< Assert ALERT/RDY after four conversions +#define ADS1X15_REG_CONFIG_CQUE_NONE \ + (0x0003) ///< Disable the comparator and put ALERT/RDY in high state (default) +/*=========================================================================*/ + +/** Gain settings */ +typedef enum { + GAIN_TWOTHIRDS = ADS1X15_REG_CONFIG_PGA_6_144V, + GAIN_ONE = ADS1X15_REG_CONFIG_PGA_4_096V, + GAIN_TWO = ADS1X15_REG_CONFIG_PGA_2_048V, + GAIN_FOUR = ADS1X15_REG_CONFIG_PGA_1_024V, + GAIN_EIGHT = ADS1X15_REG_CONFIG_PGA_0_512V, + GAIN_SIXTEEN = ADS1X15_REG_CONFIG_PGA_0_256V +} adsGain_t; + +/** Data rates */ +#define RATE_ADS1015_128SPS (0x0000) ///< 128 samples per second +#define RATE_ADS1015_250SPS (0x0020) ///< 250 samples per second +#define RATE_ADS1015_490SPS (0x0040) ///< 490 samples per second +#define RATE_ADS1015_920SPS (0x0060) ///< 920 samples per second +#define RATE_ADS1015_1600SPS (0x0080) ///< 1600 samples per second (default) +#define RATE_ADS1015_2400SPS (0x00A0) ///< 2400 samples per second +#define RATE_ADS1015_3300SPS (0x00C0) ///< 3300 samples per second + +#define RATE_ADS1115_8SPS (0x0000) ///< 8 samples per second +#define RATE_ADS1115_16SPS (0x0020) ///< 16 samples per second +#define RATE_ADS1115_32SPS (0x0040) ///< 32 samples per second +#define RATE_ADS1115_64SPS (0x0060) ///< 64 samples per second +#define RATE_ADS1115_128SPS (0x0080) ///< 128 samples per second (default) +#define RATE_ADS1115_250SPS (0x00A0) ///< 250 samples per second +#define RATE_ADS1115_475SPS (0x00C0) ///< 475 samples per second +#define RATE_ADS1115_860SPS (0x00E0) ///< 860 samples per second + +/**************************************************************************/ +/*! + @brief Sensor driver for the Adafruit ADS1X15 ADC breakouts. +*/ +/**************************************************************************/ +class Adafruit_ADS1X15 { +protected: + // Instance-specific properties + Adafruit_I2CDevice *m_i2c_dev; ///< I2C bus device + uint8_t m_bitShift; ///< bit shift amount + adsGain_t m_gain; ///< ADC gain + uint16_t m_dataRate; ///< Data rate + +public: + bool begin(uint8_t i2c_addr = ADS1X15_ADDRESS, TwoWire *wire = &Wire); + int16_t readADC_SingleEnded(uint8_t channel); + int16_t readADC_Differential_0_1(); + int16_t readADC_Differential_0_3(); + int16_t readADC_Differential_1_3(); + int16_t readADC_Differential_2_3(); + void startComparator_SingleEnded(uint8_t channel, int16_t threshold); + int16_t getLastConversionResults(); + float computeVolts(int16_t counts); + void setGain(adsGain_t gain); + adsGain_t getGain(); + void setDataRate(uint16_t rate); + uint16_t getDataRate(); + + void startADCReading(uint16_t mux, bool continuous); + + bool conversionComplete(); + +private: + void writeRegister(uint8_t reg, uint16_t value); + uint16_t readRegister(uint8_t reg); + uint8_t buffer[3]; +}; + +/**************************************************************************/ +/*! + @brief Sensor driver for the Adafruit ADS1015 ADC breakout. +*/ +/**************************************************************************/ +class Adafruit_ADS1015 : public Adafruit_ADS1X15 { +public: + Adafruit_ADS1015(); +}; + +/**************************************************************************/ +/*! + @brief Sensor driver for the Adafruit ADS1115 ADC breakout. +*/ +/**************************************************************************/ +class Adafruit_ADS1115 : public Adafruit_ADS1X15 { +public: + Adafruit_ADS1115(); +}; + +#endif diff --git a/code-snippets/client/sensor_station_Analog/client/include/NoDataAvailableException.hpp b/code-snippets/client/sensor_station_Analog/client/include/NoDataAvailableException.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a5de09a1410326f7f6352f4e27a455b3f2b0061f --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/include/NoDataAvailableException.hpp @@ -0,0 +1,8 @@ +#pragma once + +#include <exception> +#include <iostream> + +struct NoDataAvailableException : public std::exception { + const char *what() const throw() { return "Sensor could not read data"; } +}; \ No newline at end of file diff --git a/code-snippets/client/sensor_station_Analog/client/include/README b/code-snippets/client/sensor_station_Analog/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/sensor_station_Analog/client/include/forte_sensor.hpp b/code-snippets/client/sensor_station_Analog/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..4ca8e39602ae03062a79a2acb8c25e634521f8b8 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/include/forte_sensor.hpp @@ -0,0 +1,15 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +// #include "Message.hpp" +template <class T> +class Forte_Sensor { + public: + virtual T read_data() = 0; + virtual void setup() = 0; + //virtual Message build_message() = 0; + + private: +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_Analog/client/include/pinout.hpp b/code-snippets/client/sensor_station_Analog/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..f59c23778660216a8d632661933da581c7de2a4a --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 6 +#define I2C_SCL 7 + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_Analog/client/platformio.ini b/code-snippets/client/sensor_station_Analog/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..d91781822e43930b87bdfd6cea9c76ef8529e360 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/platformio.ini @@ -0,0 +1,27 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +monitor_speed = 9600 +build_flags = + -I include +lib_deps = + sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + adafruit/Adafruit BusIO@^1.13.2 + Adafruit_I2CDevice + SPI + envirodiy/SDI-12@^2.1.4 + fbiego/ESP32Time@^2.0.0 + Wifi + adafruit/Adafruit INA219@^1.2.0 diff --git a/code-snippets/client/sensor_station_Analog/client/src/main.cpp b/code-snippets/client/sensor_station_Analog/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..9376c9906b479b213600b54ea1abecb42558b2ff --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/src/main.cpp @@ -0,0 +1,59 @@ +#include <Arduino.h> +#include <Wire.h> +#include <dr26.hpp> +#include <ina219.hpp> +#include "esp_debug_helpers.h" + +Adafruit_ADS1115 adss; + +Forte_DR26 dr26; +Forte_INA219 ina219; + +void setup() +{ + Serial.begin(9600); + Wire.begin(6, 7); + adss.setGain(GAIN_ONE); + adss.begin() ? Serial.println("ADS initialized") : Serial.println("failed to initialize ADS"); + delay(100); + dr26.setup(); + ina219.setup(); + +} +int x =0; + +void loop() +{ + Serial.println("******************************DR26-Analog********************Tree-Size**********************************"); + float data_drs26=-1; + try + { + data_drs26=dr26.read_data(); + Serial.print("dr26: "); + Serial.println(data_drs26); + } + catch(NoDataAvailableException& e){ + Serial.println("No Sensor aviable"); + } + + out_data_ina219 data_ina219; + Serial.println("******************************INA219********************Power--Consumption**********************************"); + try{ + data_ina219=ina219.read_data(); + Serial.print("Shunt Voltage [mV]: "); Serial.println(data_ina219.shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(data_ina219.busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(data_ina219.loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(data_ina219.current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(data_ina219.power_mW); + data_ina219.ina219_overflow== false ? Serial.println("Values OK - no overflow") : Serial.println("Overflow! Choose higher PGAIN"); + Serial.println(); + } + + catch(NoDataAvailableException& e){ + Serial.println("No Sensor aviable"); + } + + // Serial.println("Free Heap:"); Keep trach of the free stack -> momery leak can cause stack overflow + // Serial.println(esp_get_free_heap_size()); + delay(4000); +} diff --git a/code-snippets/client/sensor_station_Analog/client/test/README b/code-snippets/client/sensor_station_Analog/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/code-snippets/client/sensor_station_Analog/client/test/TestESPNow.cpp b/code-snippets/client/sensor_station_Analog/client/test/TestESPNow.cpp new file mode 100644 index 0000000000000000000000000000000000000000..3a4c149bb8742e61c0a235691e7e0b8d9a3eda76 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/test/TestESPNow.cpp @@ -0,0 +1,12 @@ +#include "TestESPNow.hpp" + +void test_on_data_recv_valid_config() +{ + uint8_t mac_addr[6] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; + int len = 0; + config conf = {host : {0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA}, time_millis : 0}; + + // preferences / hostinfo would need to be global for this to work + + TEST_FAIL(); +} diff --git a/code-snippets/client/sensor_station_Analog/client/test/TestESPNow.hpp b/code-snippets/client/sensor_station_Analog/client/test/TestESPNow.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a2512b2ffd4ca48031415456d658302d4bae6b91 --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/test/TestESPNow.hpp @@ -0,0 +1,6 @@ +#pragma once +#include <Arduino.h> +#include <ESPNow.hpp> +#include <unity.h> + +void test_on_data_recv_valid_config(); \ No newline at end of file diff --git a/client/client/test/TestMessage.cpp b/code-snippets/client/sensor_station_Analog/client/test/TestMessage.cpp similarity index 100% rename from client/client/test/TestMessage.cpp rename to code-snippets/client/sensor_station_Analog/client/test/TestMessage.cpp diff --git a/client/client/test/TestMessage.hpp b/code-snippets/client/sensor_station_Analog/client/test/TestMessage.hpp similarity index 100% rename from client/client/test/TestMessage.hpp rename to code-snippets/client/sensor_station_Analog/client/test/TestMessage.hpp diff --git a/code-snippets/client/sensor_station_Analog/client/test/main.cpp b/code-snippets/client/sensor_station_Analog/client/test/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..82d68817015b01f036c346b18fa79601a5e842aa --- /dev/null +++ b/code-snippets/client/sensor_station_Analog/client/test/main.cpp @@ -0,0 +1,17 @@ +#include "TestESPNow.hpp" +#include "TestMessage.hpp" +#include <Arduino.h> +#include <unity.h> + +void setup() +{ + delay(2000); // service delay + + UNITY_BEGIN(); + RUN_TEST(test_on_data_recv_valid_config); + RUN_TEST(test_on_data_recv); + RUN_TEST(test_new_message_filled); + UNITY_END(); +} + +void loop() {} \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/.gitignore b/code-snippets/client/sensor_station_espnow/client/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..89cc49cbd652508924b868ea609fa8f6b758ec56 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/code-snippets/client/sensor_station_espnow/client/.gitkeep b/code-snippets/client/sensor_station_espnow/client/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code-snippets/client/sensor_station_espnow/client/.vscode/extensions.json b/code-snippets/client/sensor_station_espnow/client/.vscode/extensions.json new file mode 100644 index 0000000000000000000000000000000000000000..080e70d08b9811fa743afe5094658dba0ed6b7c2 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/code-snippets/client/sensor_station_espnow/client/include/README b/code-snippets/client/sensor_station_espnow/client/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/code-snippets/client/sensor_station_espnow/client/include/forte_sensor.hpp b/code-snippets/client/sensor_station_espnow/client/include/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/include/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/include/pinout.hpp b/code-snippets/client/sensor_station_espnow/client/include/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..9a9ad92494f6fda373d184ef94f91d17934e01ba --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/include/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C +#define I2C_SDA 18 +#define I2C_SCL 19 + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/README b/code-snippets/client/sensor_station_espnow/client/lib/README new file mode 100644 index 0000000000000000000000000000000000000000..6debab1e8b4c3faa0d06f4ff44bce343ce2cdcbf --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include <Foo.h> +#include <Bar.h> + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/code-snippets/client/sensor_station_espnow/client/lib/caching/src/ram_caching.cpp b/code-snippets/client/sensor_station_espnow/client/lib/caching/src/ram_caching.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7b3e4372177608b2392c703dbd352e6a7b47cabb --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/caching/src/ram_caching.cpp @@ -0,0 +1,21 @@ +#include <Arduino.h> +#include "espnow.hpp" + +RTC_DATA_ATTR int cachedAmount = -1; +RTC_DATA_ATTR data_struct backup[10]; + +data_struct ram_cache_pop(){ + return backup[cachedAmount--]; +} + +void ram_cache_push(data_struct data){ + backup[++cachedAmount] = data; +} + +bool ram_cache_is_empty(){ + return cachedAmount == -1; +} + +bool ram_cache_is_full(){ + return cachedAmount == 9; +} \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/caching/src/ram_caching.hpp b/code-snippets/client/sensor_station_espnow/client/lib/caching/src/ram_caching.hpp new file mode 100644 index 0000000000000000000000000000000000000000..979e8496faf9599c0621300b8714fd359321f05b --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/caching/src/ram_caching.hpp @@ -0,0 +1,10 @@ +#ifndef _RAM_CACHE +#define _RAM_CACHE +#include "espnow.hpp" + +bool ram_cache_is_empty(); +bool ram_cache_is_full(); +void ram_cache_push(data_struct data); +data_struct ram_cache_pop(); + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/drs26.cpp b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/drs26.cpp new file mode 100644 index 0000000000000000000000000000000000000000..33388611f909857082e2e7d82f0164a7b786c514 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/drs26.cpp @@ -0,0 +1,62 @@ +#include <drs26.hpp> +/* +It happens for some reason that the sensor cant get reached every 2 time +Because the sensor use sdi12 protocoll we have to wait aproxemettly 1 secound between the commands +It is not known how lond the response takes so we use a while loop which can be a risk wehre the programm can get stuck +*/ + +void Forte_DRS26 ::setup() +{ + drs26.begin(SDI_DATA); +} + +out_data_drs26 *Forte_DRS26 ::read_data() +{ + String sdiResponse = ""; + String measurement_command="1M!"; //The drs26 sensor uses the sdi12 protocoll , in the sdi12 protocoll is the measurement command is specified as 1M!=Sebsir measurement request at adress 1 + String data_command="1D0!"; //and the followed data command 1D0! = Sensor data request at adress 1 + + drs26.sendCommand(measurement_command); + delay(1000); + drs26.sendCommand(data_command); + + while (drs26.available()) + { + char next_character = drs26.read(); + if ((next_character != '\n') && (next_character != '\r')) + { + sdiResponse += next_character; + delay(10); // 1 character ~ 7.5ms + } + } + + // Serial.println(sdiResponse); + + if (sdiResponse.length() > 1) + { + data.id = sdiResponse.substring(0, 7).toInt(); + data.circumference = sdiResponse.substring(8, 14).toFloat(); + data.temperatur = sdiResponse.substring(15,21).toFloat(); + return &data; + } + + return 0; +} + +void Forte_DRS26 ::print(out_data_drs26* data_drs26) +{ +Serial.println("******************************DRS26********************Tree-size**********************************"); + if(data_drs26==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Sensor ID "); Serial.println(data_drs26->id); + Serial.print("Cicumfence "); Serial.println(data_drs26->circumference,4); + Serial.print("Temperature "); Serial.println(data_drs26->temperatur,4); + Serial.println(); + } + delay(1000); + +} \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/drs26.hpp b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/drs26.hpp new file mode 100644 index 0000000000000000000000000000000000000000..a80dd758c4307a941f7a4b23ccbb9ff29c5efcdb --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/drs26.hpp @@ -0,0 +1,28 @@ +#ifndef _DRS26 +#define _DRS26 + +#include <forte_sensor.hpp> +#include <SDI12.h> +#include <pinout.hpp> +#include "Wire.h" + + +struct out_data_drs26 { + int id; + float circumference; + float temperatur; + }; + + +class Forte_DRS26 : public Forte_Sensor{ + public: + void setup(); + out_data_drs26* read_data(); + void print(out_data_drs26*); + + private: + SDI12 drs26; + out_data_drs26 data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/forte_sensor.hpp b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/pinout.hpp b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..cf8f907ad9d9034a8179390e06db5d7aeba37815 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/drs26_digital/pinout.hpp @@ -0,0 +1,6 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for SDI12 +#define SDI_DATA 4 +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/espnow/README b/code-snippets/client/sensor_station_espnow/client/lib/espnow/README new file mode 100644 index 0000000000000000000000000000000000000000..55f89c0b2141283b3dd2d94c882cdaccbe2064fe --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/espnow/README @@ -0,0 +1,11 @@ +# basic usage + +To send data using espnow, create a new Message object, +then use the add_data(value, identifier) method for every value +to fill the message. +when every value is added, use the send() method to send the data +to the host (fipy). If the esp client has never recieved a config +message from the host, it will instead broadcast the message. + +--- +right now, it is not possible to add more than 10 values. diff --git a/code-snippets/client/sensor_station_espnow/client/lib/espnow/src/espnow.cpp b/code-snippets/client/sensor_station_espnow/client/lib/espnow/src/espnow.cpp new file mode 100644 index 0000000000000000000000000000000000000000..aa3bfa8516d36071904fd825c6f1894bb3d57c0e --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/espnow/src/espnow.cpp @@ -0,0 +1,115 @@ +#include <esp_now.h> +#include <Preferences.h> +#include <ESP32Time.h> +#include "WiFi.h" +#include "espnow.hpp" +#include "ram_caching.hpp" + +uint8_t BROADCAST_MAC[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; +esp_now_peer_info_t hostInfo; +Preferences preferences; +ESP32Time rtc; +void get_host_mac(uint8_t* destination){ + preferences.begin("config", true); + if(preferences.isKey("host")){ + preferences.getBytes("host", destination, sizeof(uint8_t) * 6); + } + else{ + memcpy(destination, BROADCAST_MAC, sizeof(BROADCAST_MAC)); + Serial.println("backup mac used"); + } + preferences.end(); +} +void on_data_sent(const uint8_t *mac_addr, esp_now_send_status_t status){ + // go to sleep +} + +void on_data_recv(const uint8_t *mac, const uint8_t *incomingData, int len){ + Serial.println("message recieved"); + config new_config; + memcpy(&new_config, incomingData, sizeof(new_config)); // TODO: check for valid mac + + // put the host address in flash mem + preferences.begin("config", false); + if(!preferences.isKey("host")){ + preferences.putBytes("host", new_config.host, sizeof(new_config.host)); + Serial.println("host mac saved to flash"); + }// host change shouldn't be an issue + preferences.end(); + // sync time + rtc.setTime(new_config.time_millis); // see https://www.esp32.com/viewtopic.php?t=9965, maybe this needs an offset +} + + + +esp_err_t espnow_setup(){ + esp_err_t result; + WiFi.mode(WIFI_STA); + result = esp_now_init(); + if(result != ESP_OK){ + //initialization failed + return result; // not sure about this + } + + get_host_mac(hostInfo.peer_addr); // check if there is a host saved in flash mem, broadcast otherwise + + hostInfo.channel = 0; + hostInfo.encrypt = 0; + esp_now_add_peer(&hostInfo); + + esp_now_register_recv_cb(on_data_recv); + esp_now_register_send_cb(on_data_sent); + + return ESP_OK; +} + +void Message::add_data(float value, int identifier){ + if(data.amountData < NUM_SENSORS){ + data.values[data.amountData] = value; + data.identifiers[data.amountData] = identifier; + data.amountData++; + } +} + +esp_err_t Message::send(){ + Serial.println("sending Message"); + esp_err_t success; + success = esp_now_send(recipient, (uint8_t * ) &data , sizeof(data)); + // if(success != ESP_OK){ + // if(!ram_cache_is_full()){ + // ram_cache_push(*data); + // } + // } + for(int i=0; i<data.amountData; i++){ + Serial.print("identifier: "); + Serial.print(data.identifiers[i]); + Serial.print(" value: "); + Serial.println(data.values[i]); + } + Serial.println((String) "time sent: " + data.timestamp); + Serial.println((String) "Send status: " + success); + Serial.println(); + Serial.flush(); + Serial.println("done"); + return success; +} + +Message :: Message(){ + // data = (data_struct*) malloc(sizeof(data_struct)); + + // check for existing host mac address, use broadcast otherwise + get_host_mac(recipient); + + data.amountData = 0; + data.timestamp = rtc.getMillis(); // I am assuming we are not sending data from Unix Epoch +} + +Message :: Message(data_struct old_data){ + memcpy(&data, &old_data, sizeof(data)); + get_host_mac(recipient); +} + +// Message :: ~Message(){ +// free((void*) data); +// } + diff --git a/code-snippets/client/sensor_station_espnow/client/lib/espnow/src/espnow.hpp b/code-snippets/client/sensor_station_espnow/client/lib/espnow/src/espnow.hpp new file mode 100644 index 0000000000000000000000000000000000000000..ea20ce2993ae066b24c0f4e5becf2faf95a6dda6 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/espnow/src/espnow.hpp @@ -0,0 +1,41 @@ +#ifndef _ESPNOW +#define _ESPNOW + +#define NUM_SENSORS 10 +//packing the struct without padding, makes reading it on the fipy easier +#pragma pack(1) + +// having the data be a struct of basic types makes sending easier, +// otherwise we would have to serialize the data before sending +typedef struct data_struct{ + int identifiers[NUM_SENSORS]; + float values[NUM_SENSORS]; + int amountData; + long timestamp; //maybe make this array +}data_struct; + +// Format of the message sent from host to client +// if more things are sent from the host the name might not be accurate anymore +typedef struct config{ + uint8_t host[6]; + long time_millis; +}config; + +class Message{ + public: + Message(); + Message(data_struct old_data); + // ~Message(); + void add_data(float value, int identifier); + esp_err_t send(); + + private: + data_struct data; + uint8_t recipient[6]; + +}; + +esp_err_t espnow_setup(); +bool is_host_defined(); + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/f_deep_sleep/f_deep_sleep.cpp b/code-snippets/client/sensor_station_espnow/client/lib/f_deep_sleep/f_deep_sleep.cpp new file mode 100644 index 0000000000000000000000000000000000000000..fc827756ab8792770dad6c1fdc41ccbfb3fbcd09 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/f_deep_sleep/f_deep_sleep.cpp @@ -0,0 +1,23 @@ +#include "f_deep_sleep.h" + +void print_wakeup_reason(){ + esp_sleep_wakeup_cause_t wakeup_reason; + + wakeup_reason = esp_sleep_get_wakeup_cause(); + + switch(wakeup_reason) + { + case ESP_SLEEP_WAKEUP_EXT0 : Serial.println("Wakeup caused by external signal using RTC_IO"); break; + case ESP_SLEEP_WAKEUP_EXT1 : Serial.println("Wakeup caused by external signal using RTC_CNTL"); break; + case ESP_SLEEP_WAKEUP_TIMER : Serial.println("Wakeup caused by timer"); break; + case ESP_SLEEP_WAKEUP_TOUCHPAD : Serial.println("Wakeup caused by touchpad"); break; + case ESP_SLEEP_WAKEUP_ULP : Serial.println("Wakeup caused by ULP program"); break; + default : Serial.printf("Wakeup was not caused by deep sleep: %d\n",wakeup_reason); break; + } +} + + +void deep_sleep(int time_in_sec){//Increment boot number and print it every reboot + esp_sleep_enable_timer_wakeup(time_in_sec * 1000000); + esp_deep_sleep_start(); +} diff --git a/code-snippets/client/sensor_station_espnow/client/lib/f_deep_sleep/f_deep_sleep.h b/code-snippets/client/sensor_station_espnow/client/lib/f_deep_sleep/f_deep_sleep.h new file mode 100644 index 0000000000000000000000000000000000000000..876500d27ddac67e99ff0bbc4cecf74acdbeca6a --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/f_deep_sleep/f_deep_sleep.h @@ -0,0 +1,6 @@ +#ifndef F_DEEP_SLEEP_H +#define F_DEEP_SLEEP_H +#include <Arduino.h> +void deep_sleep(int time_to_sleep); +void print_wakeup_reason(); +#endif diff --git a/code-snippets/client/sensor_station_espnow/client/lib/ina219/forte_sensor.hpp b/code-snippets/client/sensor_station_espnow/client/lib/ina219/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/ina219/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/ina219/ina219.cpp b/code-snippets/client/sensor_station_espnow/client/lib/ina219/ina219.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6ab763324e1bc1c091e540bd8d3a776f941b8813 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/ina219/ina219.cpp @@ -0,0 +1,45 @@ +#include "ina219.hpp" + + +void Forte_INA219 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!ina219.init()){ + // Sensor init went wrong + return; + } +} + +out_data_ina219* Forte_INA219 :: read_data(){ + if(!ina219.getOverflow()) + { + data.shuntVoltage_mV = ina219.getShuntVoltage_mV(); + data.busVoltage_V= ina219.getBusVoltage_V(); + data.current_mA= ina219.getCurrent_mA(); + data.power_mW= ina219.getBusPower(); + data.loadVoltage_V = data.busVoltage_V + (data.shuntVoltage_mV/1000); + data.ina219_overflow=ina219.getOverflow(); + + return &data; + } + else + return 0; +} + +void Forte_INA219 :: print(out_data_ina219* data_ina219){ + Serial.println("******************************INA219********************Power-Consumption**********************************"); + if(data_ina219==0) + { + Serial.println("Waiting for data!"); + Serial.println(); + } + else{ + Serial.print("Shunt Voltage [mV]: "); Serial.println(data_ina219->shuntVoltage_mV); + Serial.print("Bus Voltage [V]: "); Serial.println(data_ina219->busVoltage_V); + Serial.print("Load Voltage [V]: "); Serial.println(data_ina219->loadVoltage_V); + Serial.print("Current[mA]: "); Serial.println(data_ina219->current_mA); + Serial.print("Bus Power [mW]: "); Serial.println(data_ina219->power_mW); + data_ina219->ina219_overflow== false ? Serial.println("Values OK - no overflow") : Serial.println("Overflow! Choose higher PGAIN"); + Serial.println(); + } + delay(1000); +} \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/ina219/ina219.hpp b/code-snippets/client/sensor_station_espnow/client/lib/ina219/ina219.hpp new file mode 100644 index 0000000000000000000000000000000000000000..e6c600c1a4bfb51fe0e3334d2ec84bf5c1e53d7d --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/ina219/ina219.hpp @@ -0,0 +1,33 @@ +#ifndef _INA219 +#define _INA219 + +#include <forte_sensor.hpp> +#include <pinout.hpp> +#include <INA219_WE.h> +#include <Wire.h> + +//TwoWire I2Cone = TwoWire(0); +//TwoWire I2Ctwo = TwoWire(1); + +struct out_data_ina219 { + float shuntVoltage_mV = 0.0; + float loadVoltage_V = 0.0; + float busVoltage_V = 0.0; + float current_mA = 0.0; + float power_mW = 0.0; + bool ina219_overflow = false; + }; + + +class Forte_INA219 : public Forte_Sensor{ + public: + void setup(); + out_data_ina219* read_data(); + void print(out_data_ina219*); + + private: + INA219_WE ina219; + out_data_ina219 data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/ina219/pinout.hpp b/code-snippets/client/sensor_station_espnow/client/lib/ina219/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..7c3d725bb7cfd202fdb1e762c0f47f539c91e2b1 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/ina219/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C Protocol (for digital communication between ESP and the Sensor) +#define I2C_SCL 7 +#define I2C_SDA 6 + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/scd30/forte_sensor.hpp b/code-snippets/client/sensor_station_espnow/client/lib/scd30/forte_sensor.hpp new file mode 100644 index 0000000000000000000000000000000000000000..8e030b9403653c40c5eecfca88edab96e805631d --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/scd30/forte_sensor.hpp @@ -0,0 +1,13 @@ +#ifndef _FORTE_SENSOR +#define _FORTE_SENSOR + +class Forte_Sensor { + public: + virtual void* read_data() = 0; + virtual void setup() = 0; + + private: + +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/scd30/pinout.hpp b/code-snippets/client/sensor_station_espnow/client/lib/scd30/pinout.hpp new file mode 100644 index 0000000000000000000000000000000000000000..b7ac5326271d1d1da68f3449942e87bd1c9013e0 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/scd30/pinout.hpp @@ -0,0 +1,8 @@ +#ifndef _FORTE_PINOUT +#define _FORTE_PINOUT + +// Pins for I2C Proctocol (for digital communication between ESP and the Sensor) +#define I2C_SCL 9 +#define I2C_SDA 8 + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/scd30/scd30.cpp b/code-snippets/client/sensor_station_espnow/client/lib/scd30/scd30.cpp new file mode 100644 index 0000000000000000000000000000000000000000..c7c2084754bfc94aef7b1ca25947ede9c4c03fc1 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/scd30/scd30.cpp @@ -0,0 +1,23 @@ +#include "scd30.hpp" + + +void Forte_SCD30 :: setup(){ + Wire.begin(I2C_SDA, I2C_SCL); + if(!airSensor.begin()){ + // Sensor init went wrong + return; + } +} + +out_data_scd30* Forte_SCD30 :: read_data(){ + if(airSensor.dataAvailable()) + { + data.C02= airSensor.getCO2(); + data.Temperature = airSensor.getTemperature(); + data.Humidity = airSensor.getHumidity(); + + return &data; + } + else + return 0; +} \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/lib/scd30/scd30.hpp b/code-snippets/client/sensor_station_espnow/client/lib/scd30/scd30.hpp new file mode 100644 index 0000000000000000000000000000000000000000..d630c0fa808fcdd7ad59dd13eac1e110c6346628 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/lib/scd30/scd30.hpp @@ -0,0 +1,27 @@ +#ifndef _SCD30 +#define _SCD30 + +#include <forte_sensor.hpp> +#include <Wire.h> +#include <pinout.hpp> +#include <SparkFun_SCD30_Arduino_Library.h> + +struct out_data_scd30 +{ + float C02; + float Temperature; + float Humidity; +}; + + +class Forte_SCD30 : public Forte_Sensor{ + public: + void setup(); + out_data_scd30* read_data(); + + private: + SCD30 airSensor; + out_data_scd30 data; +}; + +#endif \ No newline at end of file diff --git a/code-snippets/client/sensor_station_espnow/client/platformio.ini b/code-snippets/client/sensor_station_espnow/client/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..9a7648a1a211054676b28e069a1c3f43efe8abd0 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/platformio.ini @@ -0,0 +1,19 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +framework = arduino +lib_deps = sparkfun/SparkFun SCD30 Arduino Library@^1.0.18 + Wire + wollewald/INA219_WE@^1.3.1 + envirodiy/SDI-12@^2.1.4 + fbiego/ESP32Time@^1.1.0 diff --git a/code-snippets/client/sensor_station_espnow/client/src/main.cpp b/code-snippets/client/sensor_station_espnow/client/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..14ccd03962f20d4a7c04ee5fc0ed429da5892973 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/src/main.cpp @@ -0,0 +1,58 @@ +#include <Arduino.h> +#include <scd30.hpp> +#include <ina219.hpp> +#include <drs26.hpp> +#include "espnow.hpp" +#include "ram_caching.hpp" +#include <stdio.h> +#include <f_deep_sleep.h> + +Forte_SCD30 scd30; +Forte_INA219 ina219; +Forte_DRS26 drs26; + + +void setup() { + Serial.begin(9600); + Serial.println(); + Serial.println("Weak up from deep sleep"); + ina219.setup(); + drs26.setup(); + esp_err_t result = espnow_setup(); +} + + + +void loop() { + +//*****Data from the Sensor INA219 + out_data_ina219* data_ina219; + data_ina219 = ina219.read_data(); + ina219.print(data_ina219); + +//*****Data from the Sensor DRS26 + out_data_drs26* data_drs26; + data_drs26 = drs26.read_data(); + drs26.print(data_drs26); + + + //temperatur 0 + //cicumfence 1 + + //load voltage 2 + //crrent 3 + Message* new_data = new Message(); + new_data->add_data(data_drs26->temperatur, 0); + new_data->add_data(data_drs26->circumference, 1); + new_data->add_data(data_ina219->loadVoltage_V, 2); + new_data->add_data(data_ina219->current_mA,3); + new_data->send(); + delete new_data; + + + Serial.println("Going to sleep"); + deep_sleep(5); + + +} + diff --git a/code-snippets/client/sensor_station_espnow/client/test/README b/code-snippets/client/sensor_station_espnow/client/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/code-snippets/client/sensor_station_espnow/client/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/host/esp32-espnow-recv/.gitignore b/host/esp32-espnow-recv/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..3fe18ad4795165c312b8998befee223818bd4b33 --- /dev/null +++ b/host/esp32-espnow-recv/.gitignore @@ -0,0 +1,3 @@ +.pio +CMakeListsPrivate.txt +cmake-build-*/ diff --git a/host/esp32-espnow-recv/CMakeLists.txt b/host/esp32-espnow-recv/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec76a43a4021aedcf5a46645063150fe96de52d8 --- /dev/null +++ b/host/esp32-espnow-recv/CMakeLists.txt @@ -0,0 +1,33 @@ +# !!! WARNING !!! AUTO-GENERATED FILE, PLEASE DO NOT MODIFY IT AND USE +# https://docs.platformio.org/page/projectconf/section_env_build.html#build-flags +# +# If you need to override existing CMake configuration or add extra, +# please create `CMakeListsUser.txt` in the root of project. +# The `CMakeListsUser.txt` will not be overwritten by PlatformIO. + +cmake_minimum_required(VERSION 3.13) +set(CMAKE_SYSTEM_NAME Generic) +set(CMAKE_C_COMPILER_WORKS 1) +set(CMAKE_CXX_COMPILER_WORKS 1) + +project("esp32" C CXX) + +include(CMakeListsPrivate.txt) + +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/CMakeListsUser.txt) +include(CMakeListsUser.txt) +endif() + +add_custom_target( + Production ALL + COMMAND platformio -c clion run "$<$<NOT:$<CONFIG:All>>:-e${CMAKE_BUILD_TYPE}>" + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} +) + +add_custom_target( + Debug ALL + COMMAND platformio -c clion debug "$<$<NOT:$<CONFIG:All>>:-e${CMAKE_BUILD_TYPE}>" + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} +) + +add_executable(Z_DUMMY_TARGET ${SRC_LIST}) diff --git a/host/esp32-espnow-recv/include/README b/host/esp32-espnow-recv/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/host/esp32-espnow-recv/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/host/esp32-espnow-recv/platformio.ini b/host/esp32-espnow-recv/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..73a15dd46f3a4a79306f6bb21fa95aa1eda91597 --- /dev/null +++ b/host/esp32-espnow-recv/platformio.ini @@ -0,0 +1,23 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +monitor_speed = 115200 +framework = arduino +monitor_port = /dev/ttyUSB1 +upload_port = /dev/ttyUSB1 +build_flags = + -I include + -DCORE_DEBUG_LEVEL=5 + -std=gnu++17 +build_unflags = -std=gnu++11 +lib_deps = plerup/EspSoftwareSerial@^6.16.1 \ No newline at end of file diff --git a/host/esp32-espnow-recv/src/main.cpp b/host/esp32-espnow-recv/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..62893ed9eccd49d909034cbaa51324aa70131525 --- /dev/null +++ b/host/esp32-espnow-recv/src/main.cpp @@ -0,0 +1,54 @@ +#include "FS.h" +#include "SD.h" +#include "SPI.h" +#include <Arduino.h> +#include <WiFi.h> +#include <esp_now.h> +#include <sys/unistd.h> + +#define RXD2 18 +#define TXD2 19 + +//SoftwareSerial mySerial(RXD2, TXD2); + +void on_data_sent(const uint8_t *mac_addr, esp_now_send_status_t status) +{ + // go to sleep +} + +void on_data_recv(const uint8_t *mac, const uint8_t *incomingData, int len) +{ + // print mac + Serial.println("Message recieved"); + for (int i = 0; i < 6; i++) { + Serial.print(mac[i], HEX); + Serial.print(":"); + } + Serial.println(); + + char data[len]; + memcpy(data, incomingData, len); + Serial.println(data); + Serial1.write(data); +} + +void setup() +{ + Serial.begin(115200); + Serial1.begin(115200, SERIAL_8N1, RXD2, TXD2); + + WiFi.mode(WIFI_STA); + Serial.println("ESPNow init"); + if (esp_now_init() != ESP_OK) { + // initialization failed + Serial.println("ESPNow init failed"); + return; // not sure about this + } + Serial.println("ESPNow init success"); + + esp_now_register_recv_cb(on_data_recv); + // write your initialization code here +} + +void loop() { +} \ No newline at end of file diff --git a/host/esp32-espnow-recv/src/main2.cpp b/host/esp32-espnow-recv/src/main2.cpp new file mode 100644 index 0000000000000000000000000000000000000000..17684dc58c8a30e9e3634b579519c31d3bc2d3d3 --- /dev/null +++ b/host/esp32-espnow-recv/src/main2.cpp @@ -0,0 +1,229 @@ +#include "FS.h" +#include "SD.h" +#include "SPI.h" +#include <Arduino.h> +#include <sys/unistd.h> + +#define RXD2 18 +#define TXD2 19 + +#define SCK 6 +#define MISO 10 +#define MOSI 7 +#define CS 5 + +/* + Rui Santos + Complete project details at https://RandomNerdTutorials.com/esp32-microsd-card-arduino/ + + This sketch can be found at: Examples > SD(esp32) > SD_Test +*/ + +void listDir(fs::FS &fs, const char *dirname, uint8_t levels) +{ + Serial.printf("Listing directory: %s\n", dirname); + + File root = fs.open(dirname); + if (!root) { + Serial.println("Failed to open directory"); + return; + } + if (!root.isDirectory()) { + Serial.println("Not a directory"); + return; + } + + File file = root.openNextFile(); + while (file) { + if (file.isDirectory()) { + Serial.print(" DIR : "); + Serial.println(file.name()); + if (levels) { + listDir(fs, file.name(), levels - 1); + } + } else { + Serial.print(" FILE: "); + Serial.print(file.name()); + Serial.print(" SIZE: "); + Serial.println(file.size()); + } + file = root.openNextFile(); + } +} + +void createDir(fs::FS &fs, const char *path) +{ + Serial.printf("Creating Dir: %s\n", path); + if (fs.mkdir(path)) { + Serial.println("Dir created"); + } else { + Serial.println("mkdir failed"); + } +} + +void removeDir(fs::FS &fs, const char *path) +{ + Serial.printf("Removing Dir: %s\n", path); + if (fs.rmdir(path)) { + Serial.println("Dir removed"); + } else { + Serial.println("rmdir failed"); + } +} + +void readFile(fs::FS &fs, const char *path) +{ + Serial.printf("Reading file: %s\n", path); + + File file = fs.open(path); + if (!file) { + Serial.println("Failed to open file for reading"); + return; + } + + Serial.print("Read from file: "); + while (file.available()) { + Serial.write(file.read()); + } + file.close(); +} + +void writeFile(fs::FS &fs, const char *path, const char *message) +{ + Serial.printf("Writing file: %s\n", path); + + File file = fs.open(path, FILE_WRITE); + if (!file) { + Serial.println("Failed to open file for writing"); + return; + } + if (file.print(message)) { + Serial.println("File written"); + } else { + Serial.println("Write failed"); + } + file.close(); +} + +void appendFile(fs::FS &fs, const char *path, const char *message) +{ + Serial.printf("Appending to file: %s\n", path); + + File file = fs.open(path, FILE_APPEND); + if (!file) { + Serial.println("Failed to open file for appending"); + return; + } + if (file.print(message)) { + Serial.println("Message appended"); + } else { + Serial.println("Append failed"); + } + file.close(); +} + +void renameFile(fs::FS &fs, const char *path1, const char *path2) +{ + Serial.printf("Renaming file %s to %s\n", path1, path2); + if (fs.rename(path1, path2)) { + Serial.println("File renamed"); + } else { + Serial.println("Rename failed"); + } +} + +void deleteFile(fs::FS &fs, const char *path) +{ + Serial.printf("Deleting file: %s\n", path); + if (fs.remove(path)) { + Serial.println("File deleted"); + } else { + Serial.println("Delete failed"); + } +} + +void testFileIO(fs::FS &fs, const char *path) +{ + File file = fs.open(path); + static uint8_t buf[512]; + size_t len = 0; + uint32_t start = millis(); + uint32_t end = start; + if (file) { + len = file.size(); + size_t flen = len; + start = millis(); + while (len) { + size_t toRead = len; + if (toRead > 512) { + toRead = 512; + } + file.read(buf, toRead); + len -= toRead; + } + end = millis() - start; + Serial.printf("%u bytes read for %u ms\n", flen, end); + file.close(); + } else { + Serial.println("Failed to open file for reading"); + } + + file = fs.open(path, FILE_WRITE); + if (!file) { + Serial.println("Failed to open file for writing"); + return; + } + + size_t i; + start = millis(); + for (i = 0; i < 2048; i++) { + file.write(buf, 512); + } + end = millis() - start; + Serial.printf("%u bytes written for %u ms\n", 2048 * 512, end); + file.close(); +} + +void setup_2() +{ + Serial.begin(115200); + Serial1.begin(115200, SERIAL_8N1, RX, TX); + Serial.println("Initializing SD card..."); + SPI.begin(SCK, MISO, MOSI, -1); + + if (!SD.begin(CS, SPI, 2000000)) { + Serial.println("Card Mount Failed"); + return; + } + uint8_t cardType = SD.cardType(); + + if (cardType == CARD_NONE) { + Serial.println("No SD card attached"); + return; + } + + Serial.print("SD Card Type: "); + if (cardType == CARD_MMC) { + Serial.println("MMC"); + } else if (cardType == CARD_SD) { + Serial.println("SDSC"); + } else if (cardType == CARD_SDHC) { + Serial.println("SDHC"); + } else { + Serial.println("UNKNOWN"); + } + + uint64_t cardSize = SD.cardSize() / (1024 * 1024); + Serial.printf("SD Card Size: %lluMB\n", cardSize); + + listDir(SD, "/", 0); + Serial.printf("Total space: %lluMB\n", SD.totalBytes() / (1024 * 1024)); + Serial.printf("Used space: %lluMB\n", SD.usedBytes() / (1024 * 1024)); +} + +void loop_2() +{ + if (Serial1.available()) { + Serial.println(Serial1.readString()); + } +} diff --git a/host/esp32-espnow-recv/test/README b/host/esp32-espnow-recv/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/host/esp32-espnow-recv/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/host/esp32-serial-recv/.gitignore b/host/esp32-serial-recv/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..3fe18ad4795165c312b8998befee223818bd4b33 --- /dev/null +++ b/host/esp32-serial-recv/.gitignore @@ -0,0 +1,3 @@ +.pio +CMakeListsPrivate.txt +cmake-build-*/ diff --git a/host/esp32-serial-recv/CMakeLists.txt b/host/esp32-serial-recv/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..ec76a43a4021aedcf5a46645063150fe96de52d8 --- /dev/null +++ b/host/esp32-serial-recv/CMakeLists.txt @@ -0,0 +1,33 @@ +# !!! WARNING !!! AUTO-GENERATED FILE, PLEASE DO NOT MODIFY IT AND USE +# https://docs.platformio.org/page/projectconf/section_env_build.html#build-flags +# +# If you need to override existing CMake configuration or add extra, +# please create `CMakeListsUser.txt` in the root of project. +# The `CMakeListsUser.txt` will not be overwritten by PlatformIO. + +cmake_minimum_required(VERSION 3.13) +set(CMAKE_SYSTEM_NAME Generic) +set(CMAKE_C_COMPILER_WORKS 1) +set(CMAKE_CXX_COMPILER_WORKS 1) + +project("esp32" C CXX) + +include(CMakeListsPrivate.txt) + +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/CMakeListsUser.txt) +include(CMakeListsUser.txt) +endif() + +add_custom_target( + Production ALL + COMMAND platformio -c clion run "$<$<NOT:$<CONFIG:All>>:-e${CMAKE_BUILD_TYPE}>" + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} +) + +add_custom_target( + Debug ALL + COMMAND platformio -c clion debug "$<$<NOT:$<CONFIG:All>>:-e${CMAKE_BUILD_TYPE}>" + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} +) + +add_executable(Z_DUMMY_TARGET ${SRC_LIST}) diff --git a/host/esp32-serial-recv/include/README b/host/esp32-serial-recv/include/README new file mode 100644 index 0000000000000000000000000000000000000000..194dcd43252dcbeb2044ee38510415041a0e7b47 --- /dev/null +++ b/host/esp32-serial-recv/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/host/esp32-serial-recv/platformio.ini b/host/esp32-serial-recv/platformio.ini new file mode 100644 index 0000000000000000000000000000000000000000..6fce3d0006642f1ce346fc75e75b3b74ad999ea7 --- /dev/null +++ b/host/esp32-serial-recv/platformio.ini @@ -0,0 +1,23 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:esp32-c3-devkitm-1] +platform = espressif32 +board = esp32-c3-devkitm-1 +monitor_speed = 115200 +framework = arduino +monitor_port = /dev/ttyUSB0 +upload_port = /dev/ttyUSB0 +build_flags = + -I include + -DCORE_DEBUG_LEVEL=5 + -std=gnu++17 +build_unflags = -std=gnu++11 +lib_deps = plerup/EspSoftwareSerial@^6.16.1 diff --git a/host/esp32-serial-recv/src/main.cpp b/host/esp32-serial-recv/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..511a10e2246580398311eaa9bfcbfd266e4c0120 --- /dev/null +++ b/host/esp32-serial-recv/src/main.cpp @@ -0,0 +1,236 @@ +#include "FS.h" +#include "SD.h" +#include "SPI.h" +#include <Arduino.h> +#include <sys/unistd.h> + +#define RXD2 18 +#define TXD2 19 + +#define SCK 6 +#define MISO 10 +#define MOSI 7 +#define CS 5 + +/* + Rui Santos + Complete project details at https://RandomNerdTutorials.com/esp32-microsd-card-arduino/ + + This sketch can be found at: Examples > SD(esp32) > SD_Test +*/ + +void listDir(fs::FS &fs, const char *dirname, uint8_t levels) +{ + Serial.printf("Listing directory: %s\n", dirname); + + File root = fs.open(dirname); + if (!root) { + Serial.println("Failed to open directory"); + return; + } + if (!root.isDirectory()) { + Serial.println("Not a directory"); + return; + } + + File file = root.openNextFile(); + while (file) { + if (file.isDirectory()) { + Serial.print(" DIR : "); + Serial.println(file.name()); + if (levels) { + listDir(fs, file.name(), levels - 1); + } + } else { + Serial.print(" FILE: "); + Serial.print(file.name()); + Serial.print(" SIZE: "); + Serial.println(file.size()); + } + file = root.openNextFile(); + } +} + +void createDir(fs::FS &fs, const char *path) +{ + Serial.printf("Creating Dir: %s\n", path); + if (fs.mkdir(path)) { + Serial.println("Dir created"); + } else { + Serial.println("mkdir failed"); + } +} + +void removeDir(fs::FS &fs, const char *path) +{ + Serial.printf("Removing Dir: %s\n", path); + if (fs.rmdir(path)) { + Serial.println("Dir removed"); + } else { + Serial.println("rmdir failed"); + } +} + +void readFile(fs::FS &fs, const char *path) +{ + Serial.printf("Reading file: %s\n", path); + + File file = fs.open(path); + if (!file) { + Serial.println("Failed to open file for reading"); + return; + } + + Serial.print("Read from file: "); + while (file.available()) { + Serial.write(file.read()); + } + file.close(); +} + +void writeFile(fs::FS &fs, const char *path, const char *message) +{ + Serial.printf("Writing file: %s\n", path); + + File file = fs.open(path, FILE_WRITE); + if (!file) { + Serial.println("Failed to open file for writing"); + return; + } + if (file.print(message)) { + Serial.println("File written"); + } else { + Serial.println("Write failed"); + } + file.close(); +} + +void appendFile(fs::FS &fs, const char *path, const char *message) +{ + Serial.printf("Appending to file: %s\n", path); + + File file = fs.open(path, FILE_APPEND); + if (!file) { + Serial.println("Failed to open file for appending"); + return; + } + if (file.print(message)) { + Serial.println("Message appended"); + } else { + Serial.println("Append failed"); + } + file.close(); +} + +void renameFile(fs::FS &fs, const char *path1, const char *path2) +{ + Serial.printf("Renaming file %s to %s\n", path1, path2); + if (fs.rename(path1, path2)) { + Serial.println("File renamed"); + } else { + Serial.println("Rename failed"); + } +} + +void deleteFile(fs::FS &fs, const char *path) +{ + Serial.printf("Deleting file: %s\n", path); + if (fs.remove(path)) { + Serial.println("File deleted"); + } else { + Serial.println("Delete failed"); + } +} + +void testFileIO(fs::FS &fs, const char *path) +{ + File file = fs.open(path); + static uint8_t buf[512]; + size_t len = 0; + uint32_t start = millis(); + uint32_t end = start; + if (file) { + len = file.size(); + size_t flen = len; + start = millis(); + while (len) { + size_t toRead = len; + if (toRead > 512) { + toRead = 512; + } + file.read(buf, toRead); + len -= toRead; + } + end = millis() - start; + Serial.printf("%u bytes read for %u ms\n", flen, end); + file.close(); + } else { + Serial.println("Failed to open file for reading"); + } + + file = fs.open(path, FILE_WRITE); + if (!file) { + Serial.println("Failed to open file for writing"); + return; + } + + size_t i; + start = millis(); + for (i = 0; i < 2048; i++) { + file.write(buf, 512); + } + end = millis() - start; + Serial.printf("%u bytes written for %u ms\n", 2048 * 512, end); + file.close(); +} + +void setup() +{ + Serial.begin(115200); + // If this (Serial1) is not available, use https://github.com/plerup/espsoftwareserial + Serial1.begin(115200, SERIAL_8N1, RXD2, TXD2); + Serial.println("Initializing SD card..."); + SPI.begin(SCK, MISO, MOSI, -1); + + if (!SD.begin(CS, SPI, 2000000)) { + Serial.println("Card Mount Failed"); + return; + } + uint8_t cardType = SD.cardType(); + + if (cardType == CARD_NONE) { + Serial.println("No SD card attached"); + return; + } + + Serial.print("SD Card Type: "); + if (cardType == CARD_MMC) { + Serial.println("MMC"); + } else if (cardType == CARD_SD) { + Serial.println("SDSC"); + } else if (cardType == CARD_SDHC) { + Serial.println("SDHC"); + } else { + Serial.println("UNKNOWN"); + } + + uint64_t cardSize = SD.cardSize() / (1024 * 1024); + Serial.printf("SD Card Size: %lluMB\n", cardSize); + + listDir(SD, "/", 0); + Serial.printf("Total space: %lluMB\n", SD.totalBytes() / (1024 * 1024)); + Serial.printf("Used space: %lluMB\n", SD.usedBytes() / (1024 * 1024)); + + createDir(SD, "/test"); + writeFile(SD, "/test/log.txt", ""); +} + +void loop() +{ + if (Serial1.available()) { + Serial.println("Received"); + auto data = Serial1.readString(); + Serial.println(data); + appendFile(SD, "/test/log.txt", data.c_str()); + } +} diff --git a/host/esp32-serial-recv/test/README b/host/esp32-serial-recv/test/README new file mode 100644 index 0000000000000000000000000000000000000000..9b1e87bc67c90e7f09a92a3e855444b085c655a6 --- /dev/null +++ b/host/esp32-serial-recv/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Test Runner and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/en/latest/advanced/unit-testing/index.html diff --git a/host/esp32/.vscode/c_cpp_properties.json b/host/esp32/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000000000000000000000000000000000..b7ff8be96aaa7a1d7ea38e81f7c1048e94a94f05 --- /dev/null +++ b/host/esp32/.vscode/c_cpp_properties.json @@ -0,0 +1,459 @@ +// +// !!! WARNING !!! AUTO-GENERATED FILE! +// PLEASE DO NOT MODIFY IT AND USE "platformio.ini": +// https://docs.platformio.org/page/projectconf/section_env_build.html#build-flags +// +{ + "configurations": [ + { + "name": "PlatformIO", + "includePath": [ + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/include", + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/src", + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/lib/espnow/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WiFi/src", + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/.pio/libdeps/esp32-c3-devkitm-1/ESP32Time", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/newlib/platform_include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/include/esp_additions/freertos", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/port/riscv/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/include/esp_additions", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/include/soc", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/include/soc/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/port/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/port/esp32c3/private_include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/heap/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/log/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/include/apps", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/include/apps/sntp", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/lwip/src/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/port/esp32/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/port/esp32/include/arch", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/soc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/soc/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/soc/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/hal/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/hal/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/hal/platform_port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rom/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rom/include/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rom/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/port/soc", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/port/include/riscv", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/port/public_compat", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/riscv/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/driver/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/driver/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_pm/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_ringbuf/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/efuse/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/efuse/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/vfs/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_wifi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_event/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_netif/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_eth/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/tcpip_adapter/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_phy/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_phy/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_ipc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/app_trace/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_timer/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mbedtls/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mbedtls/mbedtls/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mbedtls/esp_crt_bundle/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/app_update/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/spi_flash/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bootloader_support/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/nvs_flash/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/pthread/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_gdbstub/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_gdbstub/riscv", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_gdbstub/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/espcoredump/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/espcoredump/include/port/riscv", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wpa_supplicant/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wpa_supplicant/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wpa_supplicant/esp_supplicant/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/ieee802154/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/console", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/asio/asio/asio/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/asio/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/osi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/include/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/api/include/api", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/btc/profile/esp/blufi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/btc/profile/esp/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/host/bluedroid/api/include/api", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/cbor/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/unity/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/unity/unity/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/cmock/CMock/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/coap/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/coap/libcoap/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/nghttp/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/nghttp/nghttp2/lib/includes", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-tls", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-tls/esp-tls-crypto", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_adc_cal/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hid/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/tcp_transport/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_http_client/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_http_server/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_https_ota/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_https_server/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_lcd/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_lcd/interface", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protobuf-c/protobuf-c", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protocomm/include/common", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protocomm/include/security", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protocomm/include/transports", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mdns/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_local_ctrl/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/sdmmc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_serial_slave_link/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_websocket_client/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/expat/expat/expat/lib", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/expat/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wear_levelling/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fatfs/diskio", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fatfs/vfs", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fatfs/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freemodbus/common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/idf_test/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/idf_test/include/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/jsmn/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json/cJSON", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/libsodium/libsodium/src/libsodium/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/libsodium/port_include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mqtt/esp-mqtt/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/openssl/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/spiffs/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wifi_provisioning/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/button/button/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/rmaker_common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json_parser/upstream/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json_parser/upstream", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json_generator/upstream", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_schedule/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rainmaker/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/qrcode/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/ws2812_led", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/dotprod/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/support/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/hann/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/blackman/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/blackman_harris/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/blackman_nuttall/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/nuttall/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/flat_top/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/iir/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/fir/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/add/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/sub/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/mul/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/addc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/mulc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/sqrt/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/matrix/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/fft/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/dct/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/conv/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/kalman/ekf/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/kalman/ekf_imu13states/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_littlefs/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_littlefs/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/tool", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/typedef", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/image", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/math", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/nn", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/layer", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/detect", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/model_zoo", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fb_gfx/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/qspi_qspi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/cores/esp32", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/variants/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/ArduinoOTA/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/AsyncUDP/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/BLE/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/BluetoothSerial/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/DNSServer/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/EEPROM/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/ESP32/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/ESPmDNS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Ethernet/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/FFat/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/FS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/HTTPClient/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/HTTPUpdate/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/HTTPUpdateServer/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/I2S/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/LittleFS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/NetBIOS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Preferences/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/RainMaker/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SD/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SD_MMC/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SPI/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SPIFFS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SimpleBLE/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Ticker/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/USB/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Update/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WebServer/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WiFiClientSecure/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WiFiProv/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Wire/src", + "" + ], + "browse": { + "limitSymbolsToIncludedHeaders": true, + "path": [ + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/include", + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/src", + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/lib/espnow/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WiFi/src", + "/home/moritz/Documents/TEAM/sensor-system/host/esp32/.pio/libdeps/esp32-c3-devkitm-1/ESP32Time", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/newlib/platform_include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/include/esp_additions/freertos", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/port/riscv/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freertos/include/esp_additions", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/include/soc", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/include/soc/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/port/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hw_support/port/esp32c3/private_include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/heap/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/log/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/include/apps", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/include/apps/sntp", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/lwip/src/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/port/esp32/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/lwip/port/esp32/include/arch", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/soc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/soc/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/soc/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/hal/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/hal/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/hal/platform_port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rom/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rom/include/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rom/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/port/soc", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/port/include/riscv", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_system/port/public_compat", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/riscv/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/driver/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/driver/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_pm/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_ringbuf/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/efuse/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/efuse/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/vfs/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_wifi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_event/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_netif/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_eth/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/tcpip_adapter/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_phy/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_phy/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_ipc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/app_trace/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_timer/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mbedtls/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mbedtls/mbedtls/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mbedtls/esp_crt_bundle/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/app_update/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/spi_flash/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bootloader_support/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/nvs_flash/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/pthread/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_gdbstub/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_gdbstub/riscv", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_gdbstub/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/espcoredump/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/espcoredump/include/port/riscv", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wpa_supplicant/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wpa_supplicant/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wpa_supplicant/esp_supplicant/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/ieee802154/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/console", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/asio/asio/asio/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/asio/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/osi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/include/esp32c3/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/api/include/api", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/btc/profile/esp/blufi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/common/btc/profile/esp/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/bt/host/bluedroid/api/include/api", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/cbor/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/unity/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/unity/unity/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/cmock/CMock/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/coap/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/coap/libcoap/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/nghttp/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/nghttp/nghttp2/lib/includes", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-tls", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-tls/esp-tls-crypto", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_adc_cal/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_hid/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/tcp_transport/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_http_client/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_http_server/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_https_ota/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_https_server/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_lcd/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_lcd/interface", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protobuf-c/protobuf-c", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protocomm/include/common", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protocomm/include/security", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/protocomm/include/transports", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mdns/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_local_ctrl/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/sdmmc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_serial_slave_link/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_websocket_client/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/expat/expat/expat/lib", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/expat/port/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wear_levelling/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fatfs/diskio", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fatfs/vfs", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fatfs/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/freemodbus/common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/idf_test/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/idf_test/include/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/jsmn/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json/cJSON", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/libsodium/libsodium/src/libsodium/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/libsodium/port_include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/mqtt/esp-mqtt/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/openssl/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/spiffs/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/wifi_provisioning/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/button/button/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/rmaker_common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json_parser/upstream/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json_parser/upstream", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/json_generator/upstream", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_schedule/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_rainmaker/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/qrcode/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/ws2812_led", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/dotprod/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/support/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/hann/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/blackman/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/blackman_harris/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/blackman_nuttall/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/nuttall/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/windows/flat_top/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/iir/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/fir/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/add/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/sub/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/mul/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/addc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/mulc/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/math/sqrt/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/matrix/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/fft/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/dct/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/conv/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/common/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/kalman/ekf/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dsp/modules/kalman/ekf_imu13states/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_littlefs/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp_littlefs/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/tool", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/typedef", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/image", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/math", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/nn", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/layer", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/detect", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/esp-dl/include/model_zoo", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/include/fb_gfx/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/tools/sdk/esp32c3/qspi_qspi/include", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/cores/esp32", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/variants/esp32c3", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/ArduinoOTA/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/AsyncUDP/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/BLE/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/BluetoothSerial/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/DNSServer/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/EEPROM/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/ESP32/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/ESPmDNS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Ethernet/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/FFat/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/FS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/HTTPClient/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/HTTPUpdate/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/HTTPUpdateServer/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/I2S/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/LittleFS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/NetBIOS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Preferences/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/RainMaker/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SD/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SD_MMC/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SPI/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SPIFFS/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/SimpleBLE/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Ticker/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/USB/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Update/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WebServer/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WiFiClientSecure/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/WiFiProv/src", + "/home/moritz/.platformio/packages/framework-arduinoespressif32/libraries/Wire/src", + "" + ] + }, + "defines": [ + "PLATFORMIO=60103", + "ARDUINO_ESP32C3_DEV", + "HAVE_CONFIG_H", + "MBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\"", + "UNITY_INCLUDE_CONFIG_H", + "WITH_POSIX", + "_GNU_SOURCE", + "IDF_VER=\"v4.4.1-1-gb8050b365e\"", + "ESP_PLATFORM", + "_POSIX_READER_WRITER_LOCKS", + "ARDUINO_ARCH_ESP32", + "ESP32", + "F_CPU=160000000L", + "ARDUINO=10812", + "ARDUINO_VARIANT=\"esp32c3\"", + "ARDUINO_BOARD=\"Espressif ESP32-C3-DevKitM-1\"", + "ARDUINO_PARTITION_default", + "" + ], + "cStandard": "c99", + "cppStandard": "c++11", + "compilerPath": "/home/moritz/.platformio/packages/toolchain-riscv32-esp/bin/riscv32-esp-elf-gcc", + "compilerArgs": [ + "-march=rv32imc", + "" + ] + } + ], + "version": 4 +} diff --git a/host/esp32/.vscode/launch.json b/host/esp32/.vscode/launch.json new file mode 100644 index 0000000000000000000000000000000000000000..98fe2061cdb4d3d96d5e78f2ebba9805f24aa068 --- /dev/null +++ b/host/esp32/.vscode/launch.json @@ -0,0 +1,44 @@ +// AUTOMATICALLY GENERATED FILE. PLEASE DO NOT MODIFY IT MANUALLY +// +// PIO Unified Debugger +// +// Documentation: https://docs.platformio.org/page/plus/debugging.html +// Configuration: https://docs.platformio.org/page/projectconf/section_env_debug.html + +{ + "version": "0.2.0", + "configurations": [ + { + "type": "platformio-debug", + "request": "launch", + "name": "PIO Debug", + "executable": "/home/moritz/Documents/TEAM/sensor-system/host/esp32/.pio/build/esp32-c3-devkitm-1/firmware.elf", + "projectEnvName": "esp32-c3-devkitm-1", + "toolchainBinDir": "/home/moritz/.platformio/packages/toolchain-riscv32-esp/bin", + "internalConsoleOptions": "openOnSessionStart", + "preLaunchTask": { + "type": "PlatformIO", + "task": "Pre-Debug" + } + }, + { + "type": "platformio-debug", + "request": "launch", + "name": "PIO Debug (skip Pre-Debug)", + "executable": "/home/moritz/Documents/TEAM/sensor-system/host/esp32/.pio/build/esp32-c3-devkitm-1/firmware.elf", + "projectEnvName": "esp32-c3-devkitm-1", + "toolchainBinDir": "/home/moritz/.platformio/packages/toolchain-riscv32-esp/bin", + "internalConsoleOptions": "openOnSessionStart" + }, + { + "type": "platformio-debug", + "request": "launch", + "name": "PIO Debug (without uploading)", + "executable": "/home/moritz/Documents/TEAM/sensor-system/host/esp32/.pio/build/esp32-c3-devkitm-1/firmware.elf", + "projectEnvName": "esp32-c3-devkitm-1", + "toolchainBinDir": "/home/moritz/.platformio/packages/toolchain-riscv32-esp/bin", + "internalConsoleOptions": "openOnSessionStart", + "loadMode": "manual" + } + ] +} diff --git a/host/fipy/main.py b/host/fipy/main.py index 020d027e0345c701725c418eade7e55179d05551..9e65d65ab025701fe5dd71b5f2f25b2a839d741b 100644 --- a/host/fipy/main.py +++ b/host/fipy/main.py @@ -1,19 +1,58 @@ # main.py -- put your code here! -# from network import ESPNOW +from network import WLAN +from network import ESPNOW +import binascii +import struct from time import sleep from lib.server_transfer import DataTransferWiFi -from lib.espnow import Forte_ESPNOW from lib.rtc_time import RTCTime -# data = DataTransferWiFi() -# data.connect("Z", "AbsoluteSandwich") -# data.send( -# "airSensors,sensor_id=TLM0201 temperature=73.97038159354763,humidity=35.23103248356096,co=0.4844531056779361 1661175680\nairSensors,sensor_id=TLM0202 temperature=75.30007505999716,humidity=35.65192991869171,co=0.5141876544505826 1661175680\nairSensors,sensor_id=TLM0202 temperature=75.30007505999756,humidity=35.65192991869171,co=0.5141876544505826 1661175680" -# ) + +def bytes_to_data(msg): + # turn bytes from message into 22-tuple of integers(identifiers), floats(values), integer(amount) and long(timestamp) + data = struct.unpack("<10i10fil", bytes(msg)) + amountData = data[20] + timestamp = data[21] + identifiers = data[0:amountData] + values = data[10 : (10 + amountData)] + return { + "amountData": amountData, + "timestamp": timestamp, + "data": dict(zip(identifiers, values)), + } + + +def espnow_recv(result): + mac, peer, msg = result + + data = bytes_to_data(msg) + try: + print(data["amountData"]) + print(data["timestamp"]) + print(data["data"]) + print(str(binascii.hexlify(mac), "ascii")) + + except Exception as error: + print(error) + + +data = DataTransferWiFi() +data.connect("Z", "AbsoluteSandwich") +data.send( + "airSensors,sensor_id=TLM0201 temperature=73.97038159354763,humidity=35.23103248356096,co=0.4844531056779361 1661175680\nairSensors,sensor_id=TLM0202 temperature=75.30007505999716,humidity=35.65192991869171,co=0.5141876544505826 1661175680\nairSensors,sensor_id=TLM0202 temperature=75.30007505999756,humidity=35.65192991869171,co=0.5141876544505826 1661175680" +) # data.disconnect() -# + rtc_time = RTCTime((2014, 5, 1, 4, 13, 0, 0, 0)) -espnow = Forte_ESPNOW() +# w = WLAN() + +# ESPNOW.init() +# p = ESPNOW.add_peer("58cf79043c84") + +# ESPNOW.on_recv(espnow_recv) + while True: + print("...") sleep(5) + print(rtc_time.get_time()) pass