From 9da2777bdfd6b7c022d8ecdfaf63b1191783d01a Mon Sep 17 00:00:00 2001 From: chodak166 Date: Mon, 18 Apr 2022 19:23:01 +0200 Subject: [PATCH] Migrated storage, wifi, system settings components from esp-trigger; added kicad files --- .gitignore | 1 + CMakeLists.txt | 6 + LICENSE | 11 +- README.md | 12 +- components/firmware/CMakeLists.txt | 15 + components/firmware/component.mk | 10 + .../firmware/include/nx/firmware/Buttons.h | 20 + .../include/nx/firmware/MqTriggerHttpServer.h | 23 + .../firmware/include/nx/firmware/Storage.h | 13 + .../firmware/include/nx/firmware/Wifi.h | 35 + components/firmware/src/Buttons.c | 142 + components/firmware/src/HttpHelpers.c | 49 + components/firmware/src/HttpHelpers.h | 29 + components/firmware/src/MqTriggerHttpServer.c | 80 + components/firmware/src/Storage.c | 87 + components/firmware/src/Wifi.c | 332 + components/software/CMakeLists.txt | 11 + components/software/component.mk | 10 + .../include/nx/software/nxSystemSettings.h | 40 + .../include/nx/software/nxSystemSettingsApi.h | 22 + components/software/src/nxSystemSettings.c | 114 + components/software/src/nxSystemSettingsApi.c | 127 + kicad/Regulator_Switching.dcm | 6351 +++++++++++++++++ kicad/ap1509.dcm | 27 + kicad/ap1509.lib | 28 + kicad/mqtrigger.kicad_pcb | 3550 +++++++++ kicad/mqtrigger.pro | 252 + kicad/mqtrigger.sch | 1018 +++ main/CMakeLists.txt | 8 + main/Kconfig.projbuild | 14 + main/index.html | 14 + main/main.c | 48 + sdkconfig | 1168 +++ 33 files changed, 13658 insertions(+), 9 deletions(-) create mode 100644 CMakeLists.txt create mode 100644 components/firmware/CMakeLists.txt create mode 100644 components/firmware/component.mk create mode 100644 components/firmware/include/nx/firmware/Buttons.h create mode 100644 components/firmware/include/nx/firmware/MqTriggerHttpServer.h create mode 100644 components/firmware/include/nx/firmware/Storage.h create mode 100644 components/firmware/include/nx/firmware/Wifi.h create mode 100644 components/firmware/src/Buttons.c create mode 100644 components/firmware/src/HttpHelpers.c create mode 100644 components/firmware/src/HttpHelpers.h create mode 100644 components/firmware/src/MqTriggerHttpServer.c create mode 100644 components/firmware/src/Storage.c create mode 100644 components/firmware/src/Wifi.c create mode 100644 components/software/CMakeLists.txt create mode 100644 components/software/component.mk create mode 100644 components/software/include/nx/software/nxSystemSettings.h create mode 100644 components/software/include/nx/software/nxSystemSettingsApi.h create mode 100644 components/software/src/nxSystemSettings.c create mode 100644 components/software/src/nxSystemSettingsApi.c create mode 100644 kicad/Regulator_Switching.dcm create mode 100644 kicad/ap1509.dcm create mode 100644 kicad/ap1509.lib create mode 100644 kicad/mqtrigger.kicad_pcb create mode 100644 kicad/mqtrigger.pro create mode 100644 kicad/mqtrigger.sch create mode 100644 main/CMakeLists.txt create mode 100644 main/Kconfig.projbuild create mode 100644 main/index.html create mode 100644 main/main.c create mode 100644 sdkconfig diff --git a/.gitignore b/.gitignore index 67d0f58..a42a9c5 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,4 @@ local.properties .settings +/build/ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..4af8fbd --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +# The following lines of boilerplate have to be in your project's +# CMakeLists in this exact order for cmake to work correctly +cmake_minimum_required(VERSION 3.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(mqtrigger) diff --git a/LICENSE b/LICENSE index 472ac23..17fb21c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,5 @@ -MIT License -Copyright (c) +Code in this repository is in the Public Domain (or CC0 licensed, at your option.) -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +Unless required by applicable law or agreed to in writing, this +software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied. diff --git a/README.md b/README.md index b6d87e8..27ddf0d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ -# mqtrigger +ESP-IDF template app +==================== -Remote GPIO trigger \ No newline at end of file +This is a template application to be used with [Espressif IoT Development Framework](https://github.com/espressif/esp-idf). + +Please check [ESP-IDF docs](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for getting started instructions. + +*Code in this repository is in the Public Domain (or CC0 licensed, at your option.) +Unless required by applicable law or agreed to in writing, this +software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR +CONDITIONS OF ANY KIND, either express or implied.* diff --git a/components/firmware/CMakeLists.txt b/components/firmware/CMakeLists.txt new file mode 100644 index 0000000..2cb01d5 --- /dev/null +++ b/components/firmware/CMakeLists.txt @@ -0,0 +1,15 @@ +idf_component_register( + SRCS + src/Storage.c + src/Wifi.c + src/MqTriggerHttpServer.c + src/HttpHelpers.c +# src/Buttons.c + + INCLUDE_DIRS ./include + PRIV_INCLUDE_DIRS ./src + + REQUIRES + nvs_flash + esp_http_server + ) diff --git a/components/firmware/component.mk b/components/firmware/component.mk new file mode 100644 index 0000000..4bf1295 --- /dev/null +++ b/components/firmware/component.mk @@ -0,0 +1,10 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . \ No newline at end of file diff --git a/components/firmware/include/nx/firmware/Buttons.h b/components/firmware/include/nx/firmware/Buttons.h new file mode 100644 index 0000000..742822c --- /dev/null +++ b/components/firmware/include/nx/firmware/Buttons.h @@ -0,0 +1,20 @@ +#ifndef COMPONENTS_FIRMWARE_NXBUTTONS_H_ +#define COMPONENTS_FIRMWARE_NXBUTTONS_H_ + +#include +#include + +#define BUTTON_SERVICE_ID 1 +#define BUTTON_SERVICE_GPIO_NUM 23 + +typedef void (*ButtonEventHandler)(uint8_t btn); + +void nxInitButtons(void); + +void nxSetOnPressHandler(ButtonEventHandler handler); + +void nxSetOnReleaseHandler(ButtonEventHandler handler); + +bool nxIsButtonPressed(uint8_t btn); + +#endif /* COMPONENTS_FIRMWARE_NXBUTTONS_H_ */ diff --git a/components/firmware/include/nx/firmware/MqTriggerHttpServer.h b/components/firmware/include/nx/firmware/MqTriggerHttpServer.h new file mode 100644 index 0000000..965d7fa --- /dev/null +++ b/components/firmware/include/nx/firmware/MqTriggerHttpServer.h @@ -0,0 +1,23 @@ +#ifndef COMPONENTS_FIRMWARE_INCLUDE_FIRMWARE_MQTRIGGERHTTPSERVER_H_ +#define COMPONENTS_FIRMWARE_INCLUDE_FIRMWARE_MQTRIGGERHTTPSERVER_H_ + +#include +#include +#include + +typedef void(*RequestCallback)(const uint8_t* content, size_t ctLen, + const char** response, size_t* respLen); + +typedef struct MqTriggerHttpCallbacks { + RequestCallback getRoot; + RequestCallback getSysSet; + RequestCallback getSysSetForm; + RequestCallback postSysSet; + RequestCallback reboot; +} MqTriggerHttpCallbacks; + +bool nxStartMqTriggerHttpServer(void); +void nxStopMqTriggerHttpServer(); +void nxSetMqTriggerHttpCallbacks(MqTriggerHttpCallbacks* cbs); + +#endif /* COMPONENTS_FIRMWARE_INCLUDE_FIRMWARE_MQTRIGGERHTTPSERVER_H_ */ diff --git a/components/firmware/include/nx/firmware/Storage.h b/components/firmware/include/nx/firmware/Storage.h new file mode 100644 index 0000000..c76d78d --- /dev/null +++ b/components/firmware/include/nx/firmware/Storage.h @@ -0,0 +1,13 @@ +#ifndef COMPONENTS_FIRMWARE_STORAGE_H_ +#define COMPONENTS_FIRMWARE_STORAGE_H_ + +#include +#include + +void nxInitStorage(void); + +void nxStorageWrite(const char* key, const void* data, size_t size); + +bool nxStorageRead(const char* key, void* data, size_t size); + +#endif /* COMPONENTS_FIRMWARE_STORAGE_H_ */ diff --git a/components/firmware/include/nx/firmware/Wifi.h b/components/firmware/include/nx/firmware/Wifi.h new file mode 100644 index 0000000..6f6e851 --- /dev/null +++ b/components/firmware/include/nx/firmware/Wifi.h @@ -0,0 +1,35 @@ +#ifndef COMPONENTS_FIRMWARE_WIFI_H +#define COMPONENTS_FIRMWARE_WIFI_H + +#include +#include +#include + +typedef enum WifiMode { + NX_WIFI_MODE_STA = 0, + NX_WIFI_MODE_AP = 1 +} WifiMode; + +typedef struct WifiSettings { + char* wname; //ssid + char* wpass; + const char* devicePrefix; + bool* usePowerSave; + bool* useStaticAddr; + uint8_t* ip4addr; + uint8_t* ip4gw; + uint8_t* ip4mask; + WifiMode mode; +} WifiSettings; + +typedef void (*WifiCallback)(); + +typedef bool (*StorageReadFn)(const char* key, void* data, size_t size); + +bool nxInitWifi(WifiSettings* wifiSettings); + +void nxSetWifiConnectedCallback(WifiCallback callback); +void nxSetWifiErrorCallback(WifiCallback callback); + + +#endif // COMPONENTS_FIRMWARE_WIFI_H diff --git a/components/firmware/src/Buttons.c b/components/firmware/src/Buttons.c new file mode 100644 index 0000000..d5797e4 --- /dev/null +++ b/components/firmware/src/Buttons.c @@ -0,0 +1,142 @@ +#include "nx/firmware/Buttons.h" + +#include +#include + +#include +#include +#include +#include +#include + +#define TAG "NX_BTN" + +#define EVENT_QUEUE_SIZE 5 +#define ESP_INTR_FLAG_DEFAULT 0 + +#define RTOS_TASK_NAME "button_queue_task" +#define RTOS_TASK_STACK_SIZE 4096 // stack overflow when less +#define RTOS_TASK_PRIORITY 10 + +typedef struct Button +{ + uint8_t id; + uint8_t btnGpio; + uint8_t pullGpio; // disabled when 0 + bool inverted; // triggered by gnd by default + bool isPressed; + bool isBouncing; + uint32_t debounceMs; +} Button; + +static Button buttons[] = { + { + .id = BUTTON_SERVICE_ID, + .btnGpio = BUTTON_SERVICE_GPIO_NUM, + .pullGpio = 0, + .inverted = false, + .isPressed = false, + .isBouncing = false, + .debounceMs = 50 + } +}; + +const size_t buttonCount = sizeof(buttons)/sizeof(buttons[0]); + +static ButtonEventHandler pressHandler = NULL; +static ButtonEventHandler releaseHandler = NULL; + +static xQueueHandle gpioEventQueue = NULL; + +static void IRAM_ATTR gpioInterruptHandler(void* arg) +{ + Button* button = (Button*)arg; + if (!button->isBouncing) { + xQueueSendFromISR(gpioEventQueue, &button, NULL); + } +} + +static void buttonQueueTask(void* arg) +{ + Button* button = NULL; + for(;;) { + if(xQueueReceive(gpioEventQueue, &button, portMAX_DELAY)) { + ESP_LOGI(TAG, "Interrupt by GPIO %i", button->btnGpio); + + if (button->debounceMs) { + button->isBouncing = true; + vTaskDelay(button->debounceMs / portTICK_RATE_MS); + } + button->isBouncing = false; + + uint8_t level = gpio_get_level(button->btnGpio); + bool wasPressed = button->isPressed; + button->isPressed = button->inverted ? level : !level; + + if (pressHandler && button->isPressed && !wasPressed) { + pressHandler(button->id); + } + else if (releaseHandler && !button->isPressed && wasPressed) { + releaseHandler(button->id); + } + } + } +} + +// --------- Public API --------- // + +void nxInitButtons(void) +{ + gpio_install_isr_service(ESP_INTR_FLAG_DEFAULT); + + for (size_t i = 0; i < buttonCount; ++i) { + Button* button = &buttons[i]; + gpio_reset_pin(button->btnGpio); + gpio_set_direction(button->btnGpio, GPIO_MODE_INPUT); + if (button->pullGpio) { + gpio_reset_pin(button->pullGpio); + gpio_set_direction(button->pullGpio, GPIO_MODE_OUTPUT); + gpio_set_level(button->pullGpio, button->inverted ? 0 : 1); + } + else if (button->inverted){ + gpio_pullup_en(button->btnGpio); + gpio_set_pull_mode(button->btnGpio, GPIO_PULLDOWN_ONLY); + button->isPressed = gpio_get_level(button->btnGpio); + } + else { + gpio_pullup_en(button->btnGpio); + gpio_set_pull_mode(button->btnGpio, GPIO_PULLUP_ONLY); + button->isPressed = !gpio_get_level(button->btnGpio); + } + + gpio_set_intr_type(button->btnGpio, GPIO_INTR_ANYEDGE); + gpio_isr_handler_add(button->btnGpio, gpioInterruptHandler, button); + } + + gpioEventQueue = xQueueCreate(EVENT_QUEUE_SIZE, sizeof(Button*)); + xTaskCreate(buttonQueueTask, RTOS_TASK_NAME, RTOS_TASK_STACK_SIZE, + NULL, RTOS_TASK_PRIORITY, NULL); +} + +void nxSetOnPressHandler(ButtonEventHandler handler) +{ + pressHandler = handler; +} + +void nxSetOnReleaseHandler(ButtonEventHandler handler) +{ + releaseHandler = handler; +} + +bool nxIsButtonPressed(uint8_t btn) +{ + for(size_t i = 0; i < buttonCount; ++i) { + if (btn == buttons[i].id) { + return buttons[i].isPressed; + } + } + return false; +} + + + diff --git a/components/firmware/src/HttpHelpers.c b/components/firmware/src/HttpHelpers.c new file mode 100644 index 0000000..a7363b4 --- /dev/null +++ b/components/firmware/src/HttpHelpers.c @@ -0,0 +1,49 @@ +#include "HttpHelpers.h" + +#include +#include + +#define TAG "NX_HTTP_H" + +void nxAddCorsHeaders(httpd_req_t* req) +{ + httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*"); + httpd_resp_set_hdr(req, "Access-Control-Allow-Headers", "*"); +} + +esp_err_t nxExecRequestCallback(httpd_req_t*req, RequestCallback callback) +{ + if (callback) { + uint8_t content[REQ_CONTENT_MAX_SIZE]; + memset(content, 0x00, REQ_CONTENT_MAX_SIZE); + size_t cntSize = fmin(req->content_len, sizeof(content)); + + ESP_LOGI(TAG, "Request content size: %i", cntSize); + + if (cntSize > 0) { + int ret = httpd_req_recv(req, (char*)content, cntSize); + if (ret <= 0) { /* 0 return value indicates connection closed */ + ESP_LOGE(TAG, "httpd_req_recv error %i", ret); + if (ret == HTTPD_SOCK_ERR_TIMEOUT) { + /* In case of timeout one can choose to retry calling + * httpd_req_recv(), but to keep it simple, here we + * respond with an HTTP 408 (Request Timeout) error */ + httpd_resp_send_408(req); + } + /* In case of error, returning ESP_FAIL will + * ensure that the underlying socket is closed */ + return ESP_FAIL; + } + } + + const char* respBody = NULL; + size_t respBodySize = 0; + callback(content, cntSize, &respBody, &respBodySize); + httpd_resp_send(req, respBody, respBodySize); + } + else { + const char resp[] = "No callback set\n"; + httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN); + } + return ESP_OK; +} diff --git a/components/firmware/src/HttpHelpers.h b/components/firmware/src/HttpHelpers.h new file mode 100644 index 0000000..17daf20 --- /dev/null +++ b/components/firmware/src/HttpHelpers.h @@ -0,0 +1,29 @@ +#ifndef COMPONENTS_FIRMWARE_SRC_HTTPHELPERS_H_ +#define COMPONENTS_FIRMWARE_SRC_HTTPHELPERS_H_ + +#include + +typedef void(*RequestCallback)(const uint8_t* content, size_t ctLen, + const char** response, size_t* respLen); + +#define REQ_CONTENT_MAX_SIZE 1024 + +// Request handler helper macro +#define ADD_HTTP_HANDLER(_URI, _NAME, _METHOD)\ + static esp_err_t uri_handler_##_NAME(httpd_req_t* req)\ + {\ + nxAddCorsHeaders(req);\ + return nxExecRequestCallback(req, callbacks && callbacks->_NAME \ + ? callbacks->_NAME : NULL);\ + }\ + static httpd_uri_t uri_##_NAME = {\ + .uri = _URI, .method = _METHOD,\ + .handler = uri_handler_##_NAME\ + }; + +void nxAddCorsHeaders(httpd_req_t* req); + +esp_err_t nxExecRequestCallback(httpd_req_t*req, + RequestCallback callback); + +#endif /* COMPONENTS_FIRMWARE_SRC_HTTPHELPERS_H_ */ diff --git a/components/firmware/src/MqTriggerHttpServer.c b/components/firmware/src/MqTriggerHttpServer.c new file mode 100644 index 0000000..0304a51 --- /dev/null +++ b/components/firmware/src/MqTriggerHttpServer.c @@ -0,0 +1,80 @@ +#include "nx/firmware/MqTriggerHttpServer.h" +#include "HttpHelpers.h" + +#include + +#define TAG "NX_HTTP" + +static httpd_handle_t server = NULL; +static MqTriggerHttpCallbacks* callbacks = NULL; + +// -- URI handlers -- + +ADD_HTTP_HANDLER("/", getRoot, HTTP_GET) +ADD_HTTP_HANDLER("/sys", getSysSet, HTTP_GET) +ADD_HTTP_HANDLER("/sys/form", getSysSetForm, HTTP_GET) +ADD_HTTP_HANDLER("/sys", postSysSet, HTTP_POST) +ADD_HTTP_HANDLER("/sys/reboot", reboot, HTTP_POST) + +static esp_err_t uriOptionsHandler(httpd_req_t* req) +{ + nxAddCorsHeaders(req); + const char resp[] = ""; + httpd_resp_send(req, resp, HTTPD_RESP_USE_STRLEN); + return ESP_OK; +} + +static httpd_uri_t uriOptions = { + .uri = "*", + .method = HTTP_OPTIONS, + .handler = uriOptionsHandler +}; + +void registerMqTriggerHttpHandlers(void) +{ + httpd_register_uri_handler(server, &uriOptions); + + httpd_register_uri_handler(server, &uri_getRoot); + httpd_register_uri_handler(server, &uri_getSysSet); + httpd_register_uri_handler(server, &uri_getSysSetForm); + httpd_register_uri_handler(server, &uri_postSysSet); + httpd_register_uri_handler(server, &uri_reboot); +} + + +// --------- Public API --------- // + +bool nxStartMqTriggerHttpServer(void) +{ + httpd_config_t config = HTTPD_DEFAULT_CONFIG(); + + // configure server here: + config.server_port = 80; + config.max_uri_handlers = 8; + config.uri_match_fn = httpd_uri_match_wildcard; + // ... + + if (server != NULL) { + nxStopMqTriggerHttpServer(); + } + + if (httpd_start(&server, &config) == ESP_OK) { + registerMqTriggerHttpHandlers(); + } + return server != NULL; +} + +void nxStopMqTriggerHttpServer() +{ + if (server) { + httpd_stop(server); + server = NULL; + } +} + +void nxSetMqTriggerHttpCallbacks(MqTriggerHttpCallbacks* cbs) +{ + callbacks = cbs; +} + + diff --git a/components/firmware/src/Storage.c b/components/firmware/src/Storage.c new file mode 100644 index 0000000..f537d7b --- /dev/null +++ b/components/firmware/src/Storage.c @@ -0,0 +1,87 @@ +#include "nx/firmware/Storage.h" + +#include +#include +#include +#include + +#define TAG "NX_STORAGE" + +#define NX_STORAGE_NAMESPACE "NX_STORAGE" + +static void initializeNvs() +{ + ESP_LOGI(TAG, "Initializing NVS"); + esp_err_t ret = nvs_flash_init(); + + if (ret == ESP_OK) { + ESP_LOGI(TAG, "NVS initialized"); + } + else if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { + ESP_LOGI(TAG, "NVS full, erasing"); + ESP_ERROR_CHECK(nvs_flash_erase()); + ret = nvs_flash_init(); + } + ESP_ERROR_CHECK(ret); +} + + +// --------- Public API --------- // + +void nxInitStorage(void) +{ + initializeNvs(); +} + +void nxStorageWrite(const char* key, const void* data, size_t size) +{ + ESP_LOGI(TAG, "Writing %i bytes as %s", size, key); + + nvs_handle_t nvsHandle; + esp_err_t err; + + err = nvs_open(NX_STORAGE_NAMESPACE, NVS_READWRITE, &nvsHandle); + if (err != ESP_OK) { + ESP_LOGE(TAG, "Cannot open NVS"); + return; + } + // Write + err = nvs_set_blob(nvsHandle, key, data, size); + if (err != ESP_OK) { + ESP_LOGE(TAG, "Cannot write to NVS"); + } + else { + ESP_LOGI(TAG, "Write OK"); + } + // Commit + err = nvs_commit(nvsHandle); + if (err != ESP_OK) { + ESP_LOGE(TAG, "Cannot commit to NVS"); + } + // Close + nvs_close(nvsHandle); +} + +bool nxStorageRead(const char* key, void* data, size_t size) +{ + ESP_LOGI(TAG, "Reading %i bytes as %s", size, key); + + nvs_handle_t my_handle; + esp_err_t err; + + err = nvs_open(NX_STORAGE_NAMESPACE, NVS_READWRITE, &my_handle); + if (err != ESP_OK) { + ESP_LOGE(TAG, "Cannot open NVS"); + return false; + } + + err = nvs_get_blob(my_handle, key, data, &size); + if (err != ESP_OK) { + ESP_LOGE(TAG, "Cannot get NVS data"); + return false; + } + + // Close + nvs_close(my_handle); + return true; +} diff --git a/components/firmware/src/Wifi.c b/components/firmware/src/Wifi.c new file mode 100644 index 0000000..8f1c21b --- /dev/null +++ b/components/firmware/src/Wifi.c @@ -0,0 +1,332 @@ +#include "nx/firmware/Wifi.h" + +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "freertos/event_groups.h" +#include "esp_system.h" +#include "esp_wifi.h" +#include "esp_event.h" +#include "esp_log.h" +#include "nvs_flash.h" + +#include "lwip/err.h" +#include "lwip/sys.h" +#include "lwip/dns.h" +#include "lwip/inet.h" +#include "lwip/sockets.h" + +#define TAG "WIFI" + +#define WIFI_MAXIMUM_RETRY -1 +#define WIFI_RECONNECT_DELAY_SEC 15 +#define WIFI_AP_CHANNEL 11 +#define WIFI_MAX_CONNECTION 3 + +/* The event group allows multiple bits for each event, but we only care about two events: + * - we are connected to the AP with an IP + * - we failed to connect after the maximum amount of retries */ +#define WIFI_CONNECTED_BIT BIT0 +#define WIFI_FAIL_BIT BIT1 + +#define WIFI_AP_PASSWORD "" + +#define DEVICE_NAME_MAX_LEN 32 + +static const int POWER_SAVE_AP_BEACON_INTERVAL = 10; + +static EventGroupHandle_t wifiEventGroup; + +static int retryCount = 0; + +static WifiSettings* settings = NULL; + +static WifiCallback errorCallback = NULL; +static WifiCallback connectedCallback = NULL; + +static char deviceName[DEVICE_NAME_MAX_LEN]; + +static bool initWifiStation(void); + +static bool initWifiAp(void); + +// --------- Public API --------- // + +bool nxInitWifi(WifiSettings* wifiSettings) +{ + settings = wifiSettings; + if (settings->mode == NX_WIFI_MODE_AP) { + return initWifiAp(); + } + return initWifiStation(); +} + +void nxSetWifiConnectedCallback(WifiCallback callback) +{ + connectedCallback = callback; +} + +void nxSetWifiErrorCallback(WifiCallback callback) +{ + errorCallback = callback; +} + + +// ------------------------------ // + + +static void generateDeviceName() +{ + ESP_LOGI(TAG, "Generating device name with prefix %s", settings->devicePrefix); + + uint8_t mac[6]; + esp_read_mac(mac, 0); // 0 means WiFi base MAC address + sprintf(deviceName, "%s%x%x%x%x%x%x", settings->devicePrefix, + mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]); + ESP_LOGI(TAG, "Device name generated: %s", deviceName); +} + +static void handleStaEvents(esp_event_base_t event_base, int32_t event_id, void* event_data) +{ + ESP_LOGI(TAG, "WiFi STA event received; event ID: %i", event_id); + + if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_START) { + esp_wifi_connect(); + } + else if (event_base == WIFI_EVENT && event_id == WIFI_EVENT_STA_DISCONNECTED) { + ESP_LOGE(TAG, "Cannot connect to the AP"); + if (errorCallback) { + errorCallback(); + } + + if (WIFI_MAXIMUM_RETRY < 0 || retryCount < WIFI_MAXIMUM_RETRY) { + ESP_LOGI(TAG, "Sleeping %i seconds before AP reconnection attempt", WIFI_RECONNECT_DELAY_SEC); + vTaskDelay(WIFI_RECONNECT_DELAY_SEC * 1000 / portTICK_PERIOD_MS); + + ESP_LOGI(TAG, "AP reconnection..."); + esp_wifi_connect(); + retryCount++; + } + else { + xEventGroupSetBits(wifiEventGroup, WIFI_FAIL_BIT); + } + } + else if (event_base == IP_EVENT && event_id == IP_EVENT_STA_GOT_IP) { + ip_event_got_ip_t* event = (ip_event_got_ip_t*) event_data; + ESP_LOGI(TAG, "IP address acquired: " IPSTR, IP2STR(&event->ip_info.ip)); + retryCount = 0; + if (connectedCallback) { + connectedCallback(); + } + xEventGroupSetBits(wifiEventGroup, WIFI_CONNECTED_BIT); + } +} + +static void handleApEvents(esp_event_base_t event_base, int32_t event_id, void* event_data) +{ + ESP_LOGI(TAG, "WiFi AP event received; event ID: %i", event_id); + + if (event_id == WIFI_EVENT_AP_STACONNECTED) { + wifi_event_ap_staconnected_t* event = (wifi_event_ap_staconnected_t*) event_data; + ESP_LOGI(TAG, "Station "MACSTR" joined, AID=%d", + MAC2STR(event->mac), event->aid); + } else if (event_id == WIFI_EVENT_AP_STADISCONNECTED) { + wifi_event_ap_stadisconnected_t* event = (wifi_event_ap_stadisconnected_t*) event_data; + ESP_LOGI(TAG, "Station "MACSTR" left, AID=%d", + MAC2STR(event->mac), event->aid); + } +} + +static void eventHandler(void* arg, esp_event_base_t event_base, + int32_t event_id, void* event_data) +{ + ESP_LOGI(TAG, "Handling WiFi event in mode %i", settings->mode); + + if (settings->mode == NX_WIFI_MODE_STA) { + handleStaEvents(event_base, event_id, event_data); + } + else { + handleApEvents(event_base, event_id, event_data); + } +} + + +static bool initWifiAp(void) +{ + generateDeviceName(NX_WIFI_MODE_AP); + ESP_LOGI(TAG, "Initializing WiFi AP"); + + ESP_ERROR_CHECK(esp_netif_init()); + ESP_ERROR_CHECK(esp_event_loop_create_default()); + esp_netif_create_default_wifi_ap(); + + wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); + ESP_ERROR_CHECK(esp_wifi_init(&cfg)); + + ESP_ERROR_CHECK(esp_event_handler_instance_register(WIFI_EVENT, + ESP_EVENT_ANY_ID, + &eventHandler, + NULL, + NULL)); + + wifi_config_t wifiConfig = { + .ap = { + .ssid_len = strlen(deviceName), + .channel = WIFI_AP_CHANNEL, + .password = WIFI_AP_PASSWORD, + .max_connection = WIFI_MAX_CONNECTION, + .authmode = WIFI_AUTH_WPA_WPA2_PSK + }, + }; + strcpy((char*)(wifiConfig.ap.ssid), deviceName); + + if (strlen((const char*)wifiConfig.ap.password) == 0) { + wifiConfig.ap.authmode = WIFI_AUTH_OPEN; + } + + ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_AP)); + ESP_ERROR_CHECK(esp_wifi_set_config(WIFI_IF_AP, &wifiConfig)); + ESP_ERROR_CHECK(esp_wifi_start()); + + ESP_LOGI(TAG, "WiFi AP initialization finished. SSID: %s password: %s channel: %d", + wifiConfig.ap.ssid, wifiConfig.ap.password, wifiConfig.ap.channel); + return true; +} + +static void configStaticApAddress(esp_netif_t* sta) +{ + ESP_LOGI(TAG, "Setting static IP address"); + esp_netif_dhcpc_stop(sta); + esp_netif_ip_info_t ip_info; + + IP4_ADDR(&ip_info.ip, + settings->ip4addr[0], + settings->ip4addr[1], + settings->ip4addr[2], + settings->ip4addr[3] + ); + IP4_ADDR(&ip_info.gw, + settings->ip4gw[0], + settings->ip4gw[1], + settings->ip4gw[2], + settings->ip4gw[3] + ); + IP4_ADDR(&ip_info.netmask, + settings->ip4mask[0], + settings->ip4mask[1], + settings->ip4mask[2], + settings->ip4mask[3] + ); + ESP_LOGI(TAG, "Calling esp_netif_set_ip_info"); + esp_netif_set_ip_info(sta, &ip_info); +} + +static void registerWifiStaHandlers(void) +{ + ESP_LOGI(TAG, "Registering WiFi station handlers"); + + esp_event_handler_instance_t instance_any_id; + esp_event_handler_instance_t instance_got_ip; + ESP_ERROR_CHECK(esp_event_handler_instance_register(WIFI_EVENT, + ESP_EVENT_ANY_ID, + &eventHandler, + NULL, + &instance_any_id)); + ESP_ERROR_CHECK(esp_event_handler_instance_register(IP_EVENT, + IP_EVENT_STA_GOT_IP, + &eventHandler, + NULL, + &instance_got_ip)); +} + +static void configureWifiSta(void) +{ + ESP_LOGI(TAG, "Configuring WiFi station"); + + wifi_config_t wifi_config = { + .sta = { + .threshold.authmode = WIFI_AUTH_WPA2_PSK, + .listen_interval = POWER_SAVE_AP_BEACON_INTERVAL, + .pmf_cfg = { + .capable = true, + .required = false + }, + }, + }; + + strcpy((char*)wifi_config.sta.ssid, settings->wname); + strcpy((char*)wifi_config.sta.password, settings->wpass); + + ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_STA) ); + ESP_ERROR_CHECK(esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config) ); + ESP_LOGI(TAG, "WiFi station configured"); +} + +static bool waitForStaConnection(void) +{ + ESP_LOGI(TAG, "Waiting for the WiFi station to connect"); + + bool result = false; + + /* Waiting until either the connection is established (WIFI_CONNECTED_BIT) or connection failed for the maximum + * number of re-tries (WIFI_FAIL_BIT). The bits are set by event_handler() (see above) */ + EventBits_t bits = xEventGroupWaitBits(wifiEventGroup, + WIFI_CONNECTED_BIT | WIFI_FAIL_BIT, + pdFALSE, + pdFALSE, + portMAX_DELAY); + + /* xEventGroupWaitBits() returns the bits before the call returned, hence we can test which event actually + * happened. */ + if (bits & WIFI_CONNECTED_BIT) { + ESP_LOGI(TAG, "Connected to the AP; SSID: %s", settings->wname); + + //resolveBrokerAddr(); + + if (*settings->usePowerSave) { + esp_wifi_set_ps(WIFI_PS_MAX_MODEM); + } + + result = true; + } else if (bits & WIFI_FAIL_BIT) { + ESP_LOGI(TAG, "Failed to connect to SSID:%s, password:%s", + settings->wname, settings->wpass); + if (errorCallback) { + errorCallback(); + } + } else { + ESP_LOGE(TAG, "UNEXPECTED EVENT"); + } + return result; +} + +static bool initWifiStation(void) +{ + generateDeviceName(NX_WIFI_MODE_STA); + ESP_LOGI(TAG, "Initializing WiFi station"); + + wifiEventGroup = xEventGroupCreate(); + + ESP_ERROR_CHECK(esp_netif_init()); + ESP_ERROR_CHECK(esp_event_loop_create_default()); + + esp_netif_t* sta = esp_netif_create_default_wifi_sta(); + + if (*settings->useStaticAddr) { + configStaticApAddress(sta); + } + + wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); + ESP_ERROR_CHECK(esp_wifi_init(&cfg)); + + registerWifiStaHandlers(); + + configureWifiSta(); + + ESP_ERROR_CHECK(esp_wifi_start() ); + + ESP_LOGI(TAG, "Updating the host name"); + ESP_ERROR_CHECK(esp_netif_set_hostname(sta, deviceName)); + + return waitForStaConnection(); +} + diff --git a/components/software/CMakeLists.txt b/components/software/CMakeLists.txt new file mode 100644 index 0000000..6b91599 --- /dev/null +++ b/components/software/CMakeLists.txt @@ -0,0 +1,11 @@ +idf_component_register( + SRCS + src/nxSystemSettings.c + src/nxSystemSettingsApi.c + + INCLUDE_DIRS ./include + PRIV_INCLUDE_DIRS ./src + +# REQUIRES +# hal + ) diff --git a/components/software/component.mk b/components/software/component.mk new file mode 100644 index 0000000..4bf1295 --- /dev/null +++ b/components/software/component.mk @@ -0,0 +1,10 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . \ No newline at end of file diff --git a/components/software/include/nx/software/nxSystemSettings.h b/components/software/include/nx/software/nxSystemSettings.h new file mode 100644 index 0000000..3caad53 --- /dev/null +++ b/components/software/include/nx/software/nxSystemSettings.h @@ -0,0 +1,40 @@ +#ifndef NX_SOFTWARE_NXSYSTEMSETTINGS_H_ +#define NX_SOFTWARE_NXSYSTEMSETTINGS_H_ + +#include +#include +#include + +#define WIFI_STRINGS_MAX_LEN 32 + +typedef bool (*StorageReadFn)(const char* key, void* data, size_t size); + +typedef void (*StorageWriteFn)(const char* key, const void* data, size_t size); + +typedef void(*RebootFn)(void); + +typedef struct SystemSettings { + char wifiSsid[WIFI_STRINGS_MAX_LEN]; + char wifiPassword[WIFI_STRINGS_MAX_LEN]; + bool wifiPowerSave; + bool useStaticAddr; + uint8_t ip4addr[4]; + uint8_t ip4gw[4]; + uint8_t ip4mask[4]; +} SystemSettings; + + +void nxInitSystemSettings(StorageWriteFn writeFn, + StorageReadFn readFn, RebootFn rebootFn); + +void nxUpdateSystemSettings(SystemSettings* newSettings); + +void nxRestoreSystemDefaultSettings(void); + +void nxWriteSystemSettings(void); + +void nxRebootSystem(void); + +SystemSettings* nxGetSystemSettings(void); + +#endif /* NX_SOFTWARE_NXSYSTEMSETTINGS_H_ */ diff --git a/components/software/include/nx/software/nxSystemSettingsApi.h b/components/software/include/nx/software/nxSystemSettingsApi.h new file mode 100644 index 0000000..7182490 --- /dev/null +++ b/components/software/include/nx/software/nxSystemSettingsApi.h @@ -0,0 +1,22 @@ +#ifndef NX_SOFTWARE_NXSYSTEMSETTINGSAPI_H_ +#define NX_SOFTWARE_NXSYSTEMSETTINGSAPI_H_ + +#include +#include + + +void nxApiUpdateSystemSettings(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen); + +void nxApiGetSystemSettings(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen); + +//TODO: handle as settings value? +void nxApiRestoreSystemSettings(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen); + +void nxApiRebootSystem(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen); + + +#endif /* NX_SOFTWARE_NXSYSTEMSETTINGSAPI_H_ */ diff --git a/components/software/src/nxSystemSettings.c b/components/software/src/nxSystemSettings.c new file mode 100644 index 0000000..55080df --- /dev/null +++ b/components/software/src/nxSystemSettings.c @@ -0,0 +1,114 @@ +#include +#include +#include + +#define KEY_INIT_FLAG "set" +#define KEY_WIFI_SSID "ssid" +#define KEY_WIFI_PASS "wpass" +#define KEY_WIFI_POWER_SAVE "wpsave" +#define KEY_WIFI_USE_STATIC "wstat" +#define KEY_WIFI_ADDR "waddr" +#define KEY_WIFI_GW "wgw" +#define KEY_WIFI_MASK "wmask" + +#define IPV4_ADDR_SIZE 4 + +static const uint8_t INIT_FLAG_VALUE = 1; +static const char* DEFAULT_WIFI_SSID = "service_wifi"; +static const char* DEFAULT_WIFI_PASS = "service_wifi"; +static const bool DEFAULT_WIFI_POWER_SAVE = false; +static const bool DEFAULT_WIFI_USE_STATIC = false; +static const char DEFAULT_WIFI_ADDR[IPV4_ADDR_SIZE] = {192,168,8,101}; +static const char DEFAULT_WIFI_GW[IPV4_ADDR_SIZE] = {192,168,8,1}; +static const char DEFAULT_WIFI_MASK[IPV4_ADDR_SIZE] = {255,255,255,0}; + +static StorageWriteFn storageWrite = NULL; +static StorageReadFn storageRead = NULL; +RebootFn execReboot = NULL; + +static SystemSettings settings; + +static bool firstRun(void) +{ + uint8_t initFlag = 0; + if (!storageRead(KEY_INIT_FLAG, &initFlag, sizeof(initFlag))) { + return true; + } + return initFlag != INIT_FLAG_VALUE; +} + +static void loadSystemSettings(void) +{ + printf("Loading system settings\n"); + storageRead(KEY_WIFI_SSID, settings.wifiSsid, WIFI_STRINGS_MAX_LEN); + storageRead(KEY_WIFI_PASS, settings.wifiPassword, WIFI_STRINGS_MAX_LEN); + storageRead(KEY_WIFI_POWER_SAVE, &settings.wifiPowerSave, sizeof(settings.wifiPowerSave)); + storageRead(KEY_WIFI_USE_STATIC, &settings.useStaticAddr, sizeof(settings.useStaticAddr)); + storageRead(KEY_WIFI_ADDR, settings.ip4addr, IPV4_ADDR_SIZE); + storageRead(KEY_WIFI_GW, settings.ip4gw, IPV4_ADDR_SIZE); + storageRead(KEY_WIFI_MASK, settings.ip4mask, IPV4_ADDR_SIZE); +} + + +// --------- Public API --------- // + +void nxInitSystemSettings(StorageWriteFn writeFn, + StorageReadFn readFn, + RebootFn rebootFn) +{ + storageWrite = writeFn; + storageRead = readFn; + execReboot = rebootFn; + + if (firstRun()) { + printf("FIRST RUN\n"); + nxRestoreSystemDefaultSettings(); + } + else { + loadSystemSettings(); + } +} + +void nxRestoreSystemDefaultSettings(void) +{ + printf("Restoring DEFAULT system settings\n"); + strcpy(settings.wifiSsid, DEFAULT_WIFI_SSID); + strcpy(settings.wifiPassword, DEFAULT_WIFI_PASS); + settings.wifiPowerSave = DEFAULT_WIFI_POWER_SAVE; + settings.useStaticAddr = DEFAULT_WIFI_USE_STATIC; + memcpy(settings.ip4addr, DEFAULT_WIFI_ADDR, IPV4_ADDR_SIZE); + memcpy(settings.ip4gw, DEFAULT_WIFI_GW, IPV4_ADDR_SIZE); + memcpy(settings.ip4mask, DEFAULT_WIFI_MASK, IPV4_ADDR_SIZE); + nxWriteSystemSettings(); +} + +void nxUpdateSystemSettings(SystemSettings* newSettings) +{ + memcpy(&settings, newSettings, sizeof(SystemSettings)); + nxWriteSystemSettings(); +} + +void nxWriteSystemSettings(void) +{ + printf("WRITING SYSTEM SETTINGS\n"); + storageWrite(KEY_INIT_FLAG, &INIT_FLAG_VALUE, 1); + storageWrite(KEY_WIFI_SSID, settings.wifiSsid, WIFI_STRINGS_MAX_LEN); + storageWrite(KEY_WIFI_PASS, settings.wifiPassword, WIFI_STRINGS_MAX_LEN); + storageWrite(KEY_WIFI_POWER_SAVE, &settings.wifiPowerSave, sizeof(settings.wifiPowerSave)); + storageWrite(KEY_WIFI_USE_STATIC, &settings.useStaticAddr, sizeof(settings.useStaticAddr)); + storageWrite(KEY_WIFI_ADDR, settings.ip4addr, IPV4_ADDR_SIZE); + storageWrite(KEY_WIFI_GW, settings.ip4gw, IPV4_ADDR_SIZE); + storageWrite(KEY_WIFI_MASK, settings.ip4mask, IPV4_ADDR_SIZE); +} + +SystemSettings* nxGetSystemSettings(void) +{ + return &settings; +} + +void nxRebootSystem(void) +{ + execReboot(); +} + + diff --git a/components/software/src/nxSystemSettingsApi.c b/components/software/src/nxSystemSettingsApi.c new file mode 100644 index 0000000..9f690f8 --- /dev/null +++ b/components/software/src/nxSystemSettingsApi.c @@ -0,0 +1,127 @@ +#include +#include +#include +#include +#include +#include + +#define IPV4_ADDR_SIZE 4 + +/* curl example: + curl -v -X POST http://192.168.4.1/sys -d \ + ssid=myssid,wpass=mypassword,wpwsave=1,wstatic=1,ip=3232237657,gw=3232237569,mask=4294967040 +*/ + +#define API_KEY_SSID "ssid" +#define API_KEY_WPASS "wpass" +#define API_KEY_WPWSAVE "wpwsave" +#define API_KEY_USE_STATIC "wstatic" +#define API_KEY_IPV4ADDR "ip" +#define API_KEY_IPV4GW "gw" +#define API_KEY_IPV4MASK "mask" + +#define UNUSED(x) (void)(x) + +#define RESP_BUF_SIZE 1024 + +char responseBuffer[RESP_BUF_SIZE]; + +void int2ip(uint8_t array[4], uint32_t addr) +{ + array[0] = (addr & 0xFF000000) >> 24; + array[1] = (addr & 0x00FF0000) >> 16; + array[2] = (addr & 0x0000FF00) >> 8; + array[3] = (addr & 0x000000FF); +} + +void handleKvPair(const char* key, const char* value) +{ + printf("System settings update; Key: %s, Value: %s\n", key, value); + + SystemSettings* settings = nxGetSystemSettings(); + if (strcmp(key, API_KEY_SSID) == 0) { + strcpy(settings->wifiSsid, value); + } + else if (strcmp(key, API_KEY_WPASS) == 0) { + strcpy(settings->wifiPassword, value); + } + else if (strcmp(key, API_KEY_WPWSAVE) == 0) { + settings->wifiPowerSave = atoi(value); + } + else if (strcmp(key, API_KEY_USE_STATIC) == 0) { + settings->useStaticAddr = atoi(value); + } + else if (strcmp(key, API_KEY_IPV4ADDR) == 0) { + uint32_t addr = strtoul(value, NULL, 10); + int2ip(settings->ip4addr, addr); + // debug + printf("new ip: %i.%i.%i.%i\n", + settings->ip4addr[0], + settings->ip4addr[1], + settings->ip4addr[2], + settings->ip4addr[3]); + } + else if (strcmp(key, API_KEY_IPV4GW) == 0) { + uint32_t addr = strtoul(value, NULL, 10); + int2ip(settings->ip4gw, addr); + } + else if (strcmp(key, API_KEY_IPV4MASK) == 0) { + uint32_t addr = strtoul(value, NULL, 10); + int2ip(settings->ip4mask, addr); + } + else { + fprintf(stderr, "Unknown key: %s\n", key); + } +} + +// --------- Public API --------- // + +void nxApiGetSystemSettings(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen) +{ + UNUSED(msg); UNUSED(msgLen); + memset(responseBuffer, 0, RESP_BUF_SIZE); + SystemSettings* settings = nxGetSystemSettings(); + + sprintf(responseBuffer, + "{\"%s\"=\"%s\", \"%s\"=%s, \"%s\"=%s, " + "\"%s\"=\"%i.%i.%i.%i\", \"%s\"=\"%i.%i.%i.%i\", \"%s\"=\"%i.%i.%i.%i\"}", + API_KEY_SSID, settings->wifiSsid, + API_KEY_WPWSAVE, settings->wifiPowerSave ? "true" : "false", + API_KEY_USE_STATIC, settings->useStaticAddr ? "true" : "false", + API_KEY_IPV4ADDR, settings->ip4addr[0], settings->ip4addr[1], settings->ip4addr[2], settings->ip4addr[3], + API_KEY_IPV4GW, settings->ip4gw[0], settings->ip4gw[1], settings->ip4gw[2], settings->ip4gw[3], + API_KEY_IPV4MASK, settings->ip4mask[0], settings->ip4mask[1], settings->ip4mask[2], settings->ip4mask[3] + ); + *response = responseBuffer; + *respLen = strlen(responseBuffer); +} + +void nxApiUpdateSystemSettings(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen) +{ + char key[32]; + char value[32]; + FILE *stream; + stream = fmemopen((void*)msg, strlen((const char*)msg), "r"); + int maxPairs = 10; + while (fscanf(stream, "%127[^=]=%127[^,]%*c", key, value) == 2 && maxPairs > 0) { + handleKvPair(key, value); + maxPairs -= 1; + } + nxWriteSystemSettings(); +} + +void nxApiRestoreSystemSettings(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen) +{ + UNUSED(msg); UNUSED(msgLen); UNUSED(response); UNUSED(respLen); + nxRestoreSystemDefaultSettings(); +} + +void nxApiRebootSystem(const uint8_t* msg, size_t msgLen, + const char** response, size_t* respLen) +{ + UNUSED(msg); UNUSED(msgLen); UNUSED(response); UNUSED(respLen); + nxRebootSystem(); +} diff --git a/kicad/Regulator_Switching.dcm b/kicad/Regulator_Switching.dcm new file mode 100644 index 0000000..b740dd3 --- /dev/null +++ b/kicad/Regulator_Switching.dcm @@ -0,0 +1,6351 @@ +EESchema-DOCLIB Version 2.0 +# +$CMP 171050601 +D MagI3C Power Module, Variable Step Down Regulator Module, 6 to 36V Input Voltage, 0.8 to 6V, 5A Output, TO-263 +K power module regulator +F https://katalog.we-online.de/pm/datasheet/171050601.pdf +$ENDCMP +# +$CMP A4403GEU +D Valley current mode buck converter, 46V, 3A, up to 2MHz, QFN-16 +K buck regulator adjustable +F https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx +$ENDCMP +# +$CMP AAT1217ICA-1.2 +D 600mA, 2.5-5.5V, 1.2MHz, Micropower Synchronous Step-Up Converter, TSOT-23-6 +K regulator step-up adjustable +F http://www.skyworksinc.com/uploads/documents/AAT1217_202050B.pdf +$ENDCMP +# +$CMP AAT1217ICA-3.3 +D 600mA, 3.3V, 1.2MHz, Micropower Synchronous Step-Up Converter, TSOT-23-6 +K regulator step-up +F http://www.skyworksinc.com/uploads/documents/AAT1217_202050B.pdf +$ENDCMP +# +$CMP AAT1217ICA-5.0 +D 600mA, 5.0V, 1.2MHz, Micropower Synchronous Step-Up Converter, TSOT-23-6 +K regulator step-up +F http://www.skyworksinc.com/uploads/documents/AAT1217_202050B.pdf +$ENDCMP +# +$CMP AAT1217IGU-3.3 +D 600mA, 3.3V, 1.2MHz, Micropower Synchronous Step-Up Converter, SOT-23-6 +K regulator step-up +F http://www.skyworksinc.com/uploads/documents/AAT1217_202050B.pdf +$ENDCMP +# +$CMP ADP1108AN +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, adjustable output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AN-12 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, 12V fixed output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AN-3.3 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, 3.3V fixed output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AN-5 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, 5V fixed output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AR +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, adjustable output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AR-12 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, 12V fixed output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AR-3.3 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, 3.3V fixed output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP1108AR-5 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, 5V fixed output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP1108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.0 +D 3MHz switching bucK regulator, 600mA 1.0V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.1 +D 3MHz switching bucK regulator, 600mA 1.1V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.2 +D 3MHz switching bucK regulator, 600mA 1.2V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.3 +D 3MHz switching bucK regulator, 600mA 1.3V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.5 +D 3MHz switching bucK regulator, 600mA 1.5V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.8 +D 3MHz switching bucK regulator, 600mA 1.8V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-1.82 +D 3MHz switching bucK regulator, 600mA 1.82V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-2.3 +D 3MHz switching bucK regulator, 600mA 2.3V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-2.5 +D 3MHz switching bucK regulator, 600mA 2.5V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-3.0 +D 3MHz switching bucK regulator, 600mA 3.0V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2108AUJ-3.3 +D 3MHz switching bucK regulator, 600mA 3.3V output voltage, +K Voltage regulator switching buck fixed output analog +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2108.pdf +$ENDCMP +# +$CMP ADP2302ARDZ +D Nonsynchronous Step-Down Regulator 2 Amp Vout Adjustable SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2302ARDZ-2.5 +D Nonsynchronous Step-Down Regulator 2 Amp Vout 2.5v SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2302ARDZ-3.3 +D Nonsynchronous Step-Down Regulator 2 Amp Vout 3.3v SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2302ARDZ-5.0 +D Nonsynchronous Step-Down Regulator 2 Amp Vout 5.0v SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2303ARDZ +D Nonsynchronous Step-Down Regulator 3 Amp Vout Adjustable SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2303ARDZ-2.5 +D Nonsynchronous Step-Down Regulator 3 Amp Vout 2.5v SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2303ARDZ-3.3 +D Nonsynchronous Step-Down Regulator 3 Amp Vout 3.3v SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2303ARDZ-5.0 +D Nonsynchronous Step-Down Regulator 3 Amp Vout 5.0v SOIC-8 +K Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2302_2303.pdf +$ENDCMP +# +$CMP ADP2360xCP +D High Efficiency Buck Regulator, Vin 60V, Vout Adjustable, 50mA, LFCSP-8 +K Step-Down Buck Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2360.pdf +$ENDCMP +# +$CMP ADP2360xCP-3.3 +D High Efficiency Buck Regulator, Vin 60V, Vout 3.3V, 50mA, LFCSP-8 +K Step-Down Buck Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2360.pdf +$ENDCMP +# +$CMP ADP2360xCP-5.0 +D High Efficiency Buck Regulator, Vin 60V, Vout 5.0V, 50mA, LFCSP-8 +K Step-Down Buck Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP2360.pdf +$ENDCMP +# +$CMP ADP5054 +D 250kHz to 2MHz, 6A/6A/2A/2A Quad Buck Regulator, -40 to +125C, QFN-48 +K quad regulator dcdc buck synchronizable parallel +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP5054.pdf +$ENDCMP +# +$CMP ADP5070AREZ +D 1A/0.6A DC-to-DC Switching Regulator with Independent Positive and Negative Outputs +K voltage regulator switching inverter double positive negative +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP5070.pdf +$ENDCMP +# +$CMP ADP5071AREZ +D 2A/1.2A DC-to-DC Switching Regulator with Independent Positive and Negative Outputs +K voltage regulator switching inverter double positive negative +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADP5071.pdf +$ENDCMP +# +$CMP ADuM6000 +D Isolated 5 kV DC-to-DC Converter +K Isolated DC-to-DC Converter 5kV +F https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM6000.PDF +$ENDCMP +# +$CMP AOZ1280CI +D 1.2 A Simple Buck Regulator, 3-26V input, 1.5Mhz +K switching buck converter +F http://aosmd.com/res/data_sheets/AOZ1280CI.pdf +$ENDCMP +# +$CMP AOZ1282CI +D 1.2 A Simple Buck Regulator, 4.5-36V input, 450kHz +K switching buck converter +F http://aosmd.com/res/data_sheets/AOZ1282CI.pdf +$ENDCMP +# +$CMP AOZ1282CI-1 +D 600 mA Simple Buck Regulator, 4.5-36V input, 1MHz +K switching buck converter +F http://www.aosmd.com/res/data_sheets/AOZ1282CI-1.pdf +$ENDCMP +# +$CMP AP1509 +D 150KHz, 2A PWM BUCK DC/DC CONVERTER +K 3.3V 2A 150KHz PWM Buck DC/DC +F https://www.tme.eu/Document/7fdb23bb64ab89e0668906be83b8b7e3/AP1509x-DTE.pdf +$ENDCMP +# +$CMP AP63200WU +D 2A, 500kHz Buck DC/DC Converter, adjustable output voltage, TSOT-23-6 +K 2A Buck DC/DC +F https://www.diodes.com/assets/Datasheets/AP63200-AP63201-AP63203-AP63205.pdf +$ENDCMP +# +$CMP AP63201WU +D 2A, 500kHz Buck DC/DC Converter, adjustable output voltage, TSOT-23-6 +K 2A Buck DC/DC +F https://www.diodes.com/assets/Datasheets/AP63200-AP63201-AP63203-AP63205.pdf +$ENDCMP +# +$CMP AP63203WU +D 2A, 1.1MHz Buck DC/DC Converter, fixed 3.3V output voltage, TSOT-23-6 +K 2A Buck DC/DC +F https://www.diodes.com/assets/Datasheets/AP63200-AP63201-AP63203-AP63205.pdf +$ENDCMP +# +$CMP AP63205WU +D 2A, 1.1MHz Buck DC/DC Converter, fixed 5.0V output voltage, TSOT-23-6 +K 2A Buck DC/DC +F https://www.diodes.com/assets/Datasheets/AP63200-AP63201-AP63203-AP63205.pdf +$ENDCMP +# +$CMP AP6502 +D 340kHz 18V 2A Synchronois DC/DC Buck Converter +K buck switching converter +F https://www.diodes.com/assets/Datasheets/AP6502.pdf +$ENDCMP +# +$CMP AP6503 +D 340kHz 23V 3A Synchonous DC/DC Buck Converter +K buck switching converter +F https://www.diodes.com/assets/Datasheets/AP6503.pdf +$ENDCMP +# +$CMP AP65111AWU +D 1.5A, 500kHz Buck DC/DC Converter, adjustable output voltage, TSOT-23-6 +K 1.5A 500kHz PWM Buck DC/DC +F https://www.diodes.com/assets/Datasheets/AP65111A.pdf +$ENDCMP +# +$CMP APE1707H-12-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 12.0V output voltage, TO-252-5 (D-PAK) +K 12V 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707H-12-HF.pdf +$ENDCMP +# +$CMP APE1707H-33-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 3.3V output voltage, TO-252-5 (D-PAK) +K 3.3V 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707H-12-HF.pdf +$ENDCMP +# +$CMP APE1707H-50-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 5.0V output voltage, TO-252-5 (D-PAK) +K 5V 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707H-12-HF.pdf +$ENDCMP +# +$CMP APE1707H-HF +D 2A, 150KHz PWM Buck DC/DC Converter, adjustable output voltage, TO-252-5 (D-PAK) +K Adjustable 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707H-12-HF.pdf +$ENDCMP +# +$CMP APE1707M-12-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 12.0V output voltage, SO-8 +K 12V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-12-HF_copy +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 12.0V output voltage, SO-8 +K 12V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-33-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 3.3V output voltage, SO-8 +K 3.3V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-50-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 5.0V output voltage, SO-8 +K 5V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-50-HF_copy +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 5.0V output voltage, SO-8 +K 5V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-HF +D 2A, 150KHz PWM Buck DC/DC Converter, adjustable output voltage, SO-8 +K Adjustable 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-HF_copy +D 2A, 150KHz PWM Buck DC/DC Converter, adjustable output voltage, SO-8 +K Adjustable 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707S-12-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 12.0V output voltage, TO-263-5 (DD-PAK) +K 12V 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707S-12-HF.pdf +$ENDCMP +# +$CMP APE1707S-33-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 3.3V output voltage, TO-263-5 (DD-PAK) +K 3.3V 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707S-12-HF.pdf +$ENDCMP +# +$CMP APE1707S-50-HF +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 5.0V output voltage, TO-263-5 (DD-PAK) +K 5V 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707S-12-HF.pdf +$ENDCMP +# +$CMP APE1707S-HF +D 2A, 150KHz PWM Buck DC/DC Converter, adjustable output voltage, TO-263-5 (DD-PAK) +K Adjustable 2A 150KHz PWM Buck DC/DC +F http://pdf.datasheet.live/datasheets-1/advanced_power_electronics/APE1707S-12-HF.pdf +$ENDCMP +# +$CMP BD9001F +D 48V 2A, Flexible Step-Down Switching Regulator, SO-8 +K DC-DC Step-Down Switching Regulator +F http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd9778f-e.pdf +$ENDCMP +# +$CMP BD9778F +D 35V 2A, Flexible Step-Down Switching Regulator, SO-8 +K DC-DC Step-Down Switching Regulator +F http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd9778f-e.pdf +$ENDCMP +# +$CMP BD9778HFP +D 35V 2A, Flexible Step-Down Switching Regulator, HRP7 +K DC-DC Step-Down Switching Regulator +F http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd9778f-e.pdf +$ENDCMP +# +$CMP BD9781HFP +D 35V 4A, Flexible Step-Down Switching Regulator, HRP7 +K DC-DC Step-Down Switching Regulator +F http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd9778f-e.pdf +$ENDCMP +# +$CMP BD9G341EFJ +D 12V-76V input voltage range 3A output current, Buck Converter, Integrated FET, HTSOP-8 +K Buck Converter +F https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf +$ENDCMP +# +$CMP CRE1S0305S3C +D 3.3V to 5V 200mA, Isolated 2W Single-Output DC-DC Converter Modules with 3kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S0505DC +D 5V to 5V 200mA DC-DC Converter with 1kV isolation, DC-package +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S0505S3C +D 5V to 5V 200mA, Isolated 2W Single-Output DC-DC Converter Modules with 3kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S0505SC +D 5V to 5V 200mA DC-DC Converter with 1kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S0515SC +D 15V to 5V 67mA DC-DC Converter with 1kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S1205SC +D 12V to 5V 200mA DC-DC Converter with 1kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S1212SC +D 12V to 12V 83mA DC-DC Converter with 1kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S2405SC +D 24V to 5V 200mA DC-DC Converter with 1kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP CRE1S2412SC +D 24V to 12V 83mA DC-DC Converter with 1kV isolation, SIP-4 +K Murata isolated isolation dc-dc converter transformer +F http://power.murata.com/datasheet?/data/power/ncl/kdc_cre1.pdf +$ENDCMP +# +$CMP DIO6970 +D High-Efficiency 2A, 24V Input Synchronous Step Down Converter, SOT-23-6 +K smps buck boost inverting +F http://www.dioo.com/uploads/product/20190313/7a4d03690a9be004035eb1035a429f24.pdf +$ENDCMP +# +$CMP FSBH0170 +D Green Mode Fairchild Power Switch, 700V Vds, 1.0A Id, 15W/13W 230V/85-265V, VIN Pin, DIP-8 +K smps regulator +F https://www.onsemi.com/pub/Collateral/FSBH0270-D.PDF +$ENDCMP +# +$CMP FSBH0170A +D Green Mode Fairchild Power Switch, 700V Vds, 1.0A Id, 15W/13W 230V/85-265V, DIP-8 +K smps regulator +F https://www.onsemi.com/pub/Collateral/FSBH0270-D.PDF +$ENDCMP +# +$CMP FSBH0170W +D Green Mode Fairchild Power Switch, 700V Vds, 1.0A Id, 15W/13W 230V/85-265V, VIN Pin, DIP-8 +K smps regulator +F http://www.onsemi.com/pub/Collateral/FSBH0270W-D.pdf +$ENDCMP +# +$CMP FSBH0270 +D Green Mode Fairchild Power Switch, 700V Vds, 2.0A Id, 20W/16W 230V/85-265V, VIN Pin, DIP-8 +K smps regulator +F https://www.onsemi.com/pub/Collateral/FSBH0270-D.PDF +$ENDCMP +# +$CMP FSBH0270A +D Green Mode Fairchild Power Switch, 700V Vds, 2.0A Id, 20W/16W 230V/85-265V, DIP-8 +K smps regulator +F https://www.onsemi.com/pub/Collateral/FSBH0270-D.PDF +$ENDCMP +# +$CMP FSBH0270W +D Green Mode Fairchild Power Switch, 700V Vds, 2.0A Id, 20W/16W 230V/85-265V, VIN Pin, DIP-8 +K smps regulator +F http://www.onsemi.com/pub/Collateral/FSBH0270W-D.pdf +$ENDCMP +# +$CMP FSBH0370 +D Green Mode Fairchild Power Switch, 700V Vds, 3.0A Id, 25W/19W 230V/85-265V, VIN Pin, DIP-8 +K smps regulator +F https://www.onsemi.com/pub/Collateral/FSBH0270-D.PDF +$ENDCMP +# +$CMP FSBH0F70A +D Green Mode Fairchild Power Switch, 700V Vds, 0.5A Id, 10W/8W 230V/85-265V, DIP-8 +K smps regulator +F https://www.onsemi.com/pub/Collateral/FSBH0270-D.PDF +$ENDCMP +# +$CMP FSBH0F70WA +D Green Mode Fairchild Power Switch, 700V Vds, 0.5A Id, 10W/8W 230V/85-265V, DIP-8 +K smps regulator +F http://www.onsemi.com/pub/Collateral/FSBH0270W-D.pdf +$ENDCMP +# +$CMP FSDH321 +D 17W SMPS Controller, 100kHz, AC-DC, PDIP-8 +K SMPS Controller with MOSFET 17W AC-DC +F https://www.onsemi.com/pub/Collateral/FSDH321JP-D.pdf +$ENDCMP +# +$CMP FSDH321L +D 17W SMPS Controller, 100kHz, AC-DC, SMD-8 +K SMPS Controller with MOSFET 17W AC-DC +F https://www.onsemi.com/pub/Collateral/FSDH321JP-D.pdf +$ENDCMP +# +$CMP FSDL321 +D 17W SMPS Controller, 50kHz, AC-DC, PDIP-8 +K SMPS Controller with MOSFET 17W AC-DC +F https://www.onsemi.com/pub/Collateral/FSDH321JP-D.pdf +$ENDCMP +# +$CMP FSDL321L +D 17W SMPS Controller, 50kHz, AC-DC, SMD-8 +K SMPS Controller with MOSFET 17W AC-DC +F https://www.onsemi.com/pub/Collateral/FSDH321JP-D.pdf +$ENDCMP +# +$CMP FSL136MRT +D 67kHz SMPS Controller w/ Soft Start, max. 50W AC-DC, TO-220F-6L +K SMPS Controller 50W AC-DC +F https://www.onsemi.com/pub/Collateral/FSL136MRT-D.pdf +$ENDCMP +# +$CMP FSQ0565RQLDTU +D 67kHz Quasi Resonant SMPS Controller w/ Soft Start, max. 80W AC-DC, TO-220F-6L (Formed) +K Quasi Resonant SMPS Controller 80W AC-DC +F http://www.onsemi.com/pub/Collateral/FSQ0565RS-D.PDF +$ENDCMP +# +$CMP FSQ0565RQWDTU +D 67kHz Quasi Resonant SMPS Controller w/ Soft Start, max. 80W AC-DC, TO-220F-6L +K Quasi Resonant SMPS Controller 80W AC-DC +F http://www.onsemi.com/pub/Collateral/FSQ0565RS-D.PDF +$ENDCMP +# +$CMP FSQ0565RSLDTU +D 67kHz Quasi Resonant SMPS Controller w/ Soft Start, max. 80W AC-DC, TO-220F-6L (Formed) +K Quasi Resonant SMPS Controller 80W AC-DC +F http://www.onsemi.com/pub/Collateral/FSQ0565RS-D.PDF +$ENDCMP +# +$CMP FSQ0565RSWDTU +D 67kHz Quasi Resonant SMPS Controller w/ Soft Start, max. 80W AC-DC, TO-220F-6L +K Quasi Resonant SMPS Controller 80W AC-DC +F http://www.onsemi.com/pub/Collateral/FSQ0565RS-D.PDF +$ENDCMP +# +$CMP GL2576-12SF8DR +D 12V 3A, 52KHz Step Down Converter, SO-8 +K 12V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-12TA5R +D 12V 3A, 52KHz Step Down Converter, TO263-5 (D2-PAK) +K 12V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-12TB5T +D 12V 3A, 52KHz Step Down Converter, TO220-5 +K 12V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-15SF8DR +D 15V 3A, 52KHz Step Down Converter, SO-8 +K 15V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-15TA5R +D 15V 3A, 52KHz Step Down Converter, TO263-5 (D2-PAK) +K 15V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-15TB5T +D 15V 3A, 52KHz Step Down Converter, TO220-5 +K 15V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-3.3SF8DR +D 3.3V 3A, 52KHz Step Down Converter, SO-8 +K 3.3V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-3.3TA5R +D 3.3V 3A, 52KHz Step Down Converter, TO263-5 (D2-PAK) +K 3.3V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-3.3TB5T +D 3.3V 3A, 52KHz Step Down Converter, TO220-5 +K 3.3V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-5.0SF8DR +D 5V 3A, 52KHz Step Down Converter, SO-8 +K 5V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-5.0TA5R +D 5V 3A, 52KHz Step Down Converter, TO263-5 (D2-PAK) +K 5V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-5.0TB5T +D 5V 3A, 52KHz Step Down Converter, TO220-5 +K 5V 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-ASF8DR +D Adjustable 3A, 52KHz Step Down Converter, SO-8 +K Adjustable 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-ATA5R +D Adjustable 3A, 52KHz Step Down Converter, TO263-5 (D2-PAK) +K Adjustable 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP GL2576-ATB5T +D Adjustable 3A, 52KHz Step Down Converter, TO220-5 +K Adjustable 3A 52KHz Buck DC/DC +F http://www.dianyuan.com/bbs/u/54/437861181916300.pdf +$ENDCMP +# +$CMP ISL8117FRZ +D Synchronous step-down PWM controller, 4.5v to 60v input, 0.6v to 54v Output Voltage, QFN-16 +K PWM step down buck converter controller synchronous POL +F https://www.intersil.com/content/dam/Intersil/documents/isl8/isl8117.pdf +$ENDCMP +# +$CMP ISL8117FVEZ +D Synchronous step-down PWM controller, 4.5v to 60v input, 0.6v to 54v Output Voltage, HTSSOP-16 +K PWM step down buck converter controller synchronous POL +F https://www.intersil.com/content/dam/Intersil/documents/isl8/isl8117.pdf +$ENDCMP +# +$CMP KA5H02659RN +D 100kHz SMPS Controller, AC-DC, PDIP-8 +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5H0265RCTU +D 100kHz SMPS Controller w/ Soft Start, AC-DC, TO-220F-5L +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5H0265RCYDTU +D KA5H0265RCTU, 100kHz SMPS Controller w/ Soft Start, AC-DC, TO-220F-5L(Forming) +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5H0280RTU +D 100kHz SMPS Controller, AC-DC, TO-220F-4L +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5H0280RYDTU +D 100kHz SMPS Controller, AC-DC, TO-220F-4L(Forming) +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5L0265RTU +D 50kHz SMPS Controller, AC-DC, TO-220F-4L +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5L0265RYDTU +D 50kHz SMPS Controller, AC-DC, TO-220F-4L(Forming) +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5M02659RN +D 67kHz SMPS Controller, AC-DC, PDIP-8 +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5M0265RTU +D 67kHz SMPS Controller, AC-DC, TO-220F-4L +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5M0265RYDTU +D 67kHz SMPS Controller, AC-DC, TO-220F-4L(Forming) +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5M0280RTU +D 67kHz SMPS Controller, AC-DC, TO-220F-4L +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP KA5M0280RYDTU +D KA5M0280RTDTU, 67kHz SMPS Controller, AC-DC, TO-220F-4L(Forming) +K SMPS Controller AC-DC +F http://www.onsemi.com/pub/Collateral/KA5L0265R-D.PDF +$ENDCMP +# +$CMP L5973D +D 2.5A step down switching regulator, HSOP-8 +K step down buck regulator +F http://www.st.com/resource/en/datasheet/l5973d.pdf +$ENDCMP +# +$CMP LD7575 +D Green-Mode PWM Controller with High-Voltage Start-Up Circuit, DIP-8/SOIC-8 +K smps controller +F http://www.leadtrend.com.tw/archive/doc/product/sheets/LD7575-DS-04b.pdf +$ENDCMP +# +$CMP LM22676MR-5 +D 3A Step-Down Switching Voltage Regulater, 4.5-42V Input, 5V Output, 500kHz Switching Frequency, SOIC-8 +K DC/DC Buck Converter 3A +F http://www.ti.com/lit/ds/symlink/lm22676.pdf +$ENDCMP +# +$CMP LM22676MR-ADJ +D 3A Step-Down Switching Voltage Regulater, 4.5-42V Input, Adjustable Output, 500kHz Switching Frequency, SOIC-8 +K DC/DC Buck Converter 3A +F http://www.ti.com/lit/ds/symlink/lm22676.pdf +$ENDCMP +# +$CMP LM22678TJ-5 +D 5A Step-Down Switching Voltage Regulater, 4.5-42V Input, 5V Output, 500kHz Switching Frequency, TO-263 +K DC/DC Buck Converter 5A +F https://www.ti.com/lit/ds/symlink/lm22678.pdf +$ENDCMP +# +$CMP LM22678TJ-ADJ +D 5A Step-Down Switching Voltage Regulater, 4.5-42V Input, Adjustable Output, 500kHz Switching Frequency, TO-263 +K DC/DC Buck Converter 5A +F https://www.ti.com/lit/ds/symlink/lm22678.pdf +$ENDCMP +# +$CMP LM25085MM +D 42V Constant On-Time PFET Buck Switching Controller, MSOP-8 +K buck switching contoller +F http://www.ti.com/lit/ds/symlink/lm25085.pdf +$ENDCMP +# +$CMP LM25085MY +D 42V Constant On-Time PFET Buck Switching Controller, MSOP-8-EP +K buck switching contoller +F http://www.ti.com/lit/ds/symlink/lm25085.pdf +$ENDCMP +# +$CMP LM25085SD +D 42V Constant On-Time PFET Buck Switching Controller, WSON-8 +K buck switching contoller +F http://www.ti.com/lit/ds/symlink/lm25085.pdf +$ENDCMP +# +$CMP LM2574HVM-12 +D 12V, 0.5A Step-Down Voltage Regulator, High Voltage Input, SO-8 +K Step-Down Voltage Regulator 12V 500mA HV +F http://www.ti.com/lit/ds/symlink/lm2574.pdf +$ENDCMP +# +$CMP LM2574HVM-15 +D 15V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, SO-8 +K Step-Down Voltage Regulator 15V 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVM-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, SO-8 +K Step-Down Voltage Regulator 3.3V 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVM-5 +D 5V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, SO-8 +K Step-Down Voltage Regulator 5V 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVM-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, SO-8 +K Step-Down Voltage Regulator Adjustable 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVN-12 +D 12V, 0.5A Step-Down Voltage Regulator, High Voltage Input, DIP-8 +K Step-Down Voltage Regulator 12V 500mA HV +F http://www.ti.com/lit/ds/symlink/lm2574.pdf +$ENDCMP +# +$CMP LM2574HVN-15 +D 15V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, DIP-8 +K Step-Down Voltage Regulator 15V 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVN-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, DIP-8 +K Step-Down Voltage Regulator 3.3V 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVN-5 +D 5V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, DIP-8 +K Step-Down Voltage Regulator 5V 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574HVN-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, DIP-8 +K Step-Down Voltage Regulator Adjustable 500mA HV +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574M-12 +D 12V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 12V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574M-15 +D 15V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 15V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574M-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 3.3V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574M-5 +D 5V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 5V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574M-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator Adjustable 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574N-12 +D 12V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 12V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574N-15 +D 15V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 15V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574N-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 3.3V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574N-5 +D 5V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 5V 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2574N-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator Adjustable 500mA +F http://www.national.com/ds/LM/LM2574.pdf +$ENDCMP +# +$CMP LM2575-12BT +D Fixed 12V 52kHz Simple 1A Buck Regulator, TO-220-5 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575-12BU +D Fixed 12V 52kHz Simple 1A Buck Regulator, TO-263 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575-3.3BT +D Fixed 3.3V 52kHz Simple 1A Buck Regulator, TO-220-5 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575-3.3BU +D Fixed 3.3V 52kHz Simple 1A Buck Regulator, TO-263 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575-5.0BT +D Fixed 5.0V 52kHz Simple 1A Buck Regulator, TO-220-5 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575-5.0BU +D Fixed 5.0V 52kHz Simple 1A Buck Regulator, TO-263 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575BT-ADJ +D Adjustable 52kHz Simple 1A Buck Regulator, TO-220-5 +K Buck regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2575BU-ADJ +D Adjustable 52kHz Simple 1A Buck Regulator, TO-263 +K Buck Regulator Switcher +F http://ww1.microchip.com/downloads/en/DeviceDoc/lm2575.pdf +$ENDCMP +# +$CMP LM2576HVS-12 +D 12V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-263 +K Step-Down Voltage Regulator 12V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVS-15 +D 15V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-263 +K Step-Down Voltage Regulator 15V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVS-3.3 +D 3.3V, 3A, SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-263 +K Step-Down Voltage Regulator 3.3V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVS-5 +D 5V 3A, SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-263 +K Step-Down Voltage Regulator 5V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVS-ADJ +D Adjustable Output Voltage, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-263 +K Step-Down Voltage Regulator 3A Adjustable High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVT-12 +D 12V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-220-5 +K Step-Down Voltage Regulator 12V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVT-15 +D 15V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-220-5 +K Step-Down Voltage Regulator 15V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVT-3.3 +D 3.3V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-220-5 +K Step-Down Voltage Regulator 3.3V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVT-5 +D 5V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-220-5 +K Step-Down Voltage Regulator 5V 3A High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576HVT-ADJ +D Adjustable Output Voltage, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, High Voltage Input, TO-220-5 +K Step-Down Voltage Regulator 3A Adjustable High Voltage +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576S-12 +D 12V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 12V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576S-15 +D 15V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 15V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576S-3.3 +D 3.3V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 3.3V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576S-5 +D 5V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 5V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576S-ADJ +D Adjustable Output Voltage, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 3A Adjustable +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576T-12 +D 12V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 12V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576T-15 +D 15V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 15V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576T-3.3 +D 3.3V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 3.3V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576T-5 +D 5V, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 5V 3A +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2576T-ADJ +D Adjustable Output Voltage, 3A SIMPLE SWITCHER® Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 3A Adjustable +F http://www.ti.com/lit/ds/symlink/lm2576.pdf +$ENDCMP +# +$CMP LM2578 +D 750mA, Switching Regulator, adjustable output voltage, DIP-8/SOIC-8 +K switching regulator +F http://www.ti.com/lit/ds/symlink/lm3578a.pdf +$ENDCMP +# +$CMP LM2594HVM-12 +D 12V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, SOIC-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVM-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, SOIC-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVM-5.0 +D 5.0V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, SOIC-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVM-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, SOIC-8 +K buck converter regulator step-down voltage simple switcher adjustable +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVN-12 +D 12V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, DIP-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVN-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, DIP-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVN-5.0 +D 5.0V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, DIP-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594HVN-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 60V, DIP-8 +K buck converter regulator step-down voltage simple switcher adjustable +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594M-12 +D 12V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, SOIC-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594M-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, SOIC-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594M-5.0 +D 5.0V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, SOIC-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594M-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, SOIC-8 +K buck converter regulator step-down voltage simple switcher adjustable +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594N-12 +D 12V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, DIP-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594N-3.3 +D 3.3V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, DIP-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594N-5.0 +D 5.0V, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, DIP-8 +K buck converter regulator step-down voltage simple switcher fixed +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2594N-ADJ +D Adjustable Output Voltage, 0.5A SIMPLE SWITCHER® Step-Down Voltage Regulator, Maximum VIN 45V, DIP-8 +K buck converter regulator step-down voltage simple switcher adjustable +F http://www.ti.com/lit/ds/symlink/lm2594.pdf +$ENDCMP +# +$CMP LM2595S-12 +D 12V, 1A Step-Down Voltage Regulator, TO-263-5 +K Step-Down Voltage Regulator 12V 1A +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595S-3.3 +D 3.3V, 1A Step-Down Voltage Regulator, TO-263-5 +K Step-Down Voltage Regulator 3.3V 1A +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595S-5 +D 5V, 1A Step-Down Voltage Regulator, TO-263-5 +K Step-Down Voltage Regulator 5V 1A +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595S-ADJ +D Adjustable Output 1A Step-Down Voltage Regulator, TO-263-5 +K Step-Down Voltage Regulator 1A Adjustable +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595T-12 +D 12V, 1A Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 12V 1A +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595T-3.3 +D 3.3V, 1A Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 3.3V 1A +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595T-5 +D 5V, 1A Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 5V 1A +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2595T-ADJ +D Adjustable Output 1A Step-Down Voltage Regulator, TO-220-5 +K Step-Down Voltage Regulator 1A Adjustable +F http://www.ti.com.cn/cn/lit/ds/symlink/lm2595.pdf +$ENDCMP +# +$CMP LM2596S-12 +D 12V 3A Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 12V 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596S-3.3 +D 3.3V 3A Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 3.3V 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596S-5 +D 5V 3A Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator 5V 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596S-ADJ +D Adjustable 3A Step-Down Voltage Regulator, TO-263 +K Step-Down Voltage Regulator Adjustable 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596T-12 +D 12V 3A 150kHz Step-Down Voltage Regulator, TO-220 +K Step-Down Voltage Regulator 12V 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596T-3.3 +D 3.3V 3A 150kHz Step-Down Voltage Regulator, TO-220 +K Step-Down Voltage Regulator 3.3V 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596T-5 +D 5V 3A 150kHz Step-Down Voltage Regulator, TO-220 +K Step-Down Voltage Regulator 5V 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2596T-ADJ +D Adjustable 3A 150kHz Step-Down Voltage Regulator, TO-220 +K Step-Down Voltage Regulator Adjustable 3A +F http://www.ti.com/lit/ds/symlink/lm2596.pdf +$ENDCMP +# +$CMP LM2611xMF +D 1.4MHz Cuk Converter, SOT-23-5 +K switched converter inverter PWM +F https://www.ti.com/lit/ds/symlink/lm2611.pdf +$ENDCMP +# +$CMP LM26480SQ +D Dual 1.5A 2MHz Buck Regulators and Dual 300mA LDOs, WQFN-24 +K Dual Buck Regulator LDO 2MHz 1.5A 300mA +F http://www.ti.com/lit/ds/symlink/lm26480.pdf +$ENDCMP +# +$CMP LM2672M-12 +D 12V, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 12V 1A +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672M-3.3 +D 3.3V, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 3.3V 1A +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672M-5.0 +D 5V, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 5V 1A +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672M-ADJ +D Adjustable Output Voltage, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672N-12 +D 12V, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 12V 1A +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672N-3.3 +D 3.3V, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 3.3V 1A +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672N-5.0 +D 5V, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 5V 1A +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2672N-ADJ +D Adjustable Output Voltage, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2672.pdf +$ENDCMP +# +$CMP LM2674M-12 +D 12V, 500mA Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 12V 500mA +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674M-3.3 +D 3.3V, 500mA Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674M-5.0 +D 5V, 500mA Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674M-ADJ +D Adjustable Output Voltage, 500mA Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674N-12 +D 12V, 500mA Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 12V 500mA +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674N-3.3 +D 3.3V, 500mA Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674N-5.0 +D 5V, 500mA Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2674N-ADJ +D Adjustable Output Voltage, 500mA Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2674.pdf +$ENDCMP +# +$CMP LM2675M-12 +D 12V, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 12V 1A +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675M-3.3 +D 3.3V, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 3.3V 1A +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675M-5 +D 5V, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator 5V 1A +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675M-ADJ +D Adjustable Output Voltage, 1A Step-Down Voltage Regulator, SO-8 +K Step-Down Voltage Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675N-12 +D 12V, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 12V 1A +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675N-3.3 +D 3.3V, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 3.3V 1A +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675N-5 +D 5V, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator 5V 1A +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM2675N-ADJ +D Adjustable Output Voltage, 1A Step-Down Voltage Regulator, DIP-8 +K Step-Down Voltage Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/lm2675.pdf +$ENDCMP +# +$CMP LM27313XMF +D 1A, 28Vout Boost Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm27313.pdf +$ENDCMP +# +$CMP LM2731XMF +D LM27313, 1.8A, 22Vout Boost Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2731.pdf +$ENDCMP +# +$CMP LM2731YMF +D LM27313, 1.8A, 22Vout Boost Voltage Regulator, 600KHz Frequency, +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2731.pdf +$ENDCMP +# +$CMP LM2733XMF +D LM27313, 1A, 40Vout Boost Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2733.pdf +$ENDCMP +# +$CMP LM2733YMF +D LM27313, 1A, 40Vout Boost Voltage Regulator, 600KHz Frequency, +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2733.pdf +$ENDCMP +# +$CMP LM2734X +D 1A Step-Down DC-DC Regulator, Adjustable Output Voltage, 1.6MHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2734.pdf +$ENDCMP +# +$CMP LM2734Y +D 1A Step-Down DC-DC Regulator, Adjustable Output Voltage, 550kHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2734.pdf +$ENDCMP +# +$CMP LM2735XMF +D LM27313, 2.1A, 24Vout Boost/FlybacK/SEPIC Voltage Regulator, 520kHz/1.6MHz Frequency, +K Miniature Step-Up Boost Flyback SEPIC Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2735.pdf +$ENDCMP +# +$CMP LM2840X +D 100mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 550kHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2842-q1.pdf +$ENDCMP +# +$CMP LM2840Y +D 100mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 1.25MHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2842-q1.pdf +$ENDCMP +# +$CMP LM2841X +D 300mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 550kHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2842-q1.pdf +$ENDCMP +# +$CMP LM2841Y +D 300mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 1.25MHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2842-q1.pdf +$ENDCMP +# +$CMP LM2842X +D 600mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 550kHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2842-q1.pdf +$ENDCMP +# +$CMP LM2842Y +D 600mA 42V Input Step-Down DC-DC Regulator, Adjustable Output Voltage, 1.25MHz, TSOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lm2842-q1.pdf +$ENDCMP +# +$CMP LM3150MH +D 42V Wide Vin synchronous Buck controller, HTSSOP-14 +K Buck step-down converter +F http://www.ti.com/lit/ds/symlink/lm3150.pdf +$ENDCMP +# +$CMP LM3407MY +D LED Lighting CC Floating Buck Switching Regulator, MSOP-8 +K LED Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm3407.pdf +$ENDCMP +# +$CMP LM3578 +D 750mA, Switching Regulator, adjustable output voltage, DIP-8/SOIC-8 +K switching regulator +F http://www.ti.com/lit/ds/symlink/lm3578a.pdf +$ENDCMP +# +$CMP LM3670MF +D Miniature Step-Down DC-DC Converter for Ultralow Voltage Circuits, 2.5V < Vin < 5.5V, adjustable output voltage, SOT-23-5 +K DC-DC buck conveter step down voltage regulator +F http://www.ti.com/lit/ds/symlink/lm3670.pdf +$ENDCMP +# +$CMP LM5001MA +D 1A, High Voltage (75V) Switch-Mode Regulator, Adjustable Output Voltage, SOIC-8 +K High-Voltage Switch-mode Regulator Flyback SEPIC Boost +F http://www.ti.com/lit/ds/symlink/lm5001.pdf +$ENDCMP +# +$CMP LM5006MM +D 600mA, 80V Constant On-Time Buck Switching Regulator, MSOP-10 +K Constant On-Time Buck Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5006.pdf +$ENDCMP +# +$CMP LM5007MM +D 700mA, High Voltage (80V) Step-Down Switching Regulator, Adjustable Output Voltage, MSOP-8 +K Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5007.pdf +$ENDCMP +# +$CMP LM5007SD +D 700mA, High Voltage (80V) Step-Down Switching Regulator, Adjustable Output Voltage, WSON-8 +K Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5007.pdf +$ENDCMP +# +$CMP LM5008MM +D 500mA, High Voltage (100V) Step-Down Switching Regulator, Adjustable Output Voltage, MSOP-8 +K Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5008.pdf +$ENDCMP +# +$CMP LM5008SD +D 500mA, High Voltage (100V) Step-Down Switching Regulator, Adjustable Output Voltage, WSON-8 +K Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5008.pdf +$ENDCMP +# +$CMP LM5009MM +D 150mA, High Voltage (80V) Step-Down Switching Regulator, Adjustable Output Voltage, MSOP-8 +K Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5009.pdf +$ENDCMP +# +$CMP LM5009SD +D 500mA, High Voltage (80V) Step-Down Switching Regulator, Adjustable Output Voltage, WSON-8 +K Step-Down Switching Regulator +F http://www.ti.com/lit/ds/symlink/lm5009.pdf +$ENDCMP +# +$CMP LM5017MR +D 600mA, 100V Step-Down Switching Regulator, PowerSO-8 +K Step-Down Switching Regulator High Voltage +F http://www.ti.com/lit/ds/symlink/lm5017.pdf +$ENDCMP +# +$CMP LM5017SD +D 600mA, 100V Step-Down Switching Regulator, WSON-8 +K Step-Down Switching Regulator High Voltage +F http://www.ti.com/lit/ds/symlink/lm5017.pdf +$ENDCMP +# +$CMP LM5022MM +D 60-V Low-Side Controller for Boost and SEPIC, MSOP-10 +K boost switching controller +F http://www.ti.com/lit/ds/symlink/lm5022.pdf +$ENDCMP +# +$CMP LM5088-1 +D Wide Input Range Non-Synchronous Buck Controller, Frequency Dithering, 75V, HTSSOP-16 +K step down buck high voltage +F http://www.ti.com/lit/ds/symlink/lm5088.pdf +$ENDCMP +# +$CMP LM5088-2 +D Wide Input Range Non-Synchronous Buck Controller, Hiccup Mode Restart, 75V, HTSSOP-16 +K step down buck high voltage +F http://www.ti.com/lit/ds/symlink/lm5088.pdf +$ENDCMP +# +$CMP LM5118MH +D Wide Voltage Range Buck-Boost Controller, HTSSOP-20 +K Buck Boost step-up step-down +F https://www.ti.com/lit/ds/symlink/lm5118.pdf +$ENDCMP +# +$CMP LM5161PWP +D 1A Synchronous Buck/Fly-buck Converter, 4.5V-100V input, adjustable output voltage, HTSSOP-14 +K step-down dc-dc buck regulator adjustable +F http://www.ti.com/lit/ds/symlink/lm5161.pdf +$ENDCMP +# +$CMP LM5164DDA +D 1A synchronous buck converter with ultra-low IQ, 6V - 100V input, adjustable output voltage, HSOP-8 +K step-down dc-dc buck regulator adjustable +F https://www.ti.com/lit/ds/symlink/lm5164.pdf?ts=1598311864250&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FLM5164%253FHQS%253DTI-null-null-octopart-df-pf-null-wwe +$ENDCMP +# +$CMP LM5165 +D 150mA Synchronous Buck Converter With Ultra-Low IQ, 3V-65V input, adjustable output voltage, DFN-10 +K step-down dc-dc buck regulator adjustable +F http://www.ti.com/lit/ds/symlink/lm5165.pdf +$ENDCMP +# +$CMP LM5165X +D 150mA Synchronous Buck Converter With Ultra-Low IQ, 3V-65V input, 5.0V fixed output voltage, DFN-10 +K step-down dc-dc buck regulator fixed 5V +F http://www.ti.com/lit/ds/symlink/lm5165.pdf +$ENDCMP +# +$CMP LM5165Y +D 150mA Synchronous Buck Converter With Ultra-Low IQ, 3V-65V input, 3.3V fixed output voltage, DFN-10 +K step-down dc-dc buck regulator fixed 3V3 +F http://www.ti.com/lit/ds/symlink/lm5165.pdf +$ENDCMP +# +$CMP LM5166 +D 500mA Synchronous Buck Converter With Ultra-Low IQ, 3V-65V input, adjustable output voltage, DFN-10 +K step-down dc-dc buck regulator adjustable +F http://www.ti.com/lit/ds/symlink/lm5166.pdf +$ENDCMP +# +$CMP LM5166X +D 500mA Synchronous Buck Converter With Ultra-Low IQ, 3V-65V input, 5.0V fixed output voltage, DFN-10 +K step-down dc-dc buck regulator fixed 5V +F http://www.ti.com/lit/ds/symlink/lm5166.pdf +$ENDCMP +# +$CMP LM5166Y +D 500mA Synchronous Buck Converter With Ultra-Low IQ, 3V-65V input, 3.3V fixed output voltage, DFN-10 +K step-down dc-dc buck regulator fixed 3V3 +F http://www.ti.com/lit/ds/symlink/lm5166.pdf +$ENDCMP +# +$CMP LM5175PWP +D 42-V wide Vin synchronous 4-switch Buck-Boost controller, HTSSOP-28 package +K Buck Boost step-up step-down +F http://www.ti.com/lit/ds/symlink/lm5175.pdf +$ENDCMP +# +$CMP LM5175RHF +D 42-V wide Vin synchronous 4-switch Buck-Boost controller, QFN-28 package +K Buck Boost step-up step-down +F http://www.ti.com/lit/ds/symlink/lm5175.pdf +$ENDCMP +# +$CMP LM5176PWP +D 55-V wide Vin synchronous 4-switch Buck-Boost controller, HTSSOP-28 package +K Buck Boost step-up step-down +F http://www.ti.com/lit/ds/symlink/lm5176.pdf +$ENDCMP +# +$CMP LM5176RHF +D 55-V wide Vin synchronous 4-switch Buck-Boost controller, QFN-28 package +K Buck Boost step-up step-down +F http://www.ti.com/lit/ds/symlink/lm5176.pdf +$ENDCMP +# +$CMP LMR10510XMF +D 1A, 5.5V Step-Down Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr10510.pdf +$ENDCMP +# +$CMP LMR10510YMF +D 1A, 5.5V Step-Down Voltage Regulator, 3MHz Frequency, SOT-23-5 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr10510.pdf +$ENDCMP +# +$CMP LMR10510YSD +D 1A, 5.5V Step-Down Voltage Regulator, 3MHz Frequency, WSON-6 +K Miniature Step-Down Buck Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr10510.pdf +$ENDCMP +# +$CMP LMR14206 +D Simple Switcher Buck Regulator, Vin=4.5-42V, Iout=600mA, Adjustable output voltage, SOT-23-6 package +K simple-switcher buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr14206.pdf +$ENDCMP +# +$CMP LMR16006YQ +D Simple Switcher Buck Regulator, Vin=4-40V, Iout=600mA, Adjustable output voltage, SOT-23-6 package +K simple-switcher buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr16006y-q1.pdf +$ENDCMP +# +$CMP LMR16006YQ3 +D Simple Switcher Buck Regulator, Vin=4-40V, Iout=600mA, Fixed 3.3V output voltage, SOT-23-6 package +K simple-switcher buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr16006y-q1.pdf +$ENDCMP +# +$CMP LMR16006YQ5 +D Simple Switcher Buck Regulator, Vin=4-40V, Iout=600mA, Fixed 5.0V output voltage, SOT-23-6 package +K simple-switcher buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr16006y-q1.pdf +$ENDCMP +# +$CMP LMR33610ADDAR +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=1A, F=400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33610.pdf +$ENDCMP +# +$CMP LMR33610BDDAR +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=1A, F=1400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33610.pdf +$ENDCMP +# +$CMP LMR33620ADDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=2A, F=400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33620.pdf +$ENDCMP +# +$CMP LMR33620BDDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=2A, F=1400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33620.pdf +$ENDCMP +# +$CMP LMR33620CDDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=2A, F=2100kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33640.pdf +$ENDCMP +# +$CMP LMR33630ADDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=3A, F=400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33630.pdf +$ENDCMP +# +$CMP LMR33630BDDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=3A, F=1400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33630.pdf +$ENDCMP +# +$CMP LMR33630CDDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=3A, F=2100kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33630.pdf +$ENDCMP +# +$CMP LMR33640ADDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=4A, F=400kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33640.pdf +$ENDCMP +# +$CMP LMR33640DDDA +D Simple Switcher Synchronous Buck Regulator, Vin=3.8-36V, Iout=4A, F=1000kHz, Adjustable output voltage, HSOP-8 +K simple-switcher synchronous buck step-down voltage-regulator +F http://www.ti.com/lit/ds/symlink/lmr33640.pdf +$ENDCMP +# +$CMP LMR62014XMF +D 1.4A, 20Vout Step-Up Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr62014.pdf +$ENDCMP +# +$CMP LMR62421XMF +D 2.1A, 24Vout Boost/SEPIC Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Up Boost SEPIC Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr62421.pdf +$ENDCMP +# +$CMP LMR62421XSD +D 2.1A, 24Vout Step-Up Voltage Regulator, 1.6MHz Frequency, WSON-6 +K Miniature Step-Up Boost SEPIC Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr62421.pdf +$ENDCMP +# +$CMP LMR64010XMF +D 1A, 40Vout Step-Up Voltage Regulator, 1.6MHz Frequency, SOT-23-5 +K Miniature Step-Up Boost Voltage Regulator +F http://www.ti.com/lit/ds/symlink/lmr64010.pdf +$ENDCMP +# +$CMP LMZ13608 +D 8A Adjustable Step-Down DC/DC Power Module in 15x15mm, Texas NDY0011A +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/snvs710i/snvs710i.pdf +$ENDCMP +# +$CMP LMZM23600 +D 0.5A Adjustable Step-Down DC/DC Power Module in 3.8x3mm, MicroSIP-10 +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/symlink/lmzm23600.pdf +$ENDCMP +# +$CMP LMZM23600V3 +D 0.5A 3.3V Step-Down DC/DC Power Module in 3.8x3mm, MicroSIP-10 +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/symlink/lmzm23600.pdf +$ENDCMP +# +$CMP LMZM23600V5 +D 0.5A 5V Step-Down DC/DC Power Module in 3.8x3mm, MicroSIP-10 +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/symlink/lmzm23600.pdf +$ENDCMP +# +$CMP LMZM23601 +D 1A Adjustable Step-Down DC/DC Power Module in 3.8x3mm, MicroSIP-10 +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/symlink/lmzm23601.pdf +$ENDCMP +# +$CMP LMZM23601V3 +D 1A 3.3V Step-Down DC/DC Power Module in 3.8x3mm, MicroSIP-10 +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/symlink/lmzm23601.pdf +$ENDCMP +# +$CMP LMZM23601V5 +D 1A 5V Step-Down DC/DC Power Module in 3.8x3mm, MicroSIP-10 +K Step-Down DC/DC Module +F http://www.ti.com/lit/ds/symlink/lmzm23601.pdf +$ENDCMP +# +$CMP LNK302D +D LinkSwitch-TN Family, 80mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK302G +D LinkSwitch-TN Family, 80mA Output Current, SMD-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK302P +D LinkSwitch-TN Family, 80mA Output Current, DIP-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK304D +D LinkSwitch-TN Family, 170mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK304G +D LinkSwitch-TN Family, 170mA Output Current, SMD-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK304P +D LinkSwitch-TN Family, 170mA Output Current, DIP-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK305D +D LinkSwitch-TN Family, 280mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK305G +D LinkSwitch-TN Family, 280mA Output Current, SMD-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK305P +D LinkSwitch-TN Family, 280mA Output Current, DIP-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK306D +D LinkSwitch-TN Family, 360mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK306G +D LinkSwitch-TN Family, 360mA Output Current, SMD-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK306P +D LinkSwitch-TN Family, 360mA Output Current, DIP-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk302_304-306.pdf +$ENDCMP +# +$CMP LNK3202D +D LinkSwitch-TN2 Family, 80mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3202G +D LinkSwitch-TN2 Family, 80mA Output Current, SMD-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3202P +D LinkSwitch-TN2 Family, 80mA Output Current, DIP-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3204D +D LinkSwitch-TN2 Family, 170mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3204G +D LinkSwitch-TN2 Family, 170mA Output Current, SMD-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3204P +D LinkSwitch-TN2 Family, 170mA Output Current, DIP-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3205D +D LinkSwitch-TN Family, 270mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3205G +D LinkSwitch-TN Family, 270mA Output Current, SMD-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3205P +D LinkSwitch-TN Family, 270mA Output Current, DIP-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3206D +D LinkSwitch-TN2 Family, 360mA Output Current, SO-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3206G +D LinkSwitch-TN2 Family, 360mA Output Current, SMD-8C +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK3206P +D LinkSwitch-TN2 Family, 360mA Output Current, DIP-8B +K Lowest Component Count, Energy-Efficient Off-Line Switcher IC +F https://ac-dc.power.com/sites/default/files/product-docs/LinkSwitch-TN2_family_datasheet.pdf +$ENDCMP +# +$CMP LNK362D +D LinkSwitch-XT Family, 2.6W Output Power, SO-8C +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK362G +D LinkSwitch-XT Family, 2.6W Output Power, SMD-8B +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK362P +D LinkSwitch-XT Family, 2.6W Output Power, DIP-8B +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK363D +D LinkSwitch-XT Family, 4.7W Output Power, SO-8C +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK363G +D LinkSwitch-XT Family, 4.7W Output Power, SMD-8B +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK363P +D LinkSwitch-XT Family, 4.7W Output Power, DIP-8B +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK364D +D LinkSwitch-XT Family, 6W Output Power, SO-8C +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK364G +D LinkSwitch-XT Family, 6W Output Power, SMD-8B +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK364P +D LinkSwitch-XT Family, 6W Output Power, DIP-8B +K Energy Effi cient, Low Power Off-Line Switcher IC +F http://www.powerint.com/sites/default/files/product-docs/lnk362-364.pdf +$ENDCMP +# +$CMP LNK403EG +D LinkSwitch-PH Family, 12W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK403LG +D LinkSwitch-PH Family, 12W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK404EG +D LinkSwitch-PH Family, 15W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK404LG +D LinkSwitch-PH Family, 15W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK405EG +D LinkSwitch-PH Family, 18W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK405LG +D LinkSwitch-PH Family, 18W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK406EG +D LinkSwitch-PH Family, 22W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK406LG +D LinkSwitch-PH Family, 22W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK407EG +D LinkSwitch-PH Family, 25W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK407LG +D LinkSwitch-PH Family, 25W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK408EG +D LinkSwitch-PH Family, 35W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK408LG +D LinkSwitch-PH Family, 35W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK409EG +D LinkSwitch-PH Family, 50W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK409LG +D LinkSwitch-PH Family, 50W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK410EG +D LinkSwitch-PH Family, 78W Output Power, eSIP-7C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK410LG +D LinkSwitch-PH Family, 78W Output Power, eSIP-7F +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK413EG +D LinkSwitch-PH Family, 12W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK413LG +D LinkSwitch-PH Family, 12W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK414EG +D LinkSwitch-PH Family, 15W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK414LG +D LinkSwitch-PH Family, 15W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK415EG +D LinkSwitch-PH Family, 18W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK415LG +D LinkSwitch-PH Family, 18W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK416EG +D LinkSwitch-PH Family, 22W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK416LG +D LinkSwitch-PH Family, 22W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK417EG +D LinkSwitch-PH Family, 25W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK417LG +D LinkSwitch-PH Family, 25W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK418EG +D LinkSwitch-PH Family, 35W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK418LG +D LinkSwitch-PH Family, 35W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK419EG +D LinkSwitch-PH Family, 50W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK419LG +D LinkSwitch-PH Family, 50W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK420EG +D LinkSwitch-PH Family, 78W Output Power, eSIP-7C +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK420LG +D LinkSwitch-PH Family, 78W Output Power, eSIP-7F +K LED Driver IC, Single-Stage PFC and Primary-Side Constant Current Control +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf +$ENDCMP +# +$CMP LNK454D +D LinkSwitch-PL Family, 3W Output Power, SO-8C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK456D +D LinkSwitch-PL Family, 6W Output Power, SO-8C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK457D +D LinkSwitch-PL Family, 8W Output Power, SO-8C +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK457K +D LinkSwitch-PL Family, 8W Output Power, eSOP-12B +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK457V +D LinkSwitch-PL Family, 8W Output Power, eDIP-12B +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK458K +D LinkSwitch-PL Family, 11.5W Output Power, eSOP-12B +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK458V +D LinkSwitch-PL Family, 8W Output Power, eDIP-12B +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK460K +D LinkSwitch-PL Family, 16W Output Power, eSOP-12B +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK460V +D LinkSwitch-PL Family, 8W Output Power, eDIP-12B +K LED Driver IC with TRIAC Dimming, Single-Stage PFC and Constant Current Control for Non-Isolated Applications +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf +$ENDCMP +# +$CMP LNK562D +D LinkSwitch-LP Family, 1.9W Output Power, SO-8C +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK562G +D LinkSwitch-LP Family, 1.9W Output Power, SMD-8B +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK562P +D LinkSwitch-LP Family, 1.9W Output Power, DIP-8B +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK563D +D LinkSwitch-LP Family, 2.5W Output Power, SO-8C +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK563G +D LinkSwitch-LP Family, 2.5W Output Power, SMD-8B +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK563P +D LinkSwitch-LP Family, 2.5W Output Power, DIP-8B +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK564D +D LinkSwitch-LP Family, 3W Output Power, SO-8C +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK564G +D LinkSwitch-LP Family, 3W Output Power, SMD-8B +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK564P +D LinkSwitch-LP Family, 3W Output Power, DIP-8B +K Energy Efficient Off-Line Switcher IC for Linear Transformer Replacement +F http://www.powerint.com/sites/default/files/product-docs/linklp_family_datasheet.pdf +$ENDCMP +# +$CMP LNK603DG +D LinkSwitch-II Family, 3.3W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK603PG +D LinkSwitch-II Family, 3.3W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK604DG +D LinkSwitch-II Family, 4.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK604PG +D LinkSwitch-II Family, 4.1W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK605DG +D LinkSwitch-II Family, 5.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK605PG +D LinkSwitch-II Family, 5.1W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK606DG +D LinkSwitch-II Family, 6.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK606GG +D LinkSwitch-II Family, 6.1W Output Power, SMD-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK606PG +D LinkSwitch-II Family, 6.1W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK613DG +D LinkSwitch-II Family, 3.3W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK613PG +D LinkSwitch-II Family, 3.3W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK614DG +D LinkSwitch-II Family, 4.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK614PG +D LinkSwitch-II Family, 4.1W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK615DG +D LinkSwitch-II Family, 5.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK615PG +D LinkSwitch-II Family, 5.1W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK616DG +D LinkSwitch-II Family, 6.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK616GG +D LinkSwitch-II Family, 6.1W Output Power, SMD-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK616PG +D LinkSwitch-II Family, 6.1W Output Power, DIP-8C +K Energy-Efficient, Accurate CV/CC Switcher for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_family_datasheet.pdf +$ENDCMP +# +$CMP LNK623DG +D LinkSwitch-CV Family, 6W Output Power, SO-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK623PG +D LinkSwitch-CV Family, 6W Output Power, DIP-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK624DG +D LinkSwitch-CV Family, 6.5W Output Power, SO-8C +K Energy-Effi cient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK624PG +D LinkSwitch-CV Family, 6.5W Output Power, DIP-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK625DG +D LinkSwitch-CV Family, 8W Output Power, SO-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK625PG +D LinkSwitch-CV Family, 8W Output Power, DIP-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK626DG +D LinkSwitch-CV Family, 10W Output Power, SO-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK626PG +D LinkSwitch-CV Family, 10W Output Power, DIP-8C +K Energy-Efficient, Off-line Switcher with Accurate Primary-side Constant-Voltage Control +F http://www.powerint.com/sites/default/files/product-docs/linkcv_family_datasheet.pdf +$ENDCMP +# +$CMP LNK632DG +D LinkSwitch-II Family, 3.1W Output Power, SO-8C +K Energy-Efficient, Accurate CV Switcher With CC Control for Adapters and Chargers +F http://www.powerint.com/sites/default/files/product-docs/linkswitch-ii_632DG_datasheet.pdf +$ENDCMP +# +$CMP LT1073CN +D Micropower DC/DC Converter Adjustable Output Voltage, DIP-8 +K Micropower DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1073fa.pdf +$ENDCMP +# +$CMP LT1073CN-12 +D Micropower DC/DC Converter, Fixed 12V Output Voltage, DIP-8 +K Micropower DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1073fa.pdf +$ENDCMP +# +$CMP LT1073CN-5 +D Micropower DC/DC Converter, Fixed 5V Output Voltage, DIP-8 +K Micropower DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1073fa.pdf +$ENDCMP +# +$CMP LT1073CS +D Micropower DC/DC Converter Adjustable Output Voltage, SO-8 +K Micropower DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1073fa.pdf +$ENDCMP +# +$CMP LT1073CS-12 +D Micropower DC/DC Converter, Fixed 12V Output Voltage, SO-8 +K Micropower DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1073fa.pdf +$ENDCMP +# +$CMP LT1073CS-5 +D Micropower DC/DC Converter, Fixed 5V Output Voltage, SO-8 +K Micropower DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1073fa.pdf +$ENDCMP +# +$CMP LT1108CN +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, adjustable output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1108.pdf +$ENDCMP +# +$CMP LT1108CN-12 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, fixed 12V output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1108.pdf +$ENDCMP +# +$CMP LT1108CN-5 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, fixed 5V output voltage, DIP-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1108.pdf +$ENDCMP +# +$CMP LT1108CS +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, adjustable output voltage, SO-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1108.pdf +$ENDCMP +# +$CMP LT1108CS-12 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, fixed 12V output voltage, SO-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1108.pdf +$ENDCMP +# +$CMP LT1108CS-5 +D Micropower DC-DC conveter, step-up or step-down operation, 2V-30Vin, fixed 5V output voltage, SO-8 +K switching buck boost converter step-down step-up +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1108.pdf +$ENDCMP +# +$CMP LT1301 +D Micropower High Efficiency 5V/12V Step-Up DC/DC Converter for Flash Memory, DIP-8/SOIC-8 +K 5v 12v dc converter boost +F https://www.analog.com/media/en/technical-documentation/data-sheets/lt1301.pdf +$ENDCMP +# +$CMP LT1307BCMS8 +D Single Cell Micropower 600kHz PWM DC/DC Converter, 10µA Quiescent Current, MSOP-8 +K Micropower PWM DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1307fa.pdf +$ENDCMP +# +$CMP LT1307BCS8 +D Single Cell Micropower 600kHz PWM DC/DC Converter, 10µA Quiescent Current, SO-8 +K Micropower PWM DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1307fa.pdf +$ENDCMP +# +$CMP LT1307CMS8 +D Single Cell Micropower 600kHz PWM DC/DC Converter, 50µA Quiescent Current, MSOP-8 +K Micropower PWM DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1307fa.pdf +$ENDCMP +# +$CMP LT1307CN8 +D Single Cell Micropower 600kHz PWM DC/DC Converter, 50µA Quiescent Current, DIP-8 +K Micropower PWM DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1307fa.pdf +$ENDCMP +# +$CMP LT1307CS8 +D Single Cell Micropower 600kHz PWM DC/DC Converter, 50µA Quiescent Current, SO-8 +K Micropower PWM DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/1307fa.pdf +$ENDCMP +# +$CMP LT1372CN8 +D 1.5A High Efficiency Switching Regulators, 500kHz, 35V Switch Voltage, Adjustable Output Voltage, DIP-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/13727fbs.pdf +$ENDCMP +# +$CMP LT1372CS8 +D 1.5A High Efficiency Switching Regulators, 500kHz, 35V Switch Voltage, Adjustable Output Voltage, SO-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/13727fbs.pdf +$ENDCMP +# +$CMP LT1372HVCN8 +D 1.5A High Efficiency Switching Regulators, 500kHz, 42V Switch Voltage, Adjustable Output Voltage, DIP-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/13727fbs.pdf +$ENDCMP +# +$CMP LT1372HVCS8 +D 1.5A High Efficiency Switching Regulators, 500kHz, 42V Switch Voltage, Adjustable Output Voltage, SO-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/13727fbs.pdf +$ENDCMP +# +$CMP LT1373CN8 +D 1.5A Low Supply Current High Efficiency Switching Regulators, 250kHz, 35V Switch Voltage, Adjustable Output Voltage, DIP-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/1373fbs.pdf +$ENDCMP +# +$CMP LT1373CS8 +D 1.5A Low Supply Current High Efficiency Switching Regulators, 250kHz, 35V Switch Voltage, Adjustable Output Voltage, SO-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/1373fbs.pdf +$ENDCMP +# +$CMP LT1373HVCN8 +D 1.5A Low Supply Current High Efficiency Switching Regulators, 250kHz, 42V Switch Voltage, Adjustable Output Voltage, DIP-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/1373fbs.pdf +$ENDCMP +# +$CMP LT1373HVCS8 +D 1.5A Low Supply Current High Efficiency Switching Regulators, 250kHz, 42V Switch Voltage, Adjustable Output Voltage, SO-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/1373fbs.pdf +$ENDCMP +# +$CMP LT1377CN8 +D 1.5A High Efficiency Switching Regulators, 1MHz, 35V Switch Voltage, Adjustable Output Voltage, DIP-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/13727fbs.pdf +$ENDCMP +# +$CMP LT1377CS8 +D 1.5A High Efficiency Switching Regulators, 1MHz, 35V Switch Voltage, Adjustable Output Voltage, SO-8 +K Switching Regulator Adjustable +F https://www.analog.com/media/en/technical-documentation/data-sheets/13727fbs.pdf +$ENDCMP +# +$CMP LT1945 +D Dual Micropower DC/DC Converter with Positive and Negative Outputs, MSOP-10 +K switched voltage converter regulator inverter double shutdown positive negative +F https://www.analog.com/media/en/technical-documentation/data-sheets/1945fa.pdf +$ENDCMP +# +$CMP LT3430 +D 3A High Voltage 200kHz Step-Down Switching Regulator, TSSOP-16 +K Step-Down Switching Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/34301fa.pdf +$ENDCMP +# +$CMP LT3430-1 +D 3A High Voltage 100kHz Step-Down Switching Regulator, TSSOP-16 +K Step-Down Switching Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/34301fa.pdf +$ENDCMP +# +$CMP LT3439 +D 1A Slew Rate Controlled Ultralow Noise Isolated DC/DC Transformer Driver, TSSOP-16 +K Isolated DC/DC Transformer Driver +F https://www.analog.com/media/en/technical-documentation/data-sheets/3439fs.pdf +$ENDCMP +# +$CMP LT3471 +D Dual 1.3A, 1.2MHz Boost/Inverter, DFN-10 +K dc/dc converter boost inverter +F https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf +$ENDCMP +# +$CMP LT3472 +D Boost and Inverting DC/DC Converter for CCD Bias, DFN-10 +K DC/DC converter CCD Bias Boost +F https://www.analog.com/media/en/technical-documentation/data-sheets/3472f.pdf +$ENDCMP +# +$CMP LT3514xUFD +D Triple Step-Down Switching Regulator with 100% Duty Cycle Operation, QFN-28 +K triple step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3514fa.pdf +$ENDCMP +# +$CMP LT3580xDD +D Boost/Inverting DC/DC Converter with 2A Switch, Soft-Start, and Synchronization, DFN-8 +K boost inverting dc-dc +F https://www.analog.com/media/en/technical-documentation/data-sheets/3580fg.pdf +$ENDCMP +# +$CMP LT3580xMS8E +D Boost/Inverting DC/DC Converter with 2A Switch, Soft-Start, and Synchronization, MSOP-8 +K boost inverting dc-dc +F https://www.analog.com/media/en/technical-documentation/data-sheets/3580fg.pdf +$ENDCMP +# +$CMP LT3748xMS +D 100V Isolated Flyback Controller, MSOP-16 +K isolated flyback controller +F https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf +$ENDCMP +# +$CMP LT3757AEDD +D Boost, flyback, SEPIC and inverting regulator, improved load transient performance, DFN-10 +K Boost flyback SEPIC inverting DC/DC regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/3757Afe.pdf +$ENDCMP +# +$CMP LT3757AEMSE +D Boost, flyback, SEPIC and inverting regulator, improved load transient performance, MSOP-10 +K Boost flyback SEPIC inverting DC/DC regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/3757Afe.pdf +$ENDCMP +# +$CMP LT3757EDD +D Boost, flyback, SEPIC and inverting regulator. DFN-10 +K Boost flyback SEPIC inverting DC/DC regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/3757Afe.pdf +$ENDCMP +# +$CMP LT3757EMSE +D Boost, flyback, SEPIC and inverting regulator. MSOP-10 +K Boost flyback SEPIC inverting DC/DC regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/3757Afe.pdf +$ENDCMP +# +$CMP LT8303 +D 100VIN Micropower Isolated Flyback Converter with 150V/450mA Switch, TSOT-23-5 +K Flyback switcher +F https://www.analog.com/media/en/technical-documentation/data-sheets/8303fa.pdf +$ENDCMP +# +$CMP LT8610 +D 42V, 2.5A Synchronous Step-Down Regulator with 2.5uA Quiescent Current, MSOP-16 +K high efficiency speed synchronous monolithic buck step-down switching regulator 42V 2.5A +F https://www.analog.com/media/en/technical-documentation/data-sheets/8610fa.pdf +$ENDCMP +# +$CMP LT8610AC +D 42V, 3.5A Synchronous Step-Down Regulator with 2.5uA Quiescent Current, 0.8V Feedback Voltage, 3.0V Minimum Vin, MSOP-16 +K high efficiency speed synchronous monolithic buck step-down switching regulator 42V 3.5A lower feedback voltage minimum vin +F https://www.analog.com/media/en/technical-documentation/data-sheets/8610acfa.pdf +$ENDCMP +# +$CMP LT8610AC-1 +D 42V, 3.5A Synchronous Step-Down Regulator with 2.5uA Quiescent Current, Internal Compensation for Improved Transient, Soft-Start at Dropout and Brownout, MSOP-16 +K high efficiency speed synchronous monolithic buck step-down switching regulator 42V 3.5A lower feedback voltage minimum vin internal compensation soft-start +F https://www.analog.com/media/en/technical-documentation/data-sheets/8610acfa.pdf +$ENDCMP +# +$CMP LTC1436A +D High Efficiency Low Noise Synchronous Step-Down Switching Regulators, SSOP-24 +K buck controller 36V +F https://www.analog.com/media/en/technical-documentation/data-sheets/14367afb.pdf +$ENDCMP +# +$CMP LTC1436A-PLL +D High Efficiency Low Noise Synchronous Step-Down Switching Regulators, SSOP-24 +K buck controller 36V +F https://www.analog.com/media/en/technical-documentation/data-sheets/14367afb.pdf +$ENDCMP +# +$CMP LTC1437A +D High Efficiency Low Noise Synchronous Step-Down Switching Regulators, SSOP-28 +K buck controller 36V +F https://www.analog.com/media/en/technical-documentation/data-sheets/14367afb.pdf +$ENDCMP +# +$CMP LTC1878EMS8 +D High Efficiency Monolithic Synchronous Step-Down Regulator, MSOP-8 +K Synchronous Step-Down Regulator +F https://www.analog.com/media/en/technical-documentation/data-sheets/1878f.pdf +$ENDCMP +# +$CMP LTC3105xDD +D 400mA Step-Up DC/DC Converter with Maximum Power Point Control and 250mV Start-Up, DFN-10 +K Solar MPPT Maximum Power Point Control Converter Step-Up +F https://www.analog.com/media/en/technical-documentation/data-sheets/3105fb.pdf +$ENDCMP +# +$CMP LTC3105xMS +D 400mA Step-Up DC/DC Converter with Maximum Power Point Control and 250mV Start-Up, MSOP-12 +K Solar MPPT Maximum Power Point Control Converter Step-Up +F https://www.analog.com/media/en/technical-documentation/data-sheets/3105fb.pdf +$ENDCMP +# +$CMP LTC3406AES5 +D 600mA Synchronous Step-Down Regulator, 1.5MHz, Fixed 1.2V Output Voltage, Low Ripple Burst Mode, ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406afa.pdf +$ENDCMP +# +$CMP LTC3406B-2ES5 +D 600mA Synchronous Step-Down Regulator, 2.25MHz, Adjustable Output Voltage,ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406b2fs.pdf +$ENDCMP +# +$CMP LTC3406BES5-1.2 +D 600mA Synchronous Step-Down Regulator, 1.5MHz, Fixed 1.2V Output Voltage, Burst Mode Disabled, ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406b12fs.pdf +$ENDCMP +# +$CMP LTC3406ES5 +D 600mA Synchronous Step-Down Regulator, 1.5MHz, Adjustable Output Voltage, Burst Mode, ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406b12fs.pdf +$ENDCMP +# +$CMP LTC3406ES5-1.2 +D 600mA Synchronous Step-Down Regulator, 1.5MHz, Fixed 1.2V Output Voltage, Burst Mode, ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406b12fs.pdf +$ENDCMP +# +$CMP LTC3406ES5-1.5 +D 600mA Synchronous Step-Down Regulator, 1.5MHz, Fixed 1.5V Output Voltage, Burst Mode, ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406b12fs.pdf +$ENDCMP +# +$CMP LTC3406ES5-1.8 +D 600mA Synchronous Step-Down Regulator, 1.5MHz, Fixed 1.8V Output Voltage, Burst Mode, ThinSOT-23 +K Regulator step-down +F https://www.analog.com/media/en/technical-documentation/data-sheets/3406b12fs.pdf +$ENDCMP +# +$CMP LTC3429 +D 600mA, 500kHz Micropower Synchronous Boost Converter with Output Disconnect, TSOT-23-6 +K boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3429fa.pdf +$ENDCMP +# +$CMP LTC3429B +D 600mA, 500kHz Micropower Synchronous Boost Converter with Output Disconnect, Continuous Switching at Light Loads, TSOT-23-6 +K boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3429fa.pdf +$ENDCMP +# +$CMP LTC3442 +D Micropower Synchronous Buck-Boost DC/DC Converter with Automatic Burst Mode Operation, DFN-12 +K Micropower Synchronous Buck-Boost DC/DC Converter +F https://www.analog.com/media/en/technical-documentation/data-sheets/3442fb.pdf +$ENDCMP +# +$CMP LTC3525 +D 400mA Micropower Synchronous Step-Up DC/DC Converter with Output Disconnect, SC-70-6 +K boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3525fc.pdf +$ENDCMP +# +$CMP LTC3525-3 +D Fixed 3V, 400mA Micropower Synchronous Step-Up DC/DC Converter with Output Disconnect, SC-70-6 +K fixed boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3525fc.pdf +$ENDCMP +# +$CMP LTC3525-3.3 +D Fixed 3V3, 400mA Micropower Synchronous Step-Up DC/DC Converter with Output Disconnect, SC-70-6 +K fixed boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3525fc.pdf +$ENDCMP +# +$CMP LTC3525-5 +D Fixed 5V, 400mA Micropower Synchronous Step-Up DC/DC Converter with Output Disconnect, SC-70-6 +K fixed boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3525fc.pdf +$ENDCMP +# +$CMP LTC3525D-3.3 +D Fixed 3V3, 400mA Micropower Synchronous Step-Up DC/DC Converter with Pass Through Mode, SC-70-6 +K fixed boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3525d33fb.pdf +$ENDCMP +# +$CMP LTC3525L-3 +D Fixed 3V, 400mA Micropower Synchronous Step-Up DC/DC Converter with Output Disconnect, SC-70-6 +K fixed boost step-up DC/DC synchronous +F https://www.analog.com/media/en/technical-documentation/data-sheets/3525laf.pdf +$ENDCMP +# +$CMP LTC3630ADHC +D High efficiency 76V 500mA synchronous step-down converter, DFN-16 +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/3630afc.pdf +$ENDCMP +# +$CMP LTC3630AMSE +D High efficiency 76V 500mA synchronous step-down converter, MSOP-16(12) +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/3630afc.pdf +$ENDCMP +# +$CMP LTC3630DHC +D 500mA High efficiency 65V synchronous step-down converter, DFN-16 +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/3630fd.pdf +$ENDCMP +# +$CMP LTC3630MSE +D 500mA High efficiency 65V synchronous step-down converter, MSOP-16(12) +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/3630fd.pdf +$ENDCMP +# +$CMP LTC3638 +D 250mA High efficiency 140V step-down converter, MSOP-16(12) +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/3638fa.pdf +$ENDCMP +# +$CMP LTC3639 +D 100mA High efficiency 150V syncrhonous step-down converter, MSOP-16(12) +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/3639fd.pdf +$ENDCMP +# +$CMP LTC3886 +D 60V dual output buck output with digital power system management, UKG52(46) +K step down switch manager I2C telemetry fault current sense +F https://www.analog.com/media/en/technical-documentation/data-sheets/LTC3886-3886-1.pdf +$ENDCMP +# +$CMP LTC7138 +D 400mA High efficiency 140V step-down converter, MSOP-16(12) +K buck dc-dc switcher switching +F https://www.analog.com/media/en/technical-documentation/data-sheets/7138f.pdf +$ENDCMP +# +$CMP LTM4637xV +D 20A DC/DC µModule Step-Down Regulator, LGA-133 +K uModule DCDC +F https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +$ENDCMP +# +$CMP LTM4637xY +D 20A DC/DC µModule Step-Down Regulator, BGA-133 +K uModule DCDC +F https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf +$ENDCMP +# +$CMP LTM8063 +D 40VIN, 2A Silent Switcher µModule Regulator, BGA-28 +K uModule DCDC +F https://www.analog.com/media/en/technical-documentation/data-sheets/8063fa.pdf +$ENDCMP +# +$CMP MAX15062A +D 60V, 300mA, synchronous step-down dc-dc converter, 3.3V fixed output voltage, DFN-8 +K step-down dc-dc switching regulator +F http://datasheets.maximintegrated.com/en/ds/MAX15062.pdf +$ENDCMP +# +$CMP MAX15062B +D 60V, 300mA, synchronous step-down dc-dc converter, 5.0V fixed output voltage, DFN-8 +K step-down dc-dc switching regulator +F http://datasheets.maximintegrated.com/en/ds/MAX15062.pdf +$ENDCMP +# +$CMP MAX15062C +D 60V, 300mA, synchronous step-down dc-dc converter, adjustable output voltage, DFN-8 +K step-down dc-dc switching regulator +F http://datasheets.maximintegrated.com/en/ds/MAX15062.pdf +$ENDCMP +# +$CMP MAX17501AxTB +D 4.5V–60Vin, 500mA, High-Efficiency, 3.3V Synchronous Step-Down DC-DC Converter, PFM Mode, TDFN-10 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17501.pdf +$ENDCMP +# +$CMP MAX17501BxTB +D 4.5V–60Vin, 500mA, High-Efficiency, 5V Synchronous Step-Down DC-DC Converter, PFM Mode, DFN-10 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17501.pdf +$ENDCMP +# +$CMP MAX17501ExTB +D 4.5V–60Vin, 500mA, High-Efficiency, 3.3V Synchronous Step-Down DC-DC Converter, PWM Mode, DFN-10 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17501.pdf +$ENDCMP +# +$CMP MAX17501FxTB +D 4.5V–60Vin, 500mA, High-Efficiency, 5V Synchronous Step-Down DC-DC Converter, PWM Mode, DFN-10 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17501.pdf +$ENDCMP +# +$CMP MAX17501GxTB +D 4.5V–60Vin, 500mA, High-Efficiency, Adjustable Synchronous Step-Down DC-DC Converter, 600KHz, TDFN-10 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17501.pdf +$ENDCMP +# +$CMP MAX17501HxTB +D 4.5V–60Vin, 500mA, High-Efficiency, Adjustable Synchronous Step-Down DC-DC Converter, 300KHz, DFN-10 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17501.pdf +$ENDCMP +# +$CMP MAX17572 +D 4.5V–60V, 1A, High-Efficiency, Synchronous Step-Down DC-DC Converter with Internal Compensation, DFN-12 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17572.pdf +$ENDCMP +# +$CMP MAX17574 +D 4.5V–60V, 3A, High-Efficiency, Synchronous Step-Down DC-DC Converter with Internal Compensation, QFN-24 +K Step-down dc-dc switching regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17574.pdf +$ENDCMP +# +$CMP MAX17620ATA +D 2.7-5.5V, 600mA, Synchronous Step-Down DC-DC Converter with Integrated MOSFETs, DFN-8 +K switching-regulator +F https://datasheets.maximintegrated.com/en/ds/MAX17620.pdf +$ENDCMP +# +$CMP MAX5035AUPA +D 1A, High-Efficiency Step-Down DC-DC Converter, 3.3V fixed output voltage, Vin 76V, PDIP-8 +K 3.3V 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035AUSA +D 1A, High-Efficiency Step-Down DC-DC Converter, 3.3V fixed output voltage, Vin 76V, SO-8 +K 3.3V 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035BUPA +D 1A, High-Efficiency Step-Down DC-DC Converter, 5V fixed output voltage, Vin 76V, PDIP-8 +K 5V 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035BUSA +D 1A, High-Efficiency Step-Down DC-DC Converter, 5V fixed output voltage, Vin 76V, SO-8 +K 5V 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035CUPA +D 1A, High-Efficiency Step-Down DC-DC Converter, 12V fixed output voltage, Vin 76V, PDIP-8 +K 12V 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035CUSA +D 1A, High-Efficiency Step-Down DC-DC Converter, 12V fixed output voltage, Vin 76V, SO-8 +K 12V 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035DUPA +D 1A, High-Efficiency Step-Down DC-DC Converter, adjustable output voltage, Vin 76V, PDIP-8 +K Adjustable 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035DUSA +D 1A, High-Efficiency Step-Down DC-DC Converter, adjustable output voltage, Vin 76V, SO-8 +K Adjustable 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX5035EUSA +D 1A, High-Efficiency Step-Down DC-DC Converter, adjustable output voltage, Vin 76V, SO-8 +K Adjustable 1A Step-Down Converter 76V +F http://datasheets.maximintegrated.com/en/ds/MAX5035.pdf +$ENDCMP +# +$CMP MAX777L +D 210mA, Low voltage input, step-up DC-DC converter, 5V output voltage, DIP-8/SO-8 +K switching regulator boost step-up dc-dc +F https://kanga.gerbilator.org/ICs/MAX777.pdf +$ENDCMP +# +$CMP MAX778L +D 210mA, Low voltage input, step-up DC-DC converter, 3V/3.3V output voltage, DIP-8/SO-8 +K switching regulator boost step-up dc-dc +F https://kanga.gerbilator.org/ICs/MAX777.pdf +$ENDCMP +# +$CMP MAX779L +D 210mA, Low voltage input, step-up DC-DC converter, adjustable output voltage, DIP-8/SO-8 +K switching regulator boost step-up dc-dc +F https://kanga.gerbilator.org/ICs/MAX777.pdf +$ENDCMP +# +$CMP MC33063AD +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, SO-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP MC33063AP +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, DIP-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP MC33063MNTXG +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, DFN-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP MC34063AD +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, SO-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP MC34063AP +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, DIP-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP MCP16301 +D 1A, 4.0 to 30V Input, High Voltage Input integrated switch step-down regulator, SOT-23-6 +K switching buck converter power-supply voltage regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005004D.pdf +$ENDCMP +# +$CMP MCP16301H +D 1A, 4.7 to 36V Input, High Voltage Input integrated switch step-down regulator, SOT-23-6 +K switching buck converter power-supply voltage regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005004D.pdf +$ENDCMP +# +$CMP MCP16311MNY +D 1A Output Voltage, 30V Input, integrated switch step-down regulator, PFM/PWM modulation, DFN-8 +K switching buck converter power-supply voltage regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005255B.pdf +$ENDCMP +# +$CMP MCP16311MS +D 30V Input, 1A Output Voltage, integrated switch step-down regulator, PFM/PWM modulation, MSOP-8 +K switching buck converter power-supply voltage regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005255B.pdf +$ENDCMP +# +$CMP MCP16312MNY +D 1A Output Voltage, 30V Input, integrated switch step-down regulator, PWM modulation, DFN-8 +K switching buck converter power-supply voltage regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005255B.pdf +$ENDCMP +# +$CMP MCP16312MS +D 1A Output Voltage, 30V Input, integrated switch step-down regulator with, modulation, MSOP-8 +K switching buck converter power-supply voltage regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005255B.pdf +$ENDCMP +# +$CMP MCP16331CH +D High-Voltage Input Integrated Switch Step-Down Regulator, VDD +4.4V to 50V, Out +2.0V to +24V, SOT-23 +K High-Voltage Input Integrated Switch Step-Down Regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005308C.pdf +$ENDCMP +# +$CMP MCP16331MN +D High-Voltage Input Integrated Switch Step-Down Regulator, VDD +4.4V to 50V, Out +2.0V to +24V, TDFN-8 +K High-Voltage Input Integrated Switch Step-Down Regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/20005308C.pdf +$ENDCMP +# +$CMP MCP1640BCH +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM Only True Disconnect, SOT-23 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640BMC +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM Only True Disconnect, DFN-8 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640CCH +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM/PFM Input to Output Bypass, SOT-23 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640CH +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM/PFM True Disconnect, SOT-23 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640CMC +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM/PFM Input to Output Bypass, DFN-8 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640DCH +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM Only Input to Output Bypass, SOT-23 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640DMC +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM Only Input to Output Bypass, DFN-8 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1640MC +D Synchronous Boost Regulator, Adjustable Output 2.0V-5.5V, PWM/PFM True Disconnect, DFN-8 +K Step-Up Boost DC-DC Regulator Adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/20002234D.pdf +$ENDCMP +# +$CMP MCP1650 +D 750 kHz Boost Controller, 3.3-100V output voltage, 5W, MSOP-8 +K boost controller +F http://ww1.microchip.com/downloads/en/DeviceDoc/21876B.pdf +$ENDCMP +# +$CMP MCP1651 +D 750 kHz Boost Controller, 3.3-100V output voltage, 5W, Low Battery Detection, MSOP-8 +K boost controller +F http://ww1.microchip.com/downloads/en/DeviceDoc/21876B.pdf +$ENDCMP +# +$CMP MCP1652 +D 750 kHz Boost Controller, 3.3-100V output voltage, 5W, Power Good Detection, MSOP-8 +K boost controller +F http://ww1.microchip.com/downloads/en/DeviceDoc/21876B.pdf +$ENDCMP +# +$CMP MCP1653 +D 750 kHz Boost Controller, 3.3-100V output voltage, 5W, Low Battery Detection, Power Good Detection, MSOP-10 +K boost controller +F http://ww1.microchip.com/downloads/en/DeviceDoc/21876B.pdf +$ENDCMP +# +$CMP MIC2177 +D 2.5A Synchronous Buck Regulator, Adjustable Output Voltage, SO-20W +K Synchronous Buck Regulator adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2177.pdf +$ENDCMP +# +$CMP MIC2177-3.3 +D 2.5A Synchronous Buck Regulator, 3.3V Fixed Output Voltage, SO-20W +K Synchronous Buck Regulator fixed +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2177.pdf +$ENDCMP +# +$CMP MIC2177-5.0 +D 2.5A Synchronous Buck Regulator, 5.0V Fixed Output Voltage, SO-20W +K Synchronous Buck Regulator fixed +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2177.pdf +$ENDCMP +# +$CMP MIC2178 +D 2.5A Synchronous Buck Regulator, 4.5-16.5V Input Voltage, Adjustable Output Voltage, SO-20W +K Synchronous Buck Regulator adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2177.pdf +$ENDCMP +# +$CMP MIC2178-3.3 +D 2.5A Synchronous Buck Regulator, 4.5-16.5V Input Voltage, 3.3V Fixed Output Voltage, SO-20W +K Synchronous Buck Regulator fixed +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2177.pdf +$ENDCMP +# +$CMP MIC2178-5.0 +D 2.5A Synchronous Buck Regulator, 4.5-16.5V Input Voltage, 5.0V Fixed Output Voltage, SO-20W +K Synchronous Buck Regulator fixed +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2177.pdf +$ENDCMP +# +$CMP MIC2290 +D 1.2 Mhz PWM Boost Regulator with Internal Schotty Diode, MLF-8 +K boost switching voltage converter regulator +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf +$ENDCMP +# +$CMP MIC4684 +D 2A, 200kHz SuperSwitcher Buck Regulator, 4-30V Input Voltage, Adjustable Output Voltage, SO-8 +K regulator switching adjustable +F https://ww1.microchip.com/downloads/en/DeviceDoc/MIC4684.pdf +$ENDCMP +# +$CMP MIC4690 +D 1A, 500kHz SuperSwitcher Buck Regulator, 4-34V Input Voltage, Adjustable Output Voltage, SO-8 +K regulator switching adjustable +F http://ww1.microchip.com/downloads/en/DeviceDoc/mic4690.pdf +$ENDCMP +# +$CMP MP1470 +D High-Efficiency, 2A, 16V, 500kHz Synchronous, Step-Down Converter, TSOT-23-6 +K buck converter +F https://www.monolithicpower.com/pub/media/document/MP1470_r1.02.pdf +$ENDCMP +# +$CMP MP171GJ +D 60mA Non-Isolated Off-Line Regulator, 700V Input Voltage, Adjustable Output Voltage, TSOT-23-5 +K regulator switching adjustable +F https://www.monolithicpower.com/pub/media/document/m/p/mp171_r1.01.pdf +$ENDCMP +# +$CMP MP171GS +D 60mA Non-Isolated Off-Line Regulator, 700V Input Voltage, Adjustable Output Voltage, SOIC-8 +K regulator switching adjustable +F https://www.monolithicpower.com/pub/media/document/m/p/mp171_r1.01.pdf +$ENDCMP +# +$CMP MT3608 +D High Efficiency 1.2MHz 2A Step Up Converter, 2-24V Vin, 28V Vout, 4A current limit, 1.2MHz, SOT23-6 +K Step-Up Boost DC-DC Regulator Adjustable +F https://www.olimex.com/Products/Breadboarding/BB-PWR-3608/resources/MT3608.pdf +$ENDCMP +# +$CMP MUN12AD01-SH +D DC/DC Switching Regulator, Power Module, 1A, Cyntec MUN12AD01 +K DC/DC Switching Regulator Power Module 1A Cyntec MUN12AD01 +F http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD01-SH_Datasheet.pdf +$ENDCMP +# +$CMP MUN12AD03-SH +D DC/DC Switching Regulator, Power Module, 3A, Cyntec MUN12AD03 +K DC/DC Switching Regulator Power Module 3A Cyntec MUN12AD03 +F http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD03-SH_Datasheet.pdf +$ENDCMP +# +$CMP NCP1070P065 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 65kHz, 22Ohm Rds(on), 250mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1070P100 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 100kHz, 22Ohm Rds(on), 250mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1070P130 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 130kHz, 22Ohm Rds(on), 250mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1070STAT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 65kHz, 22Ohm Rds(on), 250mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1070STBT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 100kHz, 22Ohm Rds(on), 250mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1070STCT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 130kHz, 22Ohm Rds(on), 250mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1071P065 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 65kHz, 22Ohm Rds(on), 350mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1071P100 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 100kHz, 22Ohm Rds(on), 350mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1071P130 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 130kHz, 22Ohm Rds(on), 350mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1071STAT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 65kHz, 22Ohm Rds(on), 350mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1071STBT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 100kHz, 22Ohm Rds(on), 350mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1071STCT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 14W/7.75W, 230V/85-265V, 130kHz, 22Ohm Rds(on), 350mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1072P065 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 65kHz, 11Ohm Rds(on), 250mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1072P100 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 100kHz, 11Ohm Rds(on), 250mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1072P130 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 130kHz, 11Ohm Rds(on), 250mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1072STAT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 65kHz, 11Ohm Rds(on), 250mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1072STBT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 100kHz, 11Ohm Rds(on), 250mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1072STCT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 130kHz, 11Ohm Rds(on), 250mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1075P065 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 65kHz, 11Ohm Rds(on), 450mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1075P100 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 100kHz, 11Ohm Rds(on), 450mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1075P130 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 130kHz, 11Ohm Rds(on), 450mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1075STAT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 65kHz, 11Ohm Rds(on), 450mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1075STBT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 100kHz, 11Ohm Rds(on), 450mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1075STCT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 19W/10W, 230V/85-265V, 130kHz, 11Ohm Rds(on), 450mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1076P065 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 65kHz, 4.7Ohm Rds(on), 650mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1076P100 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 100kHz, 4.7Ohm Rds(on), 650mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1076P130 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 130kHz, 4.7Ohm Rds(on), 650mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1076STAT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 65kHz, 4.7Ohm Rds(on), 650mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1076STBT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 100kHz, 4.7Ohm Rds(on), 650mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1076STCT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 130kHz, 4.7Ohm Rds(on), 650mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1077P065 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 65kHz, 4.7Ohm Rds(on), 800mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1077P100 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 100kHz, 4.7Ohm Rds(on), 800mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1077P130 +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 130kHz, 4.7Ohm Rds(on), 800mA Ipk, DIP-7 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1077STAT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 65kHz, 4.7Ohm Rds(on), 800mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1077STBT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 100kHz, 4.7Ohm Rds(on), 800mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1077STCT +D High-Voltage Switcher for Low Power Offline SMPS, 700V Vds, 25W/15W, 230V/85-265V, 130kHz, 4.7Ohm Rds(on), 800mA Ipk, SOT-223 +K SMPS Converter +F http://www.onsemi.com/pub/Collateral/NCP1070-D.PDF +$ENDCMP +# +$CMP NCP1529A +D 1.7MHz, 1A, High Efficiency, Low Ripple, Adjustable Output Voltage Step-down Converter, SOT-23-5 +K Step-Down Buck DC-DC Regulator Adjustable +F https://www.onsemi.com/pub/Collateral/NCP1529-D.PDF +$ENDCMP +# +$CMP NCV33063AVD +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, SO-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP NID30S24-05 +D 2.5A/12.5W Step Down Converter Module, fixed 5V Output Voltage, 250kHz, 20-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +$ENDCMP +# +$CMP NID30S24-12 +D 2.5A/30W Step Down Converter Module, fixed 12V Output Voltage, 250kHz, 20-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +$ENDCMP +# +$CMP NID30S24-15 +D 2.5A/30W Step Down Converter Module, fixed 15V Output Voltage, 250kHz, 20-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +$ENDCMP +# +$CMP NID30S48-24 +D 1.25A/30W Step Down Converter Module, fixed 24V Output Voltage, 250kHz, 30-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 +$ENDCMP +# +$CMP NID60S24-05 +D 4A/20W Step Down Converter Module, fixed 5V Output Voltage, 250kHz, 20-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/78ddf876-a86c-4a52-8a41-4ee24dd9913d +$ENDCMP +# +$CMP NID60S24-12 +D 4A/48W Step Down Converter Module, fixed 12V Output Voltage, 250kHz, 20-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/78ddf876-a86c-4a52-8a41-4ee24dd9913d +$ENDCMP +# +$CMP NID60S24-15 +D 4A/60W Step Down Converter Module, fixed 15V Output Voltage, 250kHz, 20-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/78ddf876-a86c-4a52-8a41-4ee24dd9913d +$ENDCMP +# +$CMP NID60S48-24 +D 2.5A/60W Step Down Converter Module, fixed 24V Output Voltage, 250kHz, 30-53V Input Voltage +K Step-Down Converter Module DC/DC +F http://www.meanwell.com/78ddf876-a86c-4a52-8a41-4ee24dd9913d +$ENDCMP +# +$CMP NMA0505DC +D +/-100mA Isolated 1W Dual output DC/DC Converter, 5V Input Voltage, +/-5V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0505SC +D +/-100mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-5V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0509DC +D +/-55mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-9V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0509SC +D +/-55mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-9V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0512DC +D +/-42mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-12V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0512SC +D +/-42mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-12V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0515DC +D +/-33mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-15V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA0515SC +D +/-33mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-15V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1205DC +D +/-100mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-5V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1205SC +D +/-100mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-5V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1209DC +D +/-55mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-9V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1209SC +D +/-55mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-9V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1212DC +D +/-42mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-12V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1212SC +D +/-42mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-12V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1215DC +D +/-33mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-15V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1215SC +D +/-33mA Isolated 1W Dual output DC/DC Converter Module, 12V Input Voltage, +/-15V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1505DC +D +/-100mA Isolated 1W Dual output DC/DC Converter Module, 15V Input Voltage, +/-5V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1505SC +D +/-100mA Isolated 1W Dual output DC/DC Converter Module, 15V Input Voltage, +/-5V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1512DC +D +/-42mA Isolated 1W Dual output DC/DC Converter Module, 15V Input Voltage, +/-12V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1512SC +D +/-42mA Isolated 1W Dual output DC/DC Converter Module, 15V Input Voltage, +/-12V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1515DC +D +/-33mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-15V Output Voltage, DIP Package +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NMA1515SC +D +/-33mA Isolated 1W Dual output DC/DC Converter Module, 5V Input Voltage, +/-15V Output Voltage, SIP3 +K Murata isolated isolation dc-dc converter +F http://power.murata.com/data/power/ncl/kdc_nma.pdf +$ENDCMP +# +$CMP NXE1S0303MC +D 1W 3.3V to 3.3V 303mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe1.pdf +$ENDCMP +# +$CMP NXE1S0305MC +D 1W 3.3V to 5V 200mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe1.pdf +$ENDCMP +# +$CMP NXE1S0505MC +D 1W 5V to 5V 200mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe1.pdf +$ENDCMP +# +$CMP NXE2S0505MC +D 2W 5V to 5V 400mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe2.pdf +$ENDCMP +# +$CMP NXE2S1205MC +D 2W 12V to 5V 400mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe2.pdf +$ENDCMP +# +$CMP NXE2S1212MC +D 2W 12V to 12V 400mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe2.pdf +$ENDCMP +# +$CMP NXE2S1215MC +D 2W 12V to 15V 400mA DC-DC Converter with 3kV isolation +K isolated isolation dc-dc converter transformer +F http://power.murata.com/data/power/ncl/kdc_nxe2.pdf +$ENDCMP +# +$CMP PAM2301CAAB120 +D 800mA, Step-Down DC/DC-Converter, 1.2V Fixed Output Voltage, 1.5MHz, TSOT-23-5 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/products_inactive_data/PAM2301.pdf +$ENDCMP +# +$CMP PAM2301CAAB330 +D 800mA, Step-Down DC/DC-Converter, 3.3V Fixed Output Voltage, 1.5MHz, TSOT-23-5 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/products_inactive_data/PAM2301.pdf +$ENDCMP +# +$CMP PAM2301CAABADJ +D 800mA, Step-Down DC/DC-Converter, Adjustable Output Voltage, 1.5MHz, TSOT-23-5 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/products_inactive_data/PAM2301.pdf +$ENDCMP +# +$CMP PAM2305AAB120 +D 1A, Step-Down DC/DC-Converter, 1.2V Fixed Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305AAB150 +D 1A, Step-Down DC/DC-Converter, 1.5V Fixed Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305AAB180 +D 1A, Step-Down DC/DC-Converter, 1.8V Fixed Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305AAB250 +D 1A, Step-Down DC/DC-Converter, 2.5V Fixed Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305AAB280 +D 1A, Step-Down DC/DC-Converter, 2.8V Fixed Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305AAB330 +D 1A, Step-Down DC/DC-Converter, 3.3V Fixed Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305AABADJ +D 1A, Step-Down DC/DC-Converter, Adjustable Output Voltage, 1.5MHz, TSOT-23 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJE120 +D 1A, Step-Down DC/DC-Converter, 1.2V Fixed Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJE150 +D 1A, Step-Down DC/DC-Converter, 1.5V Fixed Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJE180 +D 1A, Step-Down DC/DC-Converter, 1.8V Fixed Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJE250 +D 1A, Step-Down DC/DC-Converter, 2.5V Fixed Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJE280 +D 1A, Step-Down DC/DC-Converter, 2.8V Fixed Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJE330 +D 1A, Step-Down DC/DC-Converter, 3.3V Fixed Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305BJEADJ +D 1A, Step-Down DC/DC-Converter, Adjustable Output Voltage, 1.5MHz, QFN-16 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGF120 +D 1A, Step-Down DC/DC-Converter, 1.2V Fixed Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGF150 +D 1A, Step-Down DC/DC-Converter, 1.5V Fixed Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGF180 +D 1A, Step-Down DC/DC-Converter, 1.8V Fixed Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGF250 +D 1A, Step-Down DC/DC-Converter, 2.5V Fixed Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGF280 +D 1A, Step-Down DC/DC-Converter, 2.8V Fixed Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGF330 +D 1A, Step-Down DC/DC-Converter, 3.3V Fixed Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2305CGFADJ +D 1A, Step-Down DC/DC-Converter, Adjustable Output Voltage, 1.5MHz, DFN-6 +K Voltage regulator switching buck fixed output analog +F https://www.diodes.com/assets/Datasheets/PAM2305.pdf +$ENDCMP +# +$CMP PAM2306AYPAA +D 1A, Dual Step-Down DC/DC-Converter, Out1 ADJ, Out2 ADJ, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 ADJ, Out2 ADJ +F https://www.diodes.com/assets/Datasheets/PAM2306.pdf +$ENDCMP +# +$CMP PAM2306AYPBB +D 1A, Dual Step-Down DC/DC-Converter, Out1 1.2V, Out2 1.2V, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 1.2V, Out2 1.2V +F https://www.diodes.com/assets/Datasheets/PAM2306.pdf +$ENDCMP +# +$CMP PAM2306AYPBK +D 1A, Dual Step-Down DC/DC-Converter, Out1 1.2V, Out2 3.3V, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 1.5V, Out2 3.3V +F https://www.diodes.com/assets/Datasheets/PAM2306.pdf +$ENDCMP +# +$CMP PAM2306AYPCB +D 1A, Dual Step-Down DC/DC-Converter, Out1 1.5V, Out2 1.2V, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 1.5V, Out2 1.2V +F https://www.diodes.com/assets/Datasheets/PAM2306.pdf +$ENDCMP +# +$CMP PAM2306AYPKB +D 1A, Dual Step-Down DC/DC-Converter, Out1 3.3V, Out2 1.2V, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 3.3V, Out2 1.2V +F https://www.diodes.com/assets/Datasheets/PAM2306.pdf +$ENDCMP +# +$CMP PAM2306AYPKE +D 1A, Dual Step-Down DC/DC-Converter, Out1 3.3V, Out2 1.8V, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 3.3V, Out2 1.8V +F https://www.diodes.com/assets/Datasheets/PAM2306.pdf +$ENDCMP +# +$CMP PAM2306DYPAA +D 1A, Dual Step-Down DC/DC-Converter, Out1 ADJ, Out2 ADJ, 1.5MHz, W-DFN3x3 +K STEP-DOWN Dual channel 1A Out1 ADJ, Out2 ADJ +F https://www.diodes.com/assets/Datasheets/PAM2306D.pdf +$ENDCMP +# +$CMP R-781.5-0.5 +D 500mA Step-Down DC/DC-Regulator, 4.75-30V input, 1.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-781.8-0.5 +D 500mA Step-Down DC/DC-Regulator, 4.75-32V input, 1.8V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-781.8-1.0 +D 1A Step-Down DC/DC-Regulator, 4.75-18V input, 1.8V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-1.0.pdf +$ENDCMP +# +$CMP R-7812-0.5 +D 500mA Step-Down DC/DC-Regulator, 15-32V input, 12V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-7815-0.5 +D 500mA Step-Down DC/DC-Regulator, 18-32V input, 15V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-782.5-0.5 +D 500mA Step-Down DC/DC-Regulator, 4.75-18V input, 2.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-782.5-1.0 +D 1A Step-Down DC/DC-Regulator, 4.75-18V input, 2.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-1.0.pdf +$ENDCMP +# +$CMP R-783.3-0.5 +D 500mA Step-Down DC/DC-Regulator, 4.75-18V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-783.3-1.0 +D 1A Step-Down DC/DC-Regulator, 4.75-18V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-1.0.pdf +$ENDCMP +# +$CMP R-785.0-0.5 +D 500mA Step-Down DC/DC-Regulator, 6.5-18V input, 5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-785.0-1.0 +D 1A Step-Down DC/DC-Regulator, 6.5-18V input, 5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-1.0.pdf +$ENDCMP +# +$CMP R-786.5-0.5 +D 500mA Step-Down DC/DC-Regulator, 8-32V input, 6.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78xx-0.5.pdf +$ENDCMP +# +$CMP R-78B1.2-2.0 +D 2A Step-Down DC/DC-Regulator, 4.75-32V input, 1.2V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B1.5-2.0 +D 2A Step-Down DC/DC-Regulator, 4.75-32V input, 1.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B1.8-2.0 +D 2A Step-Down DC/DC-Regulator, 4.75-32V input, 1.8V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B12-2.0 +D 2A Step-Down DC/DC-Regulator, 15-32V input, 12V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B15-2.0 +D 2A Step-Down DC/DC-Regulator, 18-32V input, 15V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B2.5-2.0 +D 2A Step-Down DC/DC-Regulator, 4.75-32V input, 2.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B3.3-2.0 +D 2A Step-Down DC/DC-Regulator, 4.75-32V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B5.0-2.0 +D 2A Step-Down DC/DC-Regulator, 6.5-32V input, 5.0V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78B9.0-2.0 +D 2A Step-Down DC/DC-Regulator, 11-32V input, 9.0V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf +$ENDCMP +# +$CMP R-78C1.8-1.0 +D 1A Step-Down DC/DC-Regulator, 5-42V input, 1.8V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Cxx-1.0.pdf +$ENDCMP +# +$CMP R-78C12-1.0 +D 1A Step-Down DC/DC-Regulator, 15-42V input, 12V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Cxx-1.0.pdf +$ENDCMP +# +$CMP R-78C15-1.0 +D 1A Step-Down DC/DC-Regulator, 18-42V input, 15V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Cxx-1.0.pdf +$ENDCMP +# +$CMP R-78C3.3-1.0 +D 1A Step-Down DC/DC-Regulator, 6-42V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Cxx-1.0.pdf +$ENDCMP +# +$CMP R-78C5.0-1.0 +D 1A Step-Down DC/DC-Regulator, 7-42V input, 5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Cxx-1.0.pdf +$ENDCMP +# +$CMP R-78C9.0-1.0 +D 1A Step-Down DC/DC-Regulator, 12-42V input, 9V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Cxx-1.0.pdf +$ENDCMP +# +$CMP R-78E12-0.5 +D 500mA Step-Down DC/DC-Regulator, 15-28V input, 12V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +$ENDCMP +# +$CMP R-78E15-0.5 +D 500mA Step-Down DC/DC-Regulator, 18-28V input, 15V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +$ENDCMP +# +$CMP R-78E3.3-0.5 +D 500mA Step-Down DC/DC-Regulator, 6-28V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +$ENDCMP +# +$CMP R-78E3.3-1.0 +D 1A Step-Down DC/DC-Regulator, 6-28V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-1.0.pdf +$ENDCMP +# +$CMP R-78E5.0-0.5 +D 500mA Step-Down DC/DC-Regulator, 7-28V input, 5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +$ENDCMP +# +$CMP R-78E5.0-1.0 +D 1A Step-Down DC/DC-Regulator, 7-28V input, 5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-1.0.pdf +$ENDCMP +# +$CMP R-78E9.0-0.5 +D 500mA Step-Down DC/DC-Regulator, 12-28V input, 9V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf +$ENDCMP +# +$CMP R-78HB12-0.5 +D 500mA Step-Down DC/DC-Regulator, 17-72V input, 12V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78HB15-0.5 +D 500mA Step-Down DC/DC-Regulator, 20-72V input, 15V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78HB24-0.3 +D 300mA Step-Down DC/DC-Regulator, 36-72V input, 24V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78HB3.3-0.5 +D 500mA Step-Down DC/DC-Regulator, 9-72V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78HB5.0-0.5 +D 500mA Step-Down DC/DC-Regulator, 9-72V input, 5.0V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78HB6.5-0.5 +D 500mA Step-Down DC/DC-Regulator, 9-72V input, 6.5V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78HB9.0-0.5 +D 500mA Step-Down DC/DC-Regulator, 14-72V input, 9.0V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP3 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf +$ENDCMP +# +$CMP R-78S3.3-0.1 +D 100mA Step-Up DC/DC-Regulator, 0.65-3.15V input, 3.3V fixed Output Voltage, LM78xx replacement, -40°C to +85°C, SIP4 +K dc-dc recom Step-Down DC/DC-Regulator +F https://www.recom-power.com/pdf/Innoline/R-78Sxx-0.1.pdf +$ENDCMP +# +$CMP SC33063AD +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, SO-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP SC34063AP +D 1.5A, step-up/down/inverting switching regulator, 3-40V Vin, 100kHz, DIP-8 +K smps buck boost inverting +F http://www.onsemi.com/pub_link/Collateral/MC34063A-D.PDF +$ENDCMP +# +$CMP SC4503TSK +D 1.9A, 1.3MHz Step-Up DC/DC Converter, 2.5V-20V output voltage, TSOT23 +K 1.9A 1.3MHz Step-Up DC/DC +F https://www.semtech.com/uploads/documents/sc4503.pdf +$ENDCMP +# +$CMP ST1S10PHR +D 3A monolithic synchronous step-down regulator, Adjustable Output Voltage, 2.5-18V Input Voltage, 900kHz, PowerSO-8 +K DC/DC Buck Conwerter 3A Low Voltage Input +F http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00169322.pdf +$ENDCMP +# +$CMP ST1S10PUR +D 3A monolithic synchronous step-down regulator, Adjustable Output Voltage, 2.5-18V Input Voltage, 900kHz, DFN-8 +K DC/DC Buck Conwerter 3A Low Voltage Input +F http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00169322.pdf +$ENDCMP +# +$CMP ST1S14PHR +D 3A step-down switching regulator, Adjustable Output Voltage, 5.5-48V Input Voltage, 850kHz, PowerSO-8 +K DC/DC Buck Conwerter 3A +F http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00285678.pdf +$ENDCMP +# +$CMP TDN_5-0910WISM +D Input 4.5 to 13.2V, Output 3.3V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-0911WISM +D Input 4.5 to 13.2V, Output 5.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-0912WISM +D Input 4.5 to 13.2V, Output 12.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-0913WISM +D Input 4.5 to 13.2V, Output 15.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-0915WISM +D Input 4.5 to 13.2V, Output 24.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-0919WISM +D Input 4.5 to 13.2V, Output 9.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-2410WISM +D Input 9.0 to 36.0V, Output 3.3V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-2411WISM +D Input 9.0 to 36.0V, Output 5.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-2412WISM +D Input 9.0 to 36.0V, Output 12.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-2413WISM +D Input 9.0 to 36.0V, Output 15.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-2415WISM +D Input 9.0 to 36.0V, Output 24.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-2419WISM +D Input 9.0 to 36.0V, Output 9.0V +K dcdc traco 5WW +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-4810WISM +D Input 18.0 to 75.0V, Output 3.3V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-4811WISM +D Input 18.0 to 75.0V, Output 5.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-4812WISM +D Input 18.0 to 75.0V, Output 12.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-4813WISM +D Input 18.0 to 75.0V, Output 15.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-4815WISM +D Input 18.0 to 75.0V, Output 24.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TDN_5-4819WISM +D Input 18.0 to 75.0V, Output 9.0V +K dcdc traco 5W +F https://assets.tracopower.com/20190626081517/TDN5WISM/documents/tdn5wism-datasheet.pdf +$ENDCMP +# +$CMP TL497 +D 500mA step up/step down/inverting switching voltage regulator, SIP-14/SOIC-14(W) +K buck regulator +F http://www.ti.com/lit/ds/symlink/tl497a.pdf +$ENDCMP +# +$CMP TL497A +D 500mA step up/step down switching regulator +K buck regulator +F http://www.ti.com/lit/ds/symlink/tl497a.pdf +$ENDCMP +# +$CMP TLV61046ADB +D 28-V Output Voltage Boost Converter with Power Diode and Isolation Switch, SOT-23-6 +K Step-Up DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tlv61046a.pdf +$ENDCMP +# +$CMP TLV62080DSGx +D High-efficiency Step-down Converter +K Synchronous Buck +F http://www.ti.com/lit/ds/symlink/tlv62080.pdf +$ENDCMP +# +$CMP TLV62084ADSGx +D High-efficiency Step-down Converter +K Synchronous Buck +F http://www.ti.com/lit/ds/symlink/tlv62080.pdf +$ENDCMP +# +$CMP TLV62084DSGx +D High-efficiency Step-down Converter +K Synchronous Buck +F http://www.ti.com/lit/ds/symlink/tlv62080.pdf +$ENDCMP +# +$CMP TLV62095RGTx +D High efficiency step-down converter +K Synchronous Buck +F http://www.ti.com/lit/ds/symlink/tlv62095.pdf +$ENDCMP +# +$CMP TLV62568DBV +D High Efficiency Synchronous Buck Converter, Adjustable Output 0.6V-5.5V, 1A, SOT-23-5 +K Step-Down Buck DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tlv62568.pdf +$ENDCMP +# +$CMP TLV62568DDC +D High Efficiency Synchronous Buck Converter, Adjustable Output 0.6V-5.5V, 1A, SOT-23-6 +K Step-Down Buck DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tlv62568.pdf +$ENDCMP +# +$CMP TLV62568DRL +D High Efficiency Synchronous Buck Converter, Adjustable Output 0.6V-5.5V, 1A, SOT-563-6 +K Step-Down Buck DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tlv62568.pdf +$ENDCMP +# +$CMP TLV62569DBV +D High Efficiency Synchronous Buck Converter, Adjustable Output 0.6V-5.5V, 2A, SOT-23-5 +K Step-Down Buck DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tlv62569.pdf +$ENDCMP +# +$CMP TLV62569DDC +D High Efficiency Synchronous Buck Converter, Adjustable Output 0.6V-5.5V, 2A, SOT-23-6 +K Step-Down Buck DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tlv62569.pdf +$ENDCMP +# +$CMP TLV62569DRL +D High Efficiency Synchronous Buck Converter, Adjustable Output 0.6V-5.5V, 2A, SOT-563-6 +K Step-Down Buck DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tlv62569.pdf +$ENDCMP +# +$CMP TMR_1-0511 +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 5V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0511SM +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 5V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0512 +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0512SM +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0513 +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0513SM +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0515 +D 42mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, 24V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0522 +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, +/-12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0522SM +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, +/-12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0523 +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, +/-15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-0523SM +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 4.5V-9V input, +/-15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1211 +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 5V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1211SM +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 5V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1212 +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1212SM +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1213 +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1213SM +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1215 +D 42mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, 24V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1222 +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, +/-12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1222SM +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, +/-12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1223 +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, +/-15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-1223SM +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 9V-18V input, +/-15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2411 +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 5V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2411SM +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 5V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2412 +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2412SM +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2413 +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2413SM +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2415 +D 42mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, 24V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2422 +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, +/-12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2422SM +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, +/-12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2423 +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, +/-15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-2423SM +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 18V-36V input, +/-15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4811 +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 5V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4811SM +D 200mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 5V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4812 +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4812SM +D 83mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4813 +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4813SM +D 67mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4815 +D 42mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, 24V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4822 +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, +/-12V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4822SM +D +/-42mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, +/-12V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4823 +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, +/-15V fixed Output Voltage, SIP-6 +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1/documents/tmr1-datasheet.pdf +$ENDCMP +# +$CMP TMR_1-4823SM +D +/-33mA Regulated 1W DC/DC converter with 1.5kV isolation, 36V-75V input, +/-15V fixed Output Voltage, SMD +K Murata isolated isolation dc-dc converter transformer +F http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf +$ENDCMP +# +$CMP TNY263G +D TinySwitch-II Family, 4.7W Output Power, SMD-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY263P +D TinySwitch-II Family, 4.7W Output Power, DIP-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY264G +D TinySwitch-II Family, 6W Output Power, SMD-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY264P +D TinySwitch-II Family, 6W Output Power, DIP-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY265G +D TinySwitch-II Family, 7.5W Output Power, SMD-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY265P +D TinySwitch-II Family, 7.5W Output Power, DIP-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY266G +D TinySwitch-II Family, 9.5W Output Power, SMD-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY266P +D TinySwitch-II Family, 9.5W Output Power, DIP-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY267G +D TinySwitch-II Family, 12W Output Power, SMD-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY267P +D TinySwitch-II Family, 12W Output Power, DIP-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY268G +D TinySwitch-II Family, 15W Output Power, SMD-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY268P +D TinySwitch-II Family, 15W Output Power, DIP-8B +K Enhanced, Energy Efficient, Low Power Off-line Switcher +F http://www.powerint.com/sites/default/files/product-docs/tny263_268.pdf +$ENDCMP +# +$CMP TNY274G +D TinySwitch-III Family, 8.5W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY274P +D TinySwitch-III Family, 8.5W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY275G +D TinySwitch-III Family, 11.5W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY275P +D TinySwitch-III Family, 11.5W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY276G +D TinySwitch-III Family, 15W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY276P +D TinySwitch-III Family, 15W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY277G +D TinySwitch-III Family, 18W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY277P +D TinySwitch-III Family, 18W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY278G +D TinySwitch-III Family, 21.5W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY278P +D TinySwitch-III Family, 21.5W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY279G +D TinySwitch-III Family, 25W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY279P +D TinySwitch-III Family, 25W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY280G +D TinySwitch-III Family, 28.5W Output Power, SMD-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY280P +D TinySwitch-III Family, 28.5W Output Power, DIP-8C +K Energy-Efficient, Off-Line Switcher With Enhanced Flexibility and Extended Power Range +F http://www.powerint.com/sites/default/files/product-docs/tny274-280.pdf +$ENDCMP +# +$CMP TNY284D +D TinySwitch-4 Family, 8.5W Output Power, SO-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY284K +D TinySwitch-4 Family, 8.5W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY284P +D TinySwitch-4 Family, 8.5W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY285D +D TinySwitch-4 Family, 11.5W Output Power, SO-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY285K +D TinySwitch-4 Family, 11.5W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY285P +D TinySwitch-4 Family, 11.5W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY286D +D TinySwitch-4 Family, 15W Output Power, SO-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY286K +D TinySwitch-4 Family, 15W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY286P +D TinySwitch-4 Family, 15W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY287D +D TinySwitch-4 Family, 18W Output Power, SO-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY287K +D TinySwitch-4 Family, 18W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY287P +D TinySwitch-4 Family, 18W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY288D +D TinySwitch-4 Family, 19.5W Output Power, SO-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY288K +D TinySwitch-4 Family, 21.5W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY288P +D TinySwitch-4 Family, 21.5W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY289K +D TinySwitch-4 Family, 25W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY289P +D TinySwitch-4 Family, 25W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY290K +D TinySwitch-4 Family, 28.5W Output Power, eSOP-12B +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TNY290P +D TinySwitch-4 Family, 28.5W Output Power, PDIP-8C +K Energy-Efficient, Off-Line Switcher With Line Compensated Overload Power +F https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-4_family_datasheet.pdf +$ENDCMP +# +$CMP TOP100YN +D TOPSwitch Family, 20W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top100.pdf +$ENDCMP +# +$CMP TOP101YN +D TOPSwitch Family, 35W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top100.pdf +$ENDCMP +# +$CMP TOP102YN +D TOPSwitch Family, 45W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top100.pdf +$ENDCMP +# +$CMP TOP103YN +D TOPSwitch Family, 55W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top100.pdf +$ENDCMP +# +$CMP TOP104YN +D TOPSwitch Family, 60W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top100.pdf +$ENDCMP +# +$CMP TOP200YAI +D TOPSwitch Family, 12W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top200-204214.pdf +$ENDCMP +# +$CMP TOP201YAI +D TOPSwitch Family, 22W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top200-204214.pdf +$ENDCMP +# +$CMP TOP202YAI +D TOPSwitch Family, 30W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top200-204214.pdf +$ENDCMP +# +$CMP TOP203YAI +D TOPSwitch Family, 35W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top200-204214.pdf +$ENDCMP +# +$CMP TOP204YAI +D TOPSwitch Family, 50W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top200-204214.pdf +$ENDCMP +# +$CMP TOP209G +D TOPSwitch Family, 2W Max Output Power, SMD-8 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top209210.pdf +$ENDCMP +# +$CMP TOP209P +D TOPSwitch Family, 2W Max Output Power, DIP-8 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top209210.pdf +$ENDCMP +# +$CMP TOP210G +D TOPSwitch Family, 5W Max Output Power, SMD-8 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top209210.pdf +$ENDCMP +# +$CMP TOP210PFI +D TOPSwitch Family, 5W Max Output Power, DIP-8 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top209210.pdf +$ENDCMP +# +$CMP TOP214YAI +D TOPSwitch Family, 42W Max Output Power, TO-220 +K Three-terminal Off-line PWM Switch +F http://www.powerint.com/sites/default/files/product-docs/top200-204214.pdf +$ENDCMP +# +$CMP TOP252EG +D TOPSwitch-HX Family, 13W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP252EN +D TOPSwitch-HX Family, 13W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP252GN +D TOPSwitch-HX Family, 10W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP252MN +D TOPSwitch-HX Family, 10W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP252PN +D TOPSwitch-HX Family, 10W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP253EG +D TOPSwitch-HX Family, 29W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP253EN +D TOPSwitch-HX Family, 29W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP253GN +D TOPSwitch-HX Family, 15W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP253MN +D TOPSwitch-HX Family, 15W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP253PN +D TOPSwitch-HX Family, 15W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP254EG +D TOPSwitch-HX Family, 43W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP254EN +D TOPSwitch-HX Family, 43W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP254GN +D TOPSwitch-HX Family, 20W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP254MN +D TOPSwitch-HX Family, 20W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP254PN +D TOPSwitch-HX Family, 20W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP254YN +D TOPSwitch-HX Family, 43W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255EG +D TOPSwitch-HX Family, 57W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255EN +D TOPSwitch-HX Family, 57W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255GN +D TOPSwitch-HX Family, 22W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255LN +D TOPSwitch-HX Family, 57W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255MN +D TOPSwitch-HX Family, 22W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255PN +D TOPSwitch-HX Family, 22W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP255YN +D TOPSwitch-HX Family, 57W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256EG +D TOPSwitch-HX Family, 86W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256EN +D TOPSwitch-HX Family, 86W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256GN +D TOPSwitch-HX Family, 26W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256LN +D TOPSwitch-HX Family, 64W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256MN +D TOPSwitch-HX Family, 26W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256PN +D TOPSwitch-HX Family, 26W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP256YN +D TOPSwitch-HX Family, 86W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257EG +D TOPSwitch-HX Family, 119W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257EN +D TOPSwitch-HX Family, 119W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257GN +D TOPSwitch-HX Family, 30W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257LN +D TOPSwitch-HX Family, 78W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257MN +D TOPSwitch-HX Family, 30W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257PN +D TOPSwitch-HX Family, 30W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP257YN +D TOPSwitch-HX Family, 119W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258EG +D TOPSwitch-HX Family, 148W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258EN +D TOPSwitch-HX Family, 148W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258GN +D TOPSwitch-HX Family, 35W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258LN +D TOPSwitch-HX Family, 92W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258MN +D TOPSwitch-HX Family, 35W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258PN +D TOPSwitch-HX Family, 35W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP258YN +D TOPSwitch-HX Family, 148W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP259EG +D TOPSwitch-HX Family, 171W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP259EN +D TOPSwitch-HX Family, 171W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP259LN +D TOPSwitch-HX Family, 120W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP259YN +D TOPSwitch-HX Family, 171W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP260EG +D TOPSwitch-HX Family, 200W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP260EN +D TOPSwitch-HX Family, 200W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP260LN +D TOPSwitch-HX Family, 140W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP260YN +D TOPSwitch-HX Family, 200W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP261EG +D TOPSwitch-HX Family, 254W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP261EN +D TOPSwitch-HX Family, 254W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP261LN +D TOPSwitch-HX Family, 177W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP261YN +D TOPSwitch-HX Family, 254W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP262EN +D TOPSwitch-HX Family, 254W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP262LN +D TOPSwitch-HX Family, 177W Output Power +K Eco Smart Off-Line Switcher, Extendend Power Range +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-hx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP264EG +D TOPSwitch-JX Family, 43W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP264KG +D TOPSwitch-JX Family, 30W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP264VG +D TOPSwitch-JX Family, 43W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP265EG +D TOPSwitch-JX Family, 57W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP265KG +D TOPSwitch-JX Family, 34W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP265VG +D TOPSwitch-JX Family, 57W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP266EG +D TOPSwitch-JX Family, 86W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP266KG +D TOPSwitch-JX Family, 39W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP266VG +D TOPSwitch-JX Family, 86W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP267EG +D TOPSwitch-JX Family, 103W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP267KG +D TOPSwitch-JX Family, 45W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP267VG +D TOPSwitch-JX Family, 103W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP268EG +D TOPSwitch-JX Family, 112W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP268KG +D TOPSwitch-JX Family, 50W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP268VG +D TOPSwitch-JX Family, 112W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP269EG +D TOPSwitch-JX Family, 120W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP269KG +D TOPSwitch-JX Family, 55W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP269VG +D TOPSwitch-JX Family, 120W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP270EG +D TOPSwitch-JX Family, 140W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP270KG +D TOPSwitch-JX Family, 60W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP270VG +D TOPSwitch-JX Family, 140W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP271EG +D TOPSwitch-JX Family, 177W Output Power, eSIP-7C +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP271KG +D TOPSwitch-JX Family, 66W Output Power, eSOP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TOP271VG +D TOPSwitch-JX Family, 177W Output Power, eDIP-12B +K Integrated Off-Line Switcher with EcoSmart™ Technology +F https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf +$ENDCMP +# +$CMP TPS51363 +D High-voltage input, synchronous converter with integrated FET, QFN-28 +K Step-down +F http://www.ti.com/lit/ds/symlink/tps51363.pdf +$ENDCMP +# +$CMP TPS54061DRB +D 0.2A, Step Down DC-DC Converter with Low IQ, 4.5-60V Input Voltage, VSON-8 +K Step-Down DC-DC Switching Regulator High Voltage Adjustable Frequency +F http://www.ti.com/lit/ds/symlink/tps54061.pdf +$ENDCMP +# +$CMP TPS54202DDC +D 2A, 4.5 to 28V Input, EMI Friendly integrated switch synchronous step-down regulator, pulse-skipping, SOT-23-6 +K switching buck converter power-supply voltage regulator emi spread spectrum +F http://www.ti.com/lit/ds/symlink/tps54202.pdf +$ENDCMP +# +$CMP TPS5420D +D Adjustable Output, 2A Step-Down Converter, 5.5V-36V Input, 500kHz Switching Frequency +K switching buck converter step-down +F http://www.ti.com/lit/ds/symlink/tps5420.pdf +$ENDCMP +# +$CMP TPS54233 +D 2A, Step Down DC-DC Converter with Eco-mode, 3.5-28V Input Voltage, SO-8 +K Step-Down DC-DC Switching Regulator High Voltage High Frequency +F http://www.ti.com/lit/ds/symlink/tps54233.pdf +$ENDCMP +# +$CMP TPS54302 +D 3A, 4.5 to 28V Input, EMI Friendly integrated switch synchronous step-down regulator, pulse-skipping, SOT-23-6 +K switching buck converter power-supply voltage regulator emi spread spectrum +F http://www.ti.com/lit/ds/symlink/tps54302.pdf +$ENDCMP +# +$CMP TPS54308 +D 3A, 4.5 to 28V Input, EMI Friendly integrated switch synchronous step-down regulator, continuous-conduction, SOT-23-6 +K switching buck converter power-supply voltage regulator emi spread spectrum FCCM +F http://www.ti.com/lit/ds/symlink/tps54308.pdf +$ENDCMP +# +$CMP TPS5430DDA +D 3A, Step Down Swift Converter, Adjustable Output Voltage, 5.5-36V Input Voltage, PowerSO-8 +K Step-Down DC-DC Switching Regulator +F http://www.ti.com/lit/ds/symlink/tps5430.pdf +$ENDCMP +# +$CMP TPS5431DDA +D 3A, Step Down Swift Converter, Adjustable Output Voltage, 5.5-23V Input Voltage, PowerSO-8 +K Step-Down DC-DC Switching Regulator +F http://www.ti.com/lit/ds/symlink/tps5430.pdf +$ENDCMP +# +$CMP TPS54336ADDA +D 4.5V to 28V Input, 3A, Synchronous Step-Down Converter with Eco-mode(tm) +K Step-Down DC-DC Switching Regulator +F http://www.ti.com/lit/ds/symlink/tps54336a.pdf +$ENDCMP +# +$CMP TPS54340DDA +D 3.5A, Step Down DC-DC Converter with Eco-mode, 4.5-42V Input Voltage, PowerSO-8 +K Step-Down DC-DC Switching Regulator High Voltage High Frequency +F http://www.ti.com/lit/ds/symlink/tps54340.pdf +$ENDCMP +# +$CMP TPS54360DDA +D 3.5A, Step Down DC-DC Converter with Eco-mode, 4.5-60V Input Voltage, PowerSO-8 +K Step-Down DC-DC Switching Regulator High Voltage High Frequency +F http://www.ti.com/lit/ds/symlink/tps54360.pdf +$ENDCMP +# +$CMP TPS560200 +D 500mA, Synchronous Step-Down Converter With, Adjustable Output Voltage, 4.5-17V Input Voltage, SOT-23-5 +K Voltage regulator switching buck fixed output analog +F http://www.ti.com/lit/ds/symlink/tps560200.pdf +$ENDCMP +# +$CMP TPS562200 +D 2A Synchronous Step-Down Voltage Regulator, Adjustable Output Voltage, 4.5-17V Input Voltage, SOT-23-6 +K step-down dcdc voltage regulator +F http://www.ti.com/lit/ds/symlink/tps563200.pdf +$ENDCMP +# +$CMP TPS563200 +D 3A Synchronous Step-Down Voltage Regulator, Adjustable Output Voltage, 4.5-17V Input Voltage, SOT-23-6 +K step-down dcdc voltage regulator +F http://www.ti.com/lit/ds/symlink/tps563200.pdf +$ENDCMP +# +$CMP TPS56339DDC +D 4.5V to 24V Input, 3-A Output Synchronous Buck Converter, SOT-23-6 +K step-down dcdc voltage regulator +F https://www.ti.com/lit/ds/symlink/tps56339.pdf +$ENDCMP +# +$CMP TPS565208 +D 5A Synchronous Step-Down Voltage Regulator, Adjustable Output Voltage, 4.5-17V Input Voltage, SOT-23-6 +K step-down dcdc voltage regulator +F http://www.ti.com/lit/ds/symlink/tps565208.pdf +$ENDCMP +# +$CMP TPS568215RNN +D 4.5V-17V Input, 8A Synchronous Step-Down SWIFT Converter, Adjustable Output, 400kHz/800kHz/1.2MHz Switching Frequency, Texas VQFN-18 +K switching buck converter step-down +F http://www.ti.com/lit/ds/symlink/tps568215.pdf +$ENDCMP +# +$CMP TPS61040DBV +D Synchronous Boost Regulator, Adjustable Output up to 28V, 400 mA Switch Current Limit, SOT-23-5 +K Step-Up Boost DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tps61040.pdf +$ENDCMP +# +$CMP TPS61040DDC +D Synchronous Boost Regulator, Adjustable Output up to 28V, 400 mA Switch Current Limit, SOT-23-5 +K Step-Up Boost DC-DC Regulator Adjustable +F https://www.ti.com/lit/ds/symlink/tps61040.pdf +$ENDCMP +# +$CMP TPS61040DRV +D Synchronous Boost Regulator, Adjustable Output up to 28V, 400 mA Switch Current Limit, WSON-6 +K Step-Up Boost DC-DC Regulator Adjustable +F https://www.ti.com/lit/ds/symlink/tps61040.pdf +$ENDCMP +# +$CMP TPS61041DBV +D Synchronous Boost Regulator, Adjustable Output up to 28V, 250 mA Switch Current Limit, SOT-23-5 +K Step-Up Boost DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tps61040.pdf +$ENDCMP +# +$CMP TPS61041DDC +D Synchronous Boost Regulator, Adjustable Output up to 28V, 250 mA Switch Current Limit, SOT-23-5 +K Step-Up Boost DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tps61040.pdf +$ENDCMP +# +$CMP TPS61041DRV +D Synchronous Boost Regulator, Adjustable Output up to 28V, 250 mA Switch Current Limit, WSON-6 +K Step-Up Boost DC-DC Regulator Adjustable +F http://www.ti.com/lit/ds/symlink/tps61040.pdf +$ENDCMP +# +$CMP TPS61090 +D 2A Step-Up DC-DC Converter for Batteries, Isw up to 2500mA, Adjustable output voltage, QFN-16 +K Adjustable 2A battery boost converter +F http://www.ti.com/lit/ds/symlink/tps61090.pdf +$ENDCMP +# +$CMP TPS61091 +D 2A Step-Up DC-DC Converter for Batteries, Isw up to 2500mA, 3.3V Output Voltage, QFN-16 +K Fixed 3.3V 2A battery boost converter +F http://www.ti.com/lit/ds/symlink/tps61090.pdf +$ENDCMP +# +$CMP TPS61092 +D 2A Step-Up DC-DC Converter for Batteries, Isw up to 2500mA, 5V Output Voltage, QFN-16 +K Fixed 5V 2A battery boost converter +F http://www.ti.com/lit/ds/symlink/tps61090.pdf +$ENDCMP +# +$CMP TPS61200DRC +D Low Input Voltage Synchronous Boost Converter With 1.3A Switches, Adjustable Output Voltage, 0.3-5.5V Input Voltage, VSON-10 +K boost step-up DC/DC synchronous +F http://www.ti.com/lit/ds/symlink/tps61200.pdf +$ENDCMP +# +$CMP TPS61201DRC +D Low Input Voltage Synchronous Boost Converter With 1.3A Switches, Fixed 5V Output Voltage, 0.3-5.5V Input Voltage, VSON-10 +K boost step-up DC/DC synchronous +F http://www.ti.com/lit/ds/symlink/tps61200.pdf +$ENDCMP +# +$CMP TPS61202DRC +D Low Input Voltage Synchronous Boost Converter With 1.3A Switches, Fixed 5V Output Voltage, 0.3-5.5V Input Voltage, VSON-10 +K boost step-up DC/DC synchronous +F http://www.ti.com/lit/ds/symlink/tps61200.pdf +$ENDCMP +# +$CMP TPS61202DSC +D Low Input Voltage Synchronous Boost Converter With 1.3A Switches, Fixed 5V Output Voltage, 0.3-5.5V Input Voltage, WSON-10 +K boost step-up DC/DC synchronous +F http://www.ti.com/lit/ds/symlink/tps61200.pdf +$ENDCMP +# +$CMP TPS61220DCK +D 400 mA Step-Up Converter, Adjustable Output Voltage, 0.7-5.5V Input Voltage, SC-70 +K Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps61220.pdf +$ENDCMP +# +$CMP TPS61221DCK +D 400 mA Step-Up Converter, Fixed 3.3V Output Voltage, 0.7-5.5V Input Voltage, SC-70 +K Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps61220.pdf +$ENDCMP +# +$CMP TPS61222DCK +D 400 mA Step-Up Converter, Fixed 5V Output Voltage, 0.7-5.5V Input Voltage, SC-70 +K Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps61220.pdf +$ENDCMP +# +$CMP TPS61230DRC +D High Efficiency Synchronous Step Up Converters with 5-A Switches, 2.3-5.5V Input Voltage, VSON-10 +K boost converter switching adjustable 5A-switch VSON-10 +F http://www.ti.com/lit/ds/symlink/tps61232.pdf +$ENDCMP +# +$CMP TPS61252DSG +D Tiny 1.5-A Boost Converter With Adjustable Input Current Limit, 2.3-6.0V Vin, 3.0-6.5V Vout, WSON-8 +K boost converter switching +F http://www.ti.com/lit/ds/symlink/tps61252.pdf +$ENDCMP +# +$CMP TPS613221ADBV +D 1.2A Step-Up Converter, 3.3V Output Voltage, 0.9-5.5V Input Voltage, SOT-23-5 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613221ADBZ +D 1.2A Step-Up Converter, 3.3V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613222ADBV +D 1.8A Step-Up Converter, 5V Output Voltage, 0.9-5.5V Input Voltage, SOT-23-5 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613222ADBZ +D 1.8A Step-Up Converter, 5V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613223ADBV +D 750mA Step-Up Converter, 2V Output Voltage, 0.9-5.5V Input Voltage, SOT-23-5 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613223ADBZ +D 750mA Step-Up Converter, 2V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613224ADBV +D 750mA Step-Up Converter, 2.5V Output Voltage, 0.9-5.5V Input Voltage, SOT-23-5 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613224ADBZ +D 750mA Step-Up Converter, 2.5V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613225ADBV +D 1.2A Step-Up Converter, 3V Output Voltage, 0.9-5.5V Input Voltage, SOT-23-5 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613225ADBZ +D 1.2A Step-Up Converter, 3V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613226ADBV +D 1.2A Step-Up Converter, 3.6V Output Voltage, 0.9-5.5V Input Voltage, SOT-23-5 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS613226ADBZ +D 1.2A Step-Up Converter, 3.6V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS61322DBZ +D 750mA Step-Up Converter, 2.2V Output Voltage, 0.9-5.5V Input Voltage, SOT-23 +K Boost converter +F http://www.ti.com/lit/ds/symlink/tps61322.pdf +$ENDCMP +# +$CMP TPS62056DGS +D 800 mA Step-Down Converter, Adjustable Output Voltage, 0.7-6V Input Voltage, VSSOP-10 +K voltage regulator switch mode step down +F http://www.ti.com/lit/ds/symlink/tps62056.pdf +$ENDCMP +# +$CMP TPS62125DSG +D 300mA Step-Down Converter with Enable Threshold and Hysteresis, adjustable output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62125.pdf +$ENDCMP +# +$CMP TPS62130 +D 3A Step-Down Converter with DCS-Control, Adjustable Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/tps62130.pdf +$ENDCMP +# +$CMP TPS62130A +D 3A Step-Down Converter with DCS-Control, Adjustable Output Voltage, 3-17V Input Voltage, PG=LOW in Power-Down, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/tps62130.pdf +$ENDCMP +# +$CMP TPS62131 +D 3A Step-Down Converter with DCS-Control, Fixed 1.8V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/tps62130.pdf +$ENDCMP +# +$CMP TPS62132 +D 3A Step-Down Converter with DCS-Control, Fixed 3.3V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/tps62130.pdf +$ENDCMP +# +$CMP TPS62133 +D 3A Step-Down Converter with DCS-Control, Fixed 5.0V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/tps62130.pdf +$ENDCMP +# +$CMP TPS62140 +D 2A Step-Down Converter with DCS-Control, Adjustable Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62140.pdf +$ENDCMP +# +$CMP TPS62140A +D 2A Step-Down Converter with DCS-Control, Adjustable Output Voltage, 3-17V Input Voltage, PG=LOW in Power-Down, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62140.pdf +$ENDCMP +# +$CMP TPS62141 +D 2A Step-Down Converter with DCS-Control, Fixed 1.8V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62140.pdf +$ENDCMP +# +$CMP TPS62142 +D 2A Step-Down Converter with DCS-Control, Fixed 3.3V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62140.pdf +$ENDCMP +# +$CMP TPS62143 +D 2A Step-Down Converter with DCS-Control, Fixed 5.0V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62140.pdf +$ENDCMP +# +$CMP TPS62150 +D 1A Step-Down Converter with DCS-Control, Adjustable Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62150.pdf +$ENDCMP +# +$CMP TPS62150A +D 1A Step-Down Converter with DCS-Control, Adjustable Output Voltage, 3-17V Input Voltage, PG=LOW in Power-Down, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62150.pdf +$ENDCMP +# +$CMP TPS62151 +D 1A Step-Down Converter with DCS-Control, Fixed 1.8V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62150.pdf +$ENDCMP +# +$CMP TPS62152 +D 1A Step-Down Converter with DCS-Control, Fixed 3.3V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62150.pdf +$ENDCMP +# +$CMP TPS62153 +D 1A Step-Down Converter with DCS-Control, Fixed 5.0V Output Voltage, 3-17V Input Voltage, QFN-16 +K step-down dcdc +F http://www.ti.com/lit/ds/symlink/TPS62150.pdf +$ENDCMP +# +$CMP TPS62160DGK +D 1A Step-Down Converter with DCS-Control, adjustable output, 3-17V input voltage, VSSOP-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62160.pdf +$ENDCMP +# +$CMP TPS62160DSG +D 1A Step-Down Converter with DCS-Control, adjustable output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62160.pdf +$ENDCMP +# +$CMP TPS62161DSG +D 1A Step-Down Converter with DCS-Control, fixed 1.8V output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62160.pdf +$ENDCMP +# +$CMP TPS62162DSG +D 1A Step-Down Converter with DCS-Control, fixed 3.3V output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62160.pdf +$ENDCMP +# +$CMP TPS62163DSG +D 1A Step-Down Converter with DCS-Control, fixed 5.0V output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62160.pdf +$ENDCMP +# +$CMP TPS62170DSG +D 500mA Step-Down Converter with DCS-Control, adjustable output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62170.pdf +$ENDCMP +# +$CMP TPS62171DSG +D 500mA Step-Down Converter with DCS-Control, fixed 1.8V output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62170.pdf +$ENDCMP +# +$CMP TPS62172DSG +D 500mA Step-Down Converter with DCS-Control, fixed 3.3V output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62170.pdf +$ENDCMP +# +$CMP TPS62173DSG +D 500mA Step-Down Converter with DCS-Control, fixed 5.0V output, 3-17V input voltage, WSON-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62170.pdf +$ENDCMP +# +$CMP TPS62175DQC +D 500mA Step-Down Conveter with Sleep Mode, adjustable Output Voltage, 4.75-28V input voltage, WSON-10 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62177.pdf +$ENDCMP +# +$CMP TPS62177DQC +D 500mA Step-Down Conveter with Sleep Mode, fixed 3.3V Output Voltage, 4.75-28V input voltage, WSON-10 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62177.pdf +$ENDCMP +# +$CMP TPS62200DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, adjustable output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62201DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 1.5V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62202DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 1.8V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62203DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 3.3V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62204DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 1.6V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62205DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 2.5V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62207DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 1.2V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62208DBV +D 300mA High-Efficiency Step-Down DC-DC Converter, fixed 1.875V output voltage, 2.5-6V input voltage, SOT-23-5 +K Step-Down DC-DC Converter +F http://www.ti.com/lit/ds/symlink/tps62201.pdf +$ENDCMP +# +$CMP TPS62821DLC +D 1A Step-Down Converter with DCS-Control, adjustable output, 2.4-5.5V input voltage, QFN-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62823.pdf +$ENDCMP +# +$CMP TPS62822DLC +D 2A Step-Down Converter with DCS-Control, adjustable output, 2.4-5.5V input voltage, QFN-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62823.pdf +$ENDCMP +# +$CMP TPS62823DLC +D 3A Step-Down Converter with DCS-Control, adjustable output, 2.4-5.5V input voltage, QFN-8 +K step-down dc-dc buck regulator +F http://www.ti.com/lit/ds/symlink/tps62823.pdf +$ENDCMP +# +$CMP TPS63000 +D Buck-Boost Converter, 1.8-5.5V Input Voltage, 1.8A Switch Current, Adjustable 1.2-5.5V Output Voltage, VSON-10 +K Buck-Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps63000.pdf +$ENDCMP +# +$CMP TPS63000-Q1 +D Buck-Boost Converter, 1.8-5.5V Input Voltage, 1.8A Switch Current, Adjustable 1.2-5.5V Output Voltage, Automotive, VSON-10 +K Buck-Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps63000-q1.pdf +$ENDCMP +# +$CMP TPS63001 +D Buck-Boost Converter, 1.8-5.5V Input Voltage, 1.7A Switch Current, 3.3V Output Voltage, VSON-10 +K Buck-Boost fixed 3.3V converter +F http://www.ti.com/lit/ds/symlink/tps63000.pdf +$ENDCMP +# +$CMP TPS63002 +D Buck-Boost Converter, 1.8-5.5V Input Voltage, 1.7A Switch Current, 5V Output Voltage, VSON-10 +K Buck-Boost fixed 5V converter +F http://www.ti.com/lit/ds/symlink/tps63000.pdf +$ENDCMP +# +$CMP TPS63030DSK +D Buck-Boost Converter, 1.8-5.5V Input Voltage, 1A Switch Current, Adjustable Output Voltage, VSON-10 (DSK0010A) +K Buck-Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps63030.pdf +$ENDCMP +# +$CMP TPS63031DSK +D Buck-Boost Converter, 1.8-5.5V Input Voltage, 1A Switch Current, 3.3V Output Voltage, VSON-10 (DSK0010A) +K Buck-Boost fixed 3.3V converter +F http://www.ti.com/lit/ds/symlink/tps63031.pdf +$ENDCMP +# +$CMP TPS63060 +D Buck-Boost Converter, 2.5-12V Input Voltage, 2-A Switch Current, Adjustable 2.5-8V Output Voltage, S-PWSON-N10 +K Buck-Boost adjustable converter +F http://www.ti.com/lit/ds/symlink/tps63060.pdf +$ENDCMP +# +$CMP TPS63061 +D Buck-Boost Converter, 2.5-12V Input Voltage, 2-A Switch Current, Fixed 5V Output Voltage, S-PWSON-10 +K Buck-Boost converter 5V +F http://www.ti.com/lit/ds/symlink/tps63060.pdf +$ENDCMP +# +$CMP TPS65130RGE +D Split-Rail Converter with Dual, Positive and Negative Outputs (300mA typ), 2.7-5.5V, VQFN-24 +K split-rail switching dual positive negative +F http://www.ti.com/lit/ds/symlink/tps65130.pdf +$ENDCMP +# +$CMP TPS82130 +D 17V Input 3A Step-Down Converter MicroSiP Module with Integrated Inductor, μSiL-8 +K 17V 3A Step-down Buck Module +F http://www.ti.com/lit/ds/symlink/tps82130.pdf +$ENDCMP +# +$CMP TPS82140 +D 17V Input 2A Step-Down Converter MicroSiP Module with Integrated Inductor, μSiL-8 +K 17V 2A Step-down Buck Module +F http://www.ti.com/lit/ds/symlink/tps82140.pdf +$ENDCMP +# +$CMP TPS82150 +D 17V Input 1A Step-Down Converter MicroSiP Module with Integrated Inductor, μSiL-8 +K 17V 1A Step-down Buck Module +F http://www.ti.com/lit/ds/symlink/tps82150.pdf +$ENDCMP +# +$CMP TSR_1-2412 +D 1A step-down regulator module, fixed 1.2V output voltage, 6-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-24120 +D 1A step-down regulator module, fixed 12V output voltage, 5-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2415 +D 1A step-down regulator module, fixed 1.5V output voltage, 6-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-24150 +D 1A step-down regulator module, fixed 15V output voltage, 8-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2418 +D 1A step-down regulator module, fixed 1.8V output voltage, 6-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2425 +D 1A step-down regulator module, fixed 2.5V output voltage, 6-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2433 +D 1A step-down regulator module, fixed 3.3V output voltage, 5-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2450 +D 1A step-down regulator module, fixed 5V output voltage, 5-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2465 +D 1A step-down regulator module, fixed 6.5V output voltage, 9-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP TSR_1-2490 +D 1A step-down regulator module, fixed 9V output voltage, 2-36V input voltage, -40°C to +85°C temperature range, TO-220 compatible LM78xx replacement +K dc-dc traco buck +F http://www.tracopower.com/products/tsr1.pdf +$ENDCMP +# +$CMP VIPer22ADIP-E +D Low power OFF-line SMPS primary switcher +K SMPS +F http://www.st.com/web/en/resource/technical/document/datasheet/CD00087939.pdf +$ENDCMP +# +$CMP VIPer22AS +D Low power OFF-line SMPS primary switcher +K SMPS +F http://www.st.com/web/en/resource/technical/document/datasheet/CD00087939.pdf +$ENDCMP +# +$CMP VIPer25HN +D 12W SMPS Controller, AC-DC, PDIP-7 +K SMPS Controller with MOSFET 12W AC-DC +F http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00231127.pdf +$ENDCMP +# +$CMP VIPer25LN +D 12W SMPS Controller, AC-DC, PDIP-7 +K SMPS Controller with MOSFET 12W AC-DC +F http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00231127.pdf +$ENDCMP +# +$CMP VIPer26HD +D 800V, 10-20W, 115kHz, SMPS Controller, SOIC-16 +K SMPS Controller with MOSFET +F https://www.st.com/resource/en/datasheet/viper26.pdf +$ENDCMP +# +$CMP VIPer26HN +D 800V, 10-20W, 115kHz, SMPS Controller, DIP-7 +K SMPS Controller with MOSFET +F https://www.st.com/resource/en/datasheet/viper26.pdf +$ENDCMP +# +$CMP VIPer26LD +D 800V, 10-20W, 60kHz, SMPS Controller, SOIC-16 +K SMPS Controller with MOSFET +F https://www.st.com/resource/en/datasheet/viper26.pdf +$ENDCMP +# +$CMP VIPer26LN +D 800V, 10-20W, 60kHz, SMPS Controller, DIP-7 +K SMPS Controller with MOSFET +F https://www.st.com/resource/en/datasheet/viper26.pdf +$ENDCMP +# +#End Doc Library diff --git a/kicad/ap1509.dcm b/kicad/ap1509.dcm new file mode 100644 index 0000000..d9344eb --- /dev/null +++ b/kicad/ap1509.dcm @@ -0,0 +1,27 @@ +EESchema-DOCLIB Version 2.0 +# +$CMP AP1509 +D 150KHz, 2A PWM BUCK DC/DC CONVERTER +K 3.3V 2A 150KHz PWM Buck DC/DC +F https://www.tme.eu/Document/7fdb23bb64ab89e0668906be83b8b7e3/AP1509x-DTE.pdf +$ENDCMP +# +$CMP APE1707M-12-HF_copy +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 12.0V output voltage, SO-8 +K 12V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-50-HF_copy +D 2A, 150KHz PWM Buck DC/DC Converter, fixed 5.0V output voltage, SO-8 +K 5V 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +$CMP APE1707M-HF_copy +D 2A, 150KHz PWM Buck DC/DC Converter, adjustable output voltage, SO-8 +K Adjustable 2A 150KHz PWM Buck DC/DC +F http://files.remont-aud.net/baza/dc_dc/data/APE1707.pdf +$ENDCMP +# +#End Doc Library diff --git a/kicad/ap1509.lib b/kicad/ap1509.lib new file mode 100644 index 0000000..6f55a5e --- /dev/null +++ b/kicad/ap1509.lib @@ -0,0 +1,28 @@ +EESchema-LIBRARY Version 2.4 +#encoding utf-8 +# +# AP1509 +# +DEF AP1509 U 0 20 Y Y 1 F N +F0 "U" -300 225 50 H V L CNN +F1 "AP1509" 0 225 50 H V L CNN +F2 "Package_SO:SOP-8_3.9x4.9mm_P1.27mm" 25 -250 50 H I L CIN +F3 "" 0 0 50 H I C CNN +ALIAS APE1707M-50-HF_copy APE1707M-12-HF_copy APE1707M-HF_copy +$FPLIST + SOIC*3.9x4.9mm*P1.27mm* +$ENDFPLIST +DRAW +S -300 175 300 -200 0 1 10 f +X VIN 1 -400 100 100 R 50 50 1 1 W +X OUT 2 400 -100 100 L 50 50 1 1 w +X FB 3 400 100 100 L 50 50 1 1 W +X SD 4 -400 -100 100 R 50 50 1 1 I +X GND 5 0 -300 100 U 50 50 1 1 I +X GND 6 0 -300 100 U 50 50 1 1 I N +X GND 7 0 -300 100 U 50 50 1 1 I N +X GND 8 0 -300 100 U 50 50 1 1 I N +ENDDRAW +ENDDEF +# +#End Library diff --git a/kicad/mqtrigger.kicad_pcb b/kicad/mqtrigger.kicad_pcb new file mode 100644 index 0000000..c521232 --- /dev/null +++ b/kicad/mqtrigger.kicad_pcb @@ -0,0 +1,3550 @@ +(kicad_pcb (version 20171130) (host pcbnew 5.99.0+really5.1.10+dfsg1-1) + + (general + (thickness 1.6) + (drawings 5) + (tracks 279) + (zones 0) + (modules 34) + (nets 56) + ) + + (page A4) + (title_block + (title MqTrigger) + (date 2022-04-16) + (rev 1.1) + (company chodak166) + ) + + (layers + (0 F.Cu signal hide) + (31 B.Cu signal) + (32 B.Adhes user hide) + (33 F.Adhes user hide) + (34 B.Paste user hide) + (35 F.Paste user hide) + (36 B.SilkS user hide) + (37 F.SilkS user) + (38 B.Mask user hide) + (39 F.Mask user hide) + (40 Dwgs.User user hide) + (41 Cmts.User user hide) + (42 Eco1.User user hide) + (43 Eco2.User user hide) + (44 Edge.Cuts user) + (45 Margin user hide) + (46 B.CrtYd user hide) + (47 F.CrtYd user) + (48 B.Fab user hide) + (49 F.Fab user) + ) + + (setup + (last_trace_width 0.5) + (user_trace_width 0.5) + (user_trace_width 0.7) + (trace_clearance 0.3) + (zone_clearance 0.508) + (zone_45_only no) + (trace_min 0.5) + (via_size 1.3) + (via_drill 0.5) + (via_min_size 0.5) + (via_min_drill 0.3) + (user_via 1.3 0.5) + (uvia_size 0.3) + (uvia_drill 0.1) + (uvias_allowed no) + (uvia_min_size 0.2) + (uvia_min_drill 0.1) + (edge_width 0.05) + (segment_width 0.2) + (pcb_text_width 0.3) + (pcb_text_size 1.5 1.5) + (mod_edge_width 0.12) + (mod_text_size 1 1) + (mod_text_width 0.15) + (pad_size 1.7 1.7) + (pad_drill 1) + (pad_to_mask_clearance 0) + (aux_axis_origin 0 0) + (visible_elements FFFFFF7F) + (pcbplotparams + (layerselection 0x01030_ffffffff) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (excludeedgelayer true) + (linewidth 0.100000) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (padsonsilk false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 0) + (scaleselection 1) + (outputdirectory "gerber/")) + ) + + (net 0 "") + (net 1 GND) + (net 2 +3V3) + (net 3 "Net-(D2-Pad1)") + (net 4 "Net-(U3-Pad37)") + (net 5 "Net-(U3-Pad36)") + (net 6 "Net-(U3-Pad33)") + (net 7 "Net-(U3-Pad32)") + (net 8 "Net-(U3-Pad31)") + (net 9 "Net-(U3-Pad30)") + (net 10 "Net-(U3-Pad29)") + (net 11 "Net-(U3-Pad22)") + (net 12 "Net-(U3-Pad21)") + (net 13 "Net-(U3-Pad20)") + (net 14 "Net-(U3-Pad19)") + (net 15 "Net-(U3-Pad18)") + (net 16 "Net-(U3-Pad17)") + (net 17 "Net-(U3-Pad8)") + (net 18 "Net-(U3-Pad7)") + (net 19 "Net-(U3-Pad6)") + (net 20 "Net-(U3-Pad5)") + (net 21 "Net-(U3-Pad4)") + (net 22 ESP_EN) + (net 23 ESP_BOOT) + (net 24 ESP_SERVICE) + (net 25 ESP_LEDB) + (net 26 ESP_LEDG) + (net 27 ESP_LEDR) + (net 28 +12V) + (net 29 ESP_TXD0) + (net 30 ESP_RXD0) + (net 31 ESP_TRIG2) + (net 32 ESP_TRIG3) + (net 33 ESP_TRIG4) + (net 34 ESP_TRIG1) + (net 35 "Net-(U3-Pad24)") + (net 36 "Net-(U3-Pad26)") + (net 37 "Net-(U3-Pad27)") + (net 38 "Net-(U3-Pad28)") + (net 39 "Net-(D3-Pad1)") + (net 40 "Net-(D3-Pad3)") + (net 41 "Net-(D3-Pad4)") + (net 42 F12V) + (net 43 /T1_CTL) + (net 44 /T2_CTL) + (net 45 /T3_CTL) + (net 46 /T4_CTL) + (net 47 /T1E) + (net 48 /T1C) + (net 49 /T2E) + (net 50 /T2C) + (net 51 /T3E) + (net 52 /T3C) + (net 53 /T4E) + (net 54 /T4C) + (net 55 /VCC_CUSTOM) + + (net_class Default "This is the default net class." + (clearance 0.3) + (trace_width 0.5) + (via_dia 1.3) + (via_drill 0.5) + (uvia_dia 0.3) + (uvia_drill 0.1) + (diff_pair_width 0.5) + (diff_pair_gap 0.25) + (add_net +12V) + (add_net +3V3) + (add_net /T1C) + (add_net /T1E) + (add_net /T1_CTL) + (add_net /T2C) + (add_net /T2E) + (add_net /T2_CTL) + (add_net /T3C) + (add_net /T3E) + (add_net /T3_CTL) + (add_net /T4C) + (add_net /T4E) + (add_net /T4_CTL) + (add_net /VCC_CUSTOM) + (add_net ESP_BOOT) + (add_net ESP_EN) + (add_net ESP_LEDB) + (add_net ESP_LEDG) + (add_net ESP_LEDR) + (add_net ESP_RXD0) + (add_net ESP_SERVICE) + (add_net ESP_TRIG1) + (add_net ESP_TRIG2) + (add_net ESP_TRIG3) + (add_net ESP_TRIG4) + (add_net ESP_TXD0) + (add_net F12V) + (add_net GND) + (add_net "Net-(D2-Pad1)") + (add_net "Net-(D3-Pad1)") + (add_net "Net-(D3-Pad3)") + (add_net "Net-(D3-Pad4)") + (add_net "Net-(U3-Pad17)") + (add_net "Net-(U3-Pad18)") + (add_net "Net-(U3-Pad19)") + (add_net "Net-(U3-Pad20)") + (add_net "Net-(U3-Pad21)") + (add_net "Net-(U3-Pad22)") + (add_net "Net-(U3-Pad24)") + (add_net "Net-(U3-Pad26)") + (add_net "Net-(U3-Pad27)") + (add_net "Net-(U3-Pad28)") + (add_net "Net-(U3-Pad29)") + (add_net "Net-(U3-Pad30)") + (add_net "Net-(U3-Pad31)") + (add_net "Net-(U3-Pad32)") + (add_net "Net-(U3-Pad33)") + (add_net "Net-(U3-Pad36)") + (add_net "Net-(U3-Pad37)") + (add_net "Net-(U3-Pad4)") + (add_net "Net-(U3-Pad5)") + (add_net "Net-(U3-Pad6)") + (add_net "Net-(U3-Pad7)") + (add_net "Net-(U3-Pad8)") + ) + + (module TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm (layer F.Cu) (tedit 59FF0306) (tstamp 625D67B9) + (at 127.425 120.075 90) + (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf") + (tags "Altech AK300 terminal block pitch 5.0mm") + (path /62B8DF20) + (fp_text reference J8 (at 2.225 -5.5 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TRIG1_IO (at 2.78 7.75 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start -1.13 -4.65) (end -1.42 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start -0.01 -3.71) (end -1.62 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 0.06 -6.07) (end 1.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 1.03 -4.59) (end 1.53 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 3.87 -4.65) (end 3.58 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.99 -3.71) (end 3.39 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 5.07 -6.07) (end 6.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 6.03 -4.59) (end 6.54 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 2.5 -2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.65 -6.3) (end -2.65 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -2.65 6.3) (end 7.7 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 6.3) (end 7.7 5.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 5.35) (end 8.2 5.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 5.6) (end 8.2 3.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.7) (end 8.2 3.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.65) (end 7.7 3.9) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 3.9) (end 7.7 -1.5) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 -1.5) (end 8.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -1.2) (end 8.2 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -6.3) (end -2.65 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.26 2.54) (end 1.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 1.28 2.54) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 -0.25) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 2.54) (end -1.26 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 6.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 6.28 2.54) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 -0.25) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 3.74 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 8.11 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -6.22) (end 8.11 -1.4) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -1.4) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 5.46) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 5.21) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 4.06) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 8.11 5.46) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 2.98 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 6.22) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.04 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.98 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 6.22) (end 2.04 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 2.98 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 4.32) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end 2.04 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 4.32) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 6.67 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 3.36 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 3.68) (end 3.36 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end 1.66 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end -1.64 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 3.68) (end -1.64 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 0.51) (end -1.26 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 0.51) (end 1.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 0.51) (end 3.74 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 0.51) (end 6.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.58 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -2.58 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -1.65) (end 7.61 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -3.17) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -3.43) (end 2.98 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -5.97) (end 7.05 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -5.97) (end 7.05 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -3.43) (end 2.98 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end 2.04 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end -2.02 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -3.43) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -5.97) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 3.39 -4.45) (end 6.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start 3.52 -4.32) (end 6.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -1.62 -4.45) (end 1.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start -1.49 -4.32) (end 1.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -0.25) (end 1.66 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -1.64 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 -0.64) (end 1.66 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 6.67 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -0.25) (end 3.36 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.83 -6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -2.83 -6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (pad 2 thru_hole oval (at 5 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 1 GND)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 55 /VCC_CUSTOM)) + (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_Altech_AK300-2_P5.00mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 625DEACB) + (at 155.575 123.65 90) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (path /62BB545F) + (fp_text reference J7 (at 0 -2.33 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value Conn_01x03 (at 0 7.41 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 2.54) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 +3V3)) + (pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 55 /VCC_CUSTOM)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 42 F12V)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 625B5527) + (at 153.425 102.45 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /628EB367) + (attr smd) + (fp_text reference R8 (at 0.075 -1.475 90) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 3.3k (at 0 -1.43 90) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text user %R (at 0 0 90) (layer B.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + ) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer B.Fab) (width 0.1)) + (pad 2 smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 25 ESP_LEDB)) + (pad 1 smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 41 "Net-(D3-Pad4)")) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 625B5517) + (at 160.625 107.125 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /628B9440) + (attr smd) + (fp_text reference R1 (at 0 1.43 90) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 3.3k (at 0 -1.43 90) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer B.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + ) + (pad 1 smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 39 "Net-(D3-Pad1)")) + (pad 2 smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 27 ESP_LEDR)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 625B5507) + (at 158.95 102.5 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /628EAE57) + (attr smd) + (fp_text reference R7 (at 0.025 -1.55 90) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 3.3k (at 0 -1.43 90) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer B.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + ) + (pad 1 smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 40 "Net-(D3-Pad3)")) + (pad 2 smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 26 ESP_LEDG)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module MountingHole:MountingHole_3.2mm_M3 (layer F.Cu) (tedit 56D1B4CB) (tstamp 625B1050) + (at 142.25 68.725) + (descr "Mounting Hole 3.2mm, no annular, M3") + (tags "mounting hole 3.2mm no annular m3") + (attr virtual) + (fp_text reference REF** (at -4.975 -1.575) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value MountingHole_3.2mm_M3 (at 0 4.2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_circle (center 0 0) (end 3.2 0) (layer Cmts.User) (width 0.15)) + (fp_circle (center 0 0) (end 3.45 0) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0.3 0) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask)) + ) + + (module Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 625DE5C2) + (at 146.225 81.025 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /626BA1BE) + (attr smd) + (fp_text reference C2 (at 2.325 0.05 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 0.1uF (at 0 1.43 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 1 smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 23 ESP_BOOT)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 625B1E5F) + (at 152.525 79.4875 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /626FA945) + (attr smd) + (fp_text reference C6 (at 0.0625 -1.85 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 0.1uF (at 0 1.43 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.8625 0 90) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 1 smd roundrect (at -0.8625 0 90) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 24 ESP_SERVICE)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 625B1EBF) + (at 158.625 78.575 180) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6264F2B7) + (attr smd) + (fp_text reference C4 (at 2.75 0.025) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 0.1uF (at 0 1.43) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 1 smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 22 ESP_EN)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 625B1F34) + (at 158.65 81.325 180) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6269D8D2) + (attr smd) + (fp_text reference C5 (at 2.725 0.075 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 0.1uF (at 0 1.43 180) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 180) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.8625 0 180) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 1 smd roundrect (at -0.8625 0 180) (size 1.075 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 22 ESP_EN)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 625B22AF) + (at 155.7 96.675) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /62820564) + (attr smd) + (fp_text reference R2 (at 0 -1.43) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100 (at 0 1.43) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 31 ESP_TRIG2)) + (pad 1 smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 44 /T2_CTL)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 625B22DF) + (at 155.7 90.475) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /62821633) + (attr smd) + (fp_text reference R6 (at 0 -1.43) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100 (at 0 1.43) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 33 ESP_TRIG4)) + (pad 1 smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 46 /T4_CTL)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 625B20C9) + (at 155.7 93.575) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /62820D6D) + (attr smd) + (fp_text reference R5 (at 0 -1.43 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100 (at 0 1.43 180) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 180) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 32 ESP_TRIG3)) + (pad 1 smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 45 /T3_CTL)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 625B1DD8) + (at 155.7 99.775) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /62566586) + (attr smd) + (fp_text reference R3 (at 0 -1.43) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100 (at 0 1.43) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.65 0.73) (end -1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06))) + ) + (pad 2 smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 34 ESP_TRIG1)) + (pad 1 smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 43 /T1_CTL)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module RF_Module:ESP32-WROOM-32 (layer B.Cu) (tedit 5B5B4654) (tstamp 625B24C6) + (at 145.45 87.225 180) + (descr "Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf") + (tags "Single 2.4 GHz Wi-Fi and Bluetooth combo chip") + (path /6254C792) + (attr smd) + (fp_text reference U3 (at -3.125 -12) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value ESP32-WROOM-32 (at 0 -11.5) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start -9.12 9.445) (end -9.5 9.445) (layer B.SilkS) (width 0.12)) + (fp_line (start -9.12 15.865) (end -9.12 9.445) (layer B.SilkS) (width 0.12)) + (fp_line (start 9.12 15.865) (end 9.12 9.445) (layer B.SilkS) (width 0.12)) + (fp_line (start -9.12 15.865) (end 9.12 15.865) (layer B.SilkS) (width 0.12)) + (fp_line (start 9.12 -9.88) (end 8.12 -9.88) (layer B.SilkS) (width 0.12)) + (fp_line (start 9.12 -9.1) (end 9.12 -9.88) (layer B.SilkS) (width 0.12)) + (fp_line (start -9.12 -9.88) (end -8.12 -9.88) (layer B.SilkS) (width 0.12)) + (fp_line (start -9.12 -9.1) (end -9.12 -9.88) (layer B.SilkS) (width 0.12)) + (fp_line (start 8.4 20.6) (end 8.2 20.4) (layer Cmts.User) (width 0.1)) + (fp_line (start 8.4 16) (end 8.4 20.6) (layer Cmts.User) (width 0.1)) + (fp_line (start 8.4 20.6) (end 8.6 20.4) (layer Cmts.User) (width 0.1)) + (fp_line (start 8.4 16) (end 8.6 16.2) (layer Cmts.User) (width 0.1)) + (fp_line (start 8.4 16) (end 8.2 16.2) (layer Cmts.User) (width 0.1)) + (fp_line (start -9.2 13.875) (end -9.4 14.075) (layer Cmts.User) (width 0.1)) + (fp_line (start -13.8 13.875) (end -9.2 13.875) (layer Cmts.User) (width 0.1)) + (fp_line (start -9.2 13.875) (end -9.4 13.675) (layer Cmts.User) (width 0.1)) + (fp_line (start -13.8 13.875) (end -13.6 13.675) (layer Cmts.User) (width 0.1)) + (fp_line (start -13.8 13.875) (end -13.6 14.075) (layer Cmts.User) (width 0.1)) + (fp_line (start 9.2 13.875) (end 9.4 13.675) (layer Cmts.User) (width 0.1)) + (fp_line (start 9.2 13.875) (end 9.4 14.075) (layer Cmts.User) (width 0.1)) + (fp_line (start 13.8 13.875) (end 13.6 13.675) (layer Cmts.User) (width 0.1)) + (fp_line (start 13.8 13.875) (end 13.6 14.075) (layer Cmts.User) (width 0.1)) + (fp_line (start 9.2 13.875) (end 13.8 13.875) (layer Cmts.User) (width 0.1)) + (fp_line (start 14 11.585) (end 12 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 13.2) (end 10 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 14.815) (end 8 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 16.43) (end 6 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 18.045) (end 4 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 19.66) (end 2 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 13.475 20.75) (end 0 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 11.475 20.75) (end -2 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 9.475 20.75) (end -4 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 7.475 20.75) (end -6 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start -8 9.97) (end 5.475 20.75) (layer Dwgs.User) (width 0.1)) + (fp_line (start 3.475 20.75) (end -10 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start 1.475 20.75) (end -12 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start -0.525 20.75) (end -14 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start -2.525 20.75) (end -14 11.585) (layer Dwgs.User) (width 0.1)) + (fp_line (start -4.525 20.75) (end -14 13.2) (layer Dwgs.User) (width 0.1)) + (fp_line (start -6.525 20.75) (end -14 14.815) (layer Dwgs.User) (width 0.1)) + (fp_line (start -8.525 20.75) (end -14 16.43) (layer Dwgs.User) (width 0.1)) + (fp_line (start -10.525 20.75) (end -14 18.045) (layer Dwgs.User) (width 0.1)) + (fp_line (start -12.525 20.75) (end -14 19.66) (layer Dwgs.User) (width 0.1)) + (fp_line (start 9.75 9.72) (end 14.25 9.72) (layer B.CrtYd) (width 0.05)) + (fp_line (start -14.25 9.72) (end -9.75 9.72) (layer B.CrtYd) (width 0.05)) + (fp_line (start 14.25 21) (end 14.25 9.72) (layer B.CrtYd) (width 0.05)) + (fp_line (start -14.25 21) (end -14.25 9.72) (layer B.CrtYd) (width 0.05)) + (fp_line (start 14 20.75) (end -14 20.75) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 9.97) (end 14 20.75) (layer Dwgs.User) (width 0.1)) + (fp_line (start 14 9.97) (end -14 9.97) (layer Dwgs.User) (width 0.1)) + (fp_line (start -9 9.02) (end -8.5 9.52) (layer B.Fab) (width 0.1)) + (fp_line (start -8.5 9.52) (end -9 10.02) (layer B.Fab) (width 0.1)) + (fp_line (start -9 9.02) (end -9 -9.76) (layer B.Fab) (width 0.1)) + (fp_line (start -14.25 21) (end 14.25 21) (layer B.CrtYd) (width 0.05)) + (fp_line (start 9.75 9.72) (end 9.75 -10.5) (layer B.CrtYd) (width 0.05)) + (fp_line (start -9.75 -10.5) (end 9.75 -10.5) (layer B.CrtYd) (width 0.05)) + (fp_line (start -9.75 -10.5) (end -9.75 9.72) (layer B.CrtYd) (width 0.05)) + (fp_line (start -9 15.745) (end 9 15.745) (layer B.Fab) (width 0.1)) + (fp_line (start -9 15.745) (end -9 10.02) (layer B.Fab) (width 0.1)) + (fp_line (start -9 -9.76) (end 9 -9.76) (layer B.Fab) (width 0.1)) + (fp_line (start 9 -9.76) (end 9 15.745) (layer B.Fab) (width 0.1)) + (fp_line (start -14 9.97) (end -14 20.75) (layer Dwgs.User) (width 0.1)) + (fp_text user %R (at 0 0) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text user "KEEP-OUT ZONE" (at 0 19) (layer Cmts.User) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user Antenna (at 0 13) (layer Cmts.User) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user "5 mm" (at 11.8 14.375) (layer Cmts.User) + (effects (font (size 0.5 0.5) (thickness 0.1))) + ) + (fp_text user "5 mm" (at -11.2 14.375) (layer Cmts.User) + (effects (font (size 0.5 0.5) (thickness 0.1))) + ) + (fp_text user "5 mm" (at 7.8 19.075 270) (layer Cmts.User) + (effects (font (size 0.5 0.5) (thickness 0.1))) + ) + (pad 39 smd rect (at -1 0.755 180) (size 5 5) (layers B.Cu B.Paste B.Mask) + (net 1 GND)) + (pad 1 smd rect (at -8.5 8.255 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 1 GND)) + (pad 2 smd rect (at -8.5 6.985 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 2 +3V3)) + (pad 3 smd rect (at -8.5 5.715 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 22 ESP_EN)) + (pad 4 smd rect (at -8.5 4.445 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 21 "Net-(U3-Pad4)")) + (pad 5 smd rect (at -8.5 3.175 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 20 "Net-(U3-Pad5)")) + (pad 6 smd rect (at -8.5 1.905 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 19 "Net-(U3-Pad6)")) + (pad 7 smd rect (at -8.5 0.635 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 18 "Net-(U3-Pad7)")) + (pad 8 smd rect (at -8.5 -0.635 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 17 "Net-(U3-Pad8)")) + (pad 9 smd rect (at -8.5 -1.905 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 33 ESP_TRIG4)) + (pad 10 smd rect (at -8.5 -3.175 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 32 ESP_TRIG3)) + (pad 11 smd rect (at -8.5 -4.445 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 31 ESP_TRIG2)) + (pad 12 smd rect (at -8.5 -5.715 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 34 ESP_TRIG1)) + (pad 13 smd rect (at -8.5 -6.985 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 27 ESP_LEDR)) + (pad 14 smd rect (at -8.5 -8.255 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 26 ESP_LEDG)) + (pad 15 smd rect (at -5.715 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 1 GND)) + (pad 16 smd rect (at -4.445 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 25 ESP_LEDB)) + (pad 17 smd rect (at -3.175 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 16 "Net-(U3-Pad17)")) + (pad 18 smd rect (at -1.905 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 15 "Net-(U3-Pad18)")) + (pad 19 smd rect (at -0.635 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 14 "Net-(U3-Pad19)")) + (pad 20 smd rect (at 0.635 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 13 "Net-(U3-Pad20)")) + (pad 21 smd rect (at 1.905 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 12 "Net-(U3-Pad21)")) + (pad 22 smd rect (at 3.175 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 11 "Net-(U3-Pad22)")) + (pad 23 smd rect (at 4.445 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 24 ESP_SERVICE)) + (pad 24 smd rect (at 5.715 -9.255 90) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 35 "Net-(U3-Pad24)")) + (pad 25 smd rect (at 8.5 -8.255 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 23 ESP_BOOT)) + (pad 26 smd rect (at 8.5 -6.985 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 36 "Net-(U3-Pad26)")) + (pad 27 smd rect (at 8.5 -5.715 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 37 "Net-(U3-Pad27)")) + (pad 28 smd rect (at 8.5 -4.445 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 38 "Net-(U3-Pad28)")) + (pad 29 smd rect (at 8.5 -3.175 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 10 "Net-(U3-Pad29)")) + (pad 30 smd rect (at 8.5 -1.905 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 9 "Net-(U3-Pad30)")) + (pad 31 smd rect (at 8.5 -0.635 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 8 "Net-(U3-Pad31)")) + (pad 32 smd rect (at 8.5 0.635 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 7 "Net-(U3-Pad32)")) + (pad 33 smd rect (at 8.5 1.905 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 6 "Net-(U3-Pad33)")) + (pad 34 smd rect (at 8.5 3.175 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 30 ESP_RXD0)) + (pad 35 smd rect (at 8.5 4.445 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 29 ESP_TXD0)) + (pad 36 smd rect (at 8.5 5.715 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 5 "Net-(U3-Pad36)")) + (pad 37 smd rect (at 8.5 6.985 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 4 "Net-(U3-Pad37)")) + (pad 38 smd rect (at 8.5 8.255 180) (size 2 0.9) (layers B.Cu B.Paste B.Mask) + (net 1 GND)) + (model ${KISYS3DMOD}/RF_Module.3dshapes/ESP32-WROOM-32.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Diode_SMD:D_SOD-123 (layer B.Cu) (tedit 58645DC7) (tstamp 625B21DF) + (at 135.45 110.425 90) + (descr SOD-123) + (tags SOD-123) + (path /6254D8E2) + (attr smd) + (fp_text reference D2 (at -0.175 -1.725 270) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value STPS0530Z (at 0 -2.1 270) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start -2.25 1) (end 1.65 1) (layer B.SilkS) (width 0.12)) + (fp_line (start -2.25 -1) (end 1.65 -1) (layer B.SilkS) (width 0.12)) + (fp_line (start -2.35 1.15) (end -2.35 -1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start 2.35 -1.15) (end -2.35 -1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start 2.35 1.15) (end 2.35 -1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start -2.35 1.15) (end 2.35 1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.4 0.9) (end 1.4 0.9) (layer B.Fab) (width 0.1)) + (fp_line (start 1.4 0.9) (end 1.4 -0.9) (layer B.Fab) (width 0.1)) + (fp_line (start 1.4 -0.9) (end -1.4 -0.9) (layer B.Fab) (width 0.1)) + (fp_line (start -1.4 -0.9) (end -1.4 0.9) (layer B.Fab) (width 0.1)) + (fp_line (start -0.75 0) (end -0.35 0) (layer B.Fab) (width 0.1)) + (fp_line (start -0.35 0) (end -0.35 0.55) (layer B.Fab) (width 0.1)) + (fp_line (start -0.35 0) (end -0.35 -0.55) (layer B.Fab) (width 0.1)) + (fp_line (start -0.35 0) (end 0.25 0.4) (layer B.Fab) (width 0.1)) + (fp_line (start 0.25 0.4) (end 0.25 -0.4) (layer B.Fab) (width 0.1)) + (fp_line (start 0.25 -0.4) (end -0.35 0) (layer B.Fab) (width 0.1)) + (fp_line (start 0.25 0) (end 0.75 0) (layer B.Fab) (width 0.1)) + (fp_line (start -2.25 1) (end -2.25 -1) (layer B.SilkS) (width 0.12)) + (fp_text user %R (at 0 2 270) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (pad 1 smd rect (at -1.65 0 90) (size 0.9 1.2) (layers B.Cu B.Paste B.Mask) + (net 3 "Net-(D2-Pad1)")) + (pad 2 smd rect (at 1.65 0 90) (size 0.9 1.2) (layers B.Cu B.Paste B.Mask) + (net 1 GND)) + (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-123.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Package_SO:SOP-8_3.9x4.9mm_P1.27mm (layer B.Cu) (tedit 5D9F72B1) (tstamp 625B1D60) + (at 143.6 106.825) + (descr "SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOP SO") + (path /62543E69) + (attr smd) + (fp_text reference U1 (at 0 -3.525) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value AP1509-33SG-13 (at 0 -3.4) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start 3.7 2.7) (end -3.7 2.7) (layer B.CrtYd) (width 0.05)) + (fp_line (start 3.7 -2.7) (end 3.7 2.7) (layer B.CrtYd) (width 0.05)) + (fp_line (start -3.7 -2.7) (end 3.7 -2.7) (layer B.CrtYd) (width 0.05)) + (fp_line (start -3.7 2.7) (end -3.7 -2.7) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.95 1.475) (end -0.975 2.45) (layer B.Fab) (width 0.1)) + (fp_line (start -1.95 -2.45) (end -1.95 1.475) (layer B.Fab) (width 0.1)) + (fp_line (start 1.95 -2.45) (end -1.95 -2.45) (layer B.Fab) (width 0.1)) + (fp_line (start 1.95 2.45) (end 1.95 -2.45) (layer B.Fab) (width 0.1)) + (fp_line (start -0.975 2.45) (end 1.95 2.45) (layer B.Fab) (width 0.1)) + (fp_line (start 0 2.56) (end -3.45 2.56) (layer B.SilkS) (width 0.12)) + (fp_line (start 0 2.56) (end 1.95 2.56) (layer B.SilkS) (width 0.12)) + (fp_line (start 0 -2.56) (end -1.95 -2.56) (layer B.SilkS) (width 0.12)) + (fp_line (start 0 -2.56) (end 1.95 -2.56) (layer B.SilkS) (width 0.12)) + (fp_text user %R (at 0 0) (layer B.Fab) + (effects (font (size 0.98 0.98) (thickness 0.15)) (justify mirror)) + ) + (pad 1 smd roundrect (at -2.625 1.905) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 42 F12V)) + (pad 2 smd roundrect (at -2.625 0.635) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 3 "Net-(D2-Pad1)")) + (pad 3 smd roundrect (at -2.625 -0.635) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 2 +3V3)) + (pad 4 smd roundrect (at -2.625 -1.905) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 5 smd roundrect (at 2.625 -1.905) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 6 smd roundrect (at 2.625 -0.635) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 7 smd roundrect (at 2.625 0.635) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 8 smd roundrect (at 2.625 1.905) (size 1.65 0.6) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (model ${KISYS3DMOD}/Package_SO.3dshapes/SOP-8_3.9x4.9mm_P1.27mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 625B1DA8) + (at 135.45 104.975 270) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6255137B) + (attr smd) + (fp_text reference C3 (at -0.4 1.55 90) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 10uF (at 0 -1.43 90) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer B.SilkS) (width 0.12)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer B.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + ) + (pad 1 smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 2 +3V3)) + (pad 2 smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Fuse:Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder (layer B.Cu) (tedit 5F68FEF1) (tstamp 625B2228) + (at 135.55 116.675) + (descr "Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "fuse handsolder") + (path /6256A671) + (attr smd) + (fp_text reference F1 (at 0.375 1.625) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 2A/32V (at 0 -1.43) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -0.171267 -0.51) (end 0.171267 -0.51) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.171267 0.51) (end 0.171267 0.51) (layer B.SilkS) (width 0.12)) + (fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer B.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer B.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + ) + (pad 1 smd roundrect (at -0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 42 F12V)) + (pad 2 smd roundrect (at 0.875 0) (size 1.05 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 28 +12V)) + (model ${KISYS3DMOD}/Fuse.3dshapes/Fuse_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Diode_SMD:D_2010_5025Metric_Pad1.52x2.65mm_HandSolder (layer B.Cu) (tedit 5F68FEF0) (tstamp 625B2107) + (at 151.4 117.4875 270) + (descr "Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "diode handsolder") + (path /6256B9D7) + (attr smd) + (fp_text reference D1 (at 0 2.28 270) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value S1A (at 0 -2.28 270) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start 3.35 -1.58) (end -3.35 -1.58) (layer B.CrtYd) (width 0.05)) + (fp_line (start 3.35 1.58) (end 3.35 -1.58) (layer B.CrtYd) (width 0.05)) + (fp_line (start -3.35 1.58) (end 3.35 1.58) (layer B.CrtYd) (width 0.05)) + (fp_line (start -3.35 -1.58) (end -3.35 1.58) (layer B.CrtYd) (width 0.05)) + (fp_line (start -3.36 -1.585) (end 2.5 -1.585) (layer B.SilkS) (width 0.12)) + (fp_line (start -3.36 1.585) (end -3.36 -1.585) (layer B.SilkS) (width 0.12)) + (fp_line (start 2.5 1.585) (end -3.36 1.585) (layer B.SilkS) (width 0.12)) + (fp_line (start 2.5 -1.25) (end 2.5 1.25) (layer B.Fab) (width 0.1)) + (fp_line (start -2.5 -1.25) (end 2.5 -1.25) (layer B.Fab) (width 0.1)) + (fp_line (start -2.5 0.625) (end -2.5 -1.25) (layer B.Fab) (width 0.1)) + (fp_line (start -1.875 1.25) (end -2.5 0.625) (layer B.Fab) (width 0.1)) + (fp_line (start 2.5 1.25) (end -1.875 1.25) (layer B.Fab) (width 0.1)) + (fp_text user %R (at 0 0 270) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (pad 1 smd roundrect (at -2.3375 0 270) (size 1.525 2.65) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.1639337704918033) + (net 42 F12V)) + (pad 2 smd roundrect (at 2.3375 0 270) (size 1.525 2.65) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.1639337704918033) + (net 1 GND)) + (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_2010_5025Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder (layer B.Cu) (tedit 5F68FEEF) (tstamp 625B230F) + (at 135.55 122.0975) + (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6255418D) + (attr smd) + (fp_text reference C1 (at 0.575 -1.8225) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 4.7uF (at 0 -1.85) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start 2.48 -1.15) (end -2.48 -1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start 2.48 1.15) (end 2.48 -1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start -2.48 1.15) (end 2.48 1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start -2.48 -1.15) (end -2.48 1.15) (layer B.CrtYd) (width 0.05)) + (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.711252 0.91) (end 0.711252 0.91) (layer B.SilkS) (width 0.12)) + (fp_line (start 1.6 -0.8) (end -1.6 -0.8) (layer B.Fab) (width 0.1)) + (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer B.Fab) (width 0.1)) + (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer B.Fab) (width 0.1)) + (fp_line (start -1.6 -0.8) (end -1.6 0.8) (layer B.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer B.Fab) + (effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror)) + ) + (pad 1 smd roundrect (at -1.5625 0) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.1886784905660377) + (net 42 F12V)) + (pad 2 smd roundrect (at 1.5625 0) (size 1.325 1.8) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.1886784905660377) + (net 1 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Package_DIP:SMDIP-16_W9.53mm (layer F.Cu) (tedit 5A02E8C5) (tstamp 625B2352) + (at 143.2 100.175 180) + (descr "16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils)") + (tags "SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil") + (path /62546E7C) + (attr smd) + (fp_text reference U2 (at -4.6 -11.2) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value LTV-847S (at 0 11.22) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 6.05 -10.45) (end -6.05 -10.45) (layer F.CrtYd) (width 0.05)) + (fp_line (start 6.05 10.45) (end 6.05 -10.45) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.05 10.45) (end 6.05 10.45) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.05 -10.45) (end -6.05 10.45) (layer F.CrtYd) (width 0.05)) + (fp_line (start 3.235 -10.22) (end 1 -10.22) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.235 10.22) (end 3.235 -10.22) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.235 10.22) (end 3.235 10.22) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.235 -10.22) (end -3.235 10.22) (layer F.SilkS) (width 0.12)) + (fp_line (start -1 -10.22) (end -3.235 -10.22) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.175 -9.16) (end -2.175 -10.16) (layer F.Fab) (width 0.1)) + (fp_line (start -3.175 10.16) (end -3.175 -9.16) (layer F.Fab) (width 0.1)) + (fp_line (start 3.175 10.16) (end -3.175 10.16) (layer F.Fab) (width 0.1)) + (fp_line (start 3.175 -10.16) (end 3.175 10.16) (layer F.Fab) (width 0.1)) + (fp_line (start -2.175 -10.16) (end 3.175 -10.16) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start 0 -10.22) (end -1 -10.22) (angle -180) (layer F.SilkS) (width 0.12)) + (pad 16 smd rect (at 4.765 -8.89 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 48 /T1C)) + (pad 8 smd rect (at -4.765 8.89 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (pad 15 smd rect (at 4.765 -6.35 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 47 /T1E)) + (pad 7 smd rect (at -4.765 6.35 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 46 /T4_CTL)) + (pad 14 smd rect (at 4.765 -3.81 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 50 /T2C)) + (pad 6 smd rect (at -4.765 3.81 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (pad 13 smd rect (at 4.765 -1.27 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 49 /T2E)) + (pad 5 smd rect (at -4.765 1.27 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 45 /T3_CTL)) + (pad 12 smd rect (at 4.765 1.27 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 52 /T3C)) + (pad 4 smd rect (at -4.765 -1.27 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (pad 11 smd rect (at 4.765 3.81 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 51 /T3E)) + (pad 3 smd rect (at -4.765 -3.81 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 44 /T2_CTL)) + (pad 10 smd rect (at 4.765 6.35 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 54 /T4C)) + (pad 2 smd rect (at -4.765 -6.35 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (pad 9 smd rect (at 4.765 8.89 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 53 /T4E)) + (pad 1 smd rect (at -4.765 -8.89 180) (size 2 1.78) (layers F.Cu F.Paste F.Mask) + (net 43 /T1_CTL)) + (model ${KISYS3DMOD}/Package_DIP.3dshapes/SMDIP-16_W9.53mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder (layer B.Cu) (tedit 5F68FEEE) (tstamp 625B1E26) + (at 159.525 81.15 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /62648324) + (attr smd) + (fp_text reference R4 (at 2.95 -0.025 270) (layer B.SilkS) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_text value 10k (at 0 -1.43 270) (layer B.Fab) + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + ) + (fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 0.73) (end 1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer B.CrtYd) (width 0.05)) + (fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer B.SilkS) (width 0.12)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer B.Fab) (width 0.1)) + (fp_text user %R (at 0 0 270) (layer B.Fab) + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + ) + (pad 1 smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 22 ESP_EN)) + (pad 2 smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.25) + (net 2 +3V3)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm (layer F.Cu) (tedit 59FF0306) (tstamp 625D8DCB) + (at 127.4 74.65 90) + (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf") + (tags "Altech AK300 terminal block pitch 5.0mm") + (path /625CB285) + (fp_text reference J6 (at 2.75 -5.325 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TRIG4_IO (at 2.78 7.75 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start -1.13 -4.65) (end -1.42 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start -0.01 -3.71) (end -1.62 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 0.06 -6.07) (end 1.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 1.03 -4.59) (end 1.53 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 3.87 -4.65) (end 3.58 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.99 -3.71) (end 3.39 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 5.07 -6.07) (end 6.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 6.03 -4.59) (end 6.54 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 2.5 -2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.65 -6.3) (end -2.65 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -2.65 6.3) (end 7.7 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 6.3) (end 7.7 5.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 5.35) (end 8.2 5.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 5.6) (end 8.2 3.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.7) (end 8.2 3.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.65) (end 7.7 3.9) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 3.9) (end 7.7 -1.5) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 -1.5) (end 8.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -1.2) (end 8.2 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -6.3) (end -2.65 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.26 2.54) (end 1.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 1.28 2.54) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 -0.25) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 2.54) (end -1.26 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 6.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 6.28 2.54) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 -0.25) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 3.74 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 8.11 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -6.22) (end 8.11 -1.4) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -1.4) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 5.46) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 5.21) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 4.06) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 8.11 5.46) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 2.98 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 6.22) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.04 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.98 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 6.22) (end 2.04 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 2.98 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 4.32) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end 2.04 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 4.32) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 6.67 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 3.36 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 3.68) (end 3.36 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end 1.66 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end -1.64 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 3.68) (end -1.64 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 0.51) (end -1.26 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 0.51) (end 1.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 0.51) (end 3.74 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 0.51) (end 6.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.58 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -2.58 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -1.65) (end 7.61 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -3.17) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -3.43) (end 2.98 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -5.97) (end 7.05 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -5.97) (end 7.05 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -3.43) (end 2.98 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end 2.04 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end -2.02 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -3.43) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -5.97) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 3.39 -4.45) (end 6.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start 3.52 -4.32) (end 6.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -1.62 -4.45) (end 1.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start -1.49 -4.32) (end 1.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -0.25) (end 1.66 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -1.64 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 -0.64) (end 1.66 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 6.67 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -0.25) (end 3.36 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.83 -6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -2.83 -6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (pad 2 thru_hole oval (at 5 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 53 /T4E)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 54 /T4C)) + (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_Altech_AK300-2_P5.00mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm (layer F.Cu) (tedit 59FF0306) (tstamp 625D902F) + (at 127.4 86 90) + (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf") + (tags "Altech AK300 terminal block pitch 5.0mm") + (path /625CAE0A) + (fp_text reference J5 (at 2.35 -5.275 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TRIG3_IO (at 2.78 7.75 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start -1.13 -4.65) (end -1.42 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start -0.01 -3.71) (end -1.62 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 0.06 -6.07) (end 1.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 1.03 -4.59) (end 1.53 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 3.87 -4.65) (end 3.58 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.99 -3.71) (end 3.39 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 5.07 -6.07) (end 6.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 6.03 -4.59) (end 6.54 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 2.5 -2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.65 -6.3) (end -2.65 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -2.65 6.3) (end 7.7 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 6.3) (end 7.7 5.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 5.35) (end 8.2 5.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 5.6) (end 8.2 3.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.7) (end 8.2 3.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.65) (end 7.7 3.9) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 3.9) (end 7.7 -1.5) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 -1.5) (end 8.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -1.2) (end 8.2 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -6.3) (end -2.65 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.26 2.54) (end 1.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 1.28 2.54) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 -0.25) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 2.54) (end -1.26 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 6.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 6.28 2.54) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 -0.25) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 3.74 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 8.11 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -6.22) (end 8.11 -1.4) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -1.4) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 5.46) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 5.21) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 4.06) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 8.11 5.46) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 2.98 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 6.22) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.04 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.98 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 6.22) (end 2.04 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 2.98 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 4.32) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end 2.04 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 4.32) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 6.67 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 3.36 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 3.68) (end 3.36 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end 1.66 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end -1.64 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 3.68) (end -1.64 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 0.51) (end -1.26 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 0.51) (end 1.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 0.51) (end 3.74 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 0.51) (end 6.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.58 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -2.58 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -1.65) (end 7.61 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -3.17) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -3.43) (end 2.98 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -5.97) (end 7.05 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -5.97) (end 7.05 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -3.43) (end 2.98 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end 2.04 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end -2.02 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -3.43) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -5.97) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 3.39 -4.45) (end 6.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start 3.52 -4.32) (end 6.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -1.62 -4.45) (end 1.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start -1.49 -4.32) (end 1.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -0.25) (end 1.66 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -1.64 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 -0.64) (end 1.66 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 6.67 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -0.25) (end 3.36 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.83 -6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -2.83 -6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (pad 2 thru_hole oval (at 5 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 51 /T3E)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 52 /T3C)) + (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_Altech_AK300-2_P5.00mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm (layer F.Cu) (tedit 59FF0306) (tstamp 625D975E) + (at 127.4155 97.355 90) + (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf") + (tags "Altech AK300 terminal block pitch 5.0mm") + (path /625B6037) + (fp_text reference J3 (at 2.18 -5.4405 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TRIG2_IO (at 2.78 7.75 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start -1.13 -4.65) (end -1.42 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start -0.01 -3.71) (end -1.62 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 0.06 -6.07) (end 1.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 1.03 -4.59) (end 1.53 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 3.87 -4.65) (end 3.58 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.99 -3.71) (end 3.39 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 5.07 -6.07) (end 6.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 6.03 -4.59) (end 6.54 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 2.5 -2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.65 -6.3) (end -2.65 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -2.65 6.3) (end 7.7 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 6.3) (end 7.7 5.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 5.35) (end 8.2 5.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 5.6) (end 8.2 3.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.7) (end 8.2 3.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.65) (end 7.7 3.9) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 3.9) (end 7.7 -1.5) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 -1.5) (end 8.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -1.2) (end 8.2 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -6.3) (end -2.65 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.26 2.54) (end 1.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 1.28 2.54) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 -0.25) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 2.54) (end -1.26 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 6.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 6.28 2.54) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 -0.25) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 3.74 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 8.11 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -6.22) (end 8.11 -1.4) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -1.4) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 5.46) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 5.21) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 4.06) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 8.11 5.46) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 2.98 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 6.22) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.04 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.98 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 6.22) (end 2.04 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 2.98 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 4.32) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end 2.04 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 4.32) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 6.67 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 3.36 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 3.68) (end 3.36 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end 1.66 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end -1.64 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 3.68) (end -1.64 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 0.51) (end -1.26 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 0.51) (end 1.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 0.51) (end 3.74 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 0.51) (end 6.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.58 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -2.58 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -1.65) (end 7.61 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -3.17) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -3.43) (end 2.98 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -5.97) (end 7.05 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -5.97) (end 7.05 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -3.43) (end 2.98 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end 2.04 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end -2.02 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -3.43) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -5.97) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 3.39 -4.45) (end 6.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start 3.52 -4.32) (end 6.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -1.62 -4.45) (end 1.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start -1.49 -4.32) (end 1.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -0.25) (end 1.66 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -1.64 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 -0.64) (end 1.66 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 6.67 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -0.25) (end 3.36 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.83 -6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -2.83 -6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (pad 2 thru_hole oval (at 5 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 49 /T2E)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 50 /T2C)) + (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_Altech_AK300-2_P5.00mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm (layer F.Cu) (tedit 59FF0306) (tstamp 625D8EFD) + (at 127.4155 108.7215 90) + (descr "Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf") + (tags "Altech AK300 terminal block pitch 5.0mm") + (path /625717F1) + (fp_text reference J2 (at 2.3215 -5.4905 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TRIG1_IO (at 2.78 7.75 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start -1.13 -4.65) (end -1.42 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start -0.01 -3.71) (end -1.62 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 0.06 -6.07) (end 1.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 1.03 -4.59) (end 1.53 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 3.87 -4.65) (end 3.58 -4.13) (angle 104.2) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.99 -3.71) (end 3.39 -5) (angle 100) (layer F.Fab) (width 0.1)) + (fp_arc (start 5.07 -6.07) (end 6.53 -4.12) (angle 75.5) (layer F.Fab) (width 0.1)) + (fp_arc (start 6.03 -4.59) (end 6.54 -5.05) (angle 90.5) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 2.5 -2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.65 -6.3) (end -2.65 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -2.65 6.3) (end 7.7 6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 6.3) (end 7.7 5.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 5.35) (end 8.2 5.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 5.6) (end 8.2 3.7) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.7) (end 8.2 3.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 3.65) (end 7.7 3.9) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 3.9) (end 7.7 -1.5) (layer F.SilkS) (width 0.12)) + (fp_line (start 7.7 -1.5) (end 8.2 -1.2) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -1.2) (end 8.2 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.2 -6.3) (end -2.65 -6.3) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.26 2.54) (end 1.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 1.28 2.54) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 -0.25) (end 1.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -1.26 2.54) (end -1.26 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 6.28 2.54) (layer F.Fab) (width 0.1)) + (fp_line (start 6.28 2.54) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 -0.25) (end 6.28 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.74 2.54) (end 3.74 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -6.22) (end 8.11 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -6.22) (end 8.11 -1.4) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 -1.4) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 5.46) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 5.21) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 4.06) (end 7.61 5.21) (layer F.Fab) (width 0.1)) + (fp_line (start 8.11 3.81) (end 8.11 5.46) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 2.98 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 6.22) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 6.22) (end 7.61 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.04 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 6.22) (end 2.98 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 6.22) (end 2.04 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 7.05 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 4.32) (end 2.98 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 4.32) (end 7.05 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end -2.02 4.32) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 4.32) (end 2.04 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 4.32) (end -2.02 6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 6.67 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 3.68) (end 3.36 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 3.68) (end 3.36 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end 1.66 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 3.68) (end -1.64 3.68) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 3.68) (end -1.64 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 0.51) (end -1.26 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 0.51) (end 1.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 0.51) (end 3.74 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 0.51) (end 6.28 0.51) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 6.22) (end -2.58 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -2.58 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -1.65) (end 7.61 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 7.61 4.06) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end 7.61 -3.17) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -3.17) (end -2.58 -6.22) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -3.17) (end 7.61 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -3.43) (end 2.98 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -5.97) (end 7.05 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -5.97) (end 7.05 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -3.43) (end 2.98 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end 2.04 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -3.43) (end -2.02 -3.43) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -3.43) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -5.97) (end -2.02 -5.97) (layer F.Fab) (width 0.1)) + (fp_line (start 3.39 -4.45) (end 6.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start 3.52 -4.32) (end 6.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -1.62 -4.45) (end 1.44 -5.08) (layer F.Fab) (width 0.1)) + (fp_line (start -1.49 -4.32) (end 1.56 -4.95) (layer F.Fab) (width 0.1)) + (fp_line (start -2.02 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.04 -0.25) (end 1.66 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.25) (end -1.64 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.58 -0.64) (end -1.64 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start -1.64 -0.64) (end 1.66 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 1.66 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.61 -0.64) (end 6.67 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 6.67 -0.64) (end 3.36 -0.64) (layer F.Fab) (width 0.1)) + (fp_line (start 7.05 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 2.98 -0.25) (end 3.36 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 3.36 -0.25) (end 6.67 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -2.83 -6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -2.83 -6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end 8.36 -6.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 8.36 6.47) (end -2.83 6.47) (layer F.CrtYd) (width 0.05)) + (pad 2 thru_hole oval (at 5 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 47 /T1E)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.98 3.96) (drill 1.32) (layers *.Cu *.Mask) + (net 48 /T1C)) + (model ${KISYS3DMOD}/TerminalBlock.3dshapes/TerminalBlock_Altech_AK300-2_P5.00mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Button_Switch_SMD:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin (layer F.Cu) (tedit 5A4E1404) (tstamp 625B28E9) + (at 154.325 71.125 270) + (descr "SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin") + (tags "SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin") + (path /626217FC) + (attr smd) + (fp_text reference SW3 (at -3.975 3.925 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value SERVICE (at 0.3 3.2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 4.7 -2.4) (end -4.7 -2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.7 2.4) (end 4.7 -2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.7 2.4) (end 4.7 2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.7 -2.4) (end -4.7 2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.603333 -0.635) (end -0.603333 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.565) (end -0.603333 0.565) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.445) (end -0.603333 0.445) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.325) (end -0.603333 0.325) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.205) (end -0.603333 0.205) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.085) (end -0.603333 0.085) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.035) (end -0.603333 -0.035) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.155) (end -0.603333 -0.155) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.275) (end -0.603333 -0.275) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.395) (end -0.603333 -0.395) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.515) (end -0.603333 -0.515) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.81 -0.635) (end -1.81 -0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.81 0.635) (end 1.81 -0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.635) (end 1.81 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.635) (end -1.81 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.65 -2.35) (end -3.65 -0.967) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.65 -2.35) (end -2.267 -2.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.41 0.8) (end 3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.41 -2.11) (end 3.41 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 0.8) (end -3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 -2.11) (end -3.41 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 2.11) (end 3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 -2.11) (end 3.41 -2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.603333 -0.635) (end -0.603333 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.565) (end -0.603333 0.565) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.465) (end -0.603333 0.465) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.365) (end -0.603333 0.365) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.265) (end -0.603333 0.265) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.165) (end -0.603333 0.165) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.065) (end -0.603333 0.065) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.035) (end -0.603333 -0.035) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.135) (end -0.603333 -0.135) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.235) (end -0.603333 -0.235) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.335) (end -0.603333 -0.335) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.435) (end -0.603333 -0.435) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.535) (end -0.603333 -0.535) (layer F.Fab) (width 0.1)) + (fp_line (start 1.81 -0.635) (end -1.81 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start 1.81 0.635) (end 1.81 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.635) (end 1.81 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.635) (end -1.81 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -3.35 -1.05) (end -2.35 -2.05) (layer F.Fab) (width 0.1)) + (fp_line (start -3.35 2.05) (end -3.35 -1.05) (layer F.Fab) (width 0.1)) + (fp_line (start 3.35 2.05) (end -3.35 2.05) (layer F.Fab) (width 0.1)) + (fp_line (start 3.35 -2.05) (end 3.35 2.05) (layer F.Fab) (width 0.1)) + (fp_line (start -2.35 -2.05) (end 3.35 -2.05) (layer F.Fab) (width 0.1)) + (fp_text user on (at 0.8975 -1.3425 90) (layer F.Fab) + (effects (font (size 0.6 0.6) (thickness 0.09))) + ) + (fp_text user %R (at 2.58 0) (layer F.Fab) + (effects (font (size 0.6 0.6) (thickness 0.09))) + ) + (pad 2 smd rect (at 3.365 0 270) (size 2.16 1.12) (layers F.Cu F.Paste F.Mask) + (net 24 ESP_SERVICE)) + (pad 1 smd rect (at -3.365 0 270) (size 2.16 1.12) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 90)) + ) + ) + + (module Button_Switch_SMD:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin (layer F.Cu) (tedit 5A4E1404) (tstamp 625DE620) + (at 142.35 81.375 270) + (descr "SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin") + (tags "SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin") + (path /626BA194) + (attr smd) + (fp_text reference SW2 (at -0.35 4) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value BOOT (at 0 3.11 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 4.7 -2.4) (end -4.7 -2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.7 2.4) (end 4.7 -2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.7 2.4) (end 4.7 2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.7 -2.4) (end -4.7 2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.603333 -0.635) (end -0.603333 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.565) (end -0.603333 0.565) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.445) (end -0.603333 0.445) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.325) (end -0.603333 0.325) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.205) (end -0.603333 0.205) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.085) (end -0.603333 0.085) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.035) (end -0.603333 -0.035) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.155) (end -0.603333 -0.155) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.275) (end -0.603333 -0.275) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.395) (end -0.603333 -0.395) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.515) (end -0.603333 -0.515) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.81 -0.635) (end -1.81 -0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.81 0.635) (end 1.81 -0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.635) (end 1.81 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.635) (end -1.81 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.65 -2.35) (end -3.65 -0.967) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.65 -2.35) (end -2.267 -2.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.41 0.8) (end 3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.41 -2.11) (end 3.41 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 0.8) (end -3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 -2.11) (end -3.41 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 2.11) (end 3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 -2.11) (end 3.41 -2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.603333 -0.635) (end -0.603333 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.565) (end -0.603333 0.565) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.465) (end -0.603333 0.465) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.365) (end -0.603333 0.365) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.265) (end -0.603333 0.265) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.165) (end -0.603333 0.165) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.065) (end -0.603333 0.065) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.035) (end -0.603333 -0.035) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.135) (end -0.603333 -0.135) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.235) (end -0.603333 -0.235) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.335) (end -0.603333 -0.335) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.435) (end -0.603333 -0.435) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.535) (end -0.603333 -0.535) (layer F.Fab) (width 0.1)) + (fp_line (start 1.81 -0.635) (end -1.81 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start 1.81 0.635) (end 1.81 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.635) (end 1.81 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.635) (end -1.81 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -3.35 -1.05) (end -2.35 -2.05) (layer F.Fab) (width 0.1)) + (fp_line (start -3.35 2.05) (end -3.35 -1.05) (layer F.Fab) (width 0.1)) + (fp_line (start 3.35 2.05) (end -3.35 2.05) (layer F.Fab) (width 0.1)) + (fp_line (start 3.35 -2.05) (end 3.35 2.05) (layer F.Fab) (width 0.1)) + (fp_line (start -2.35 -2.05) (end 3.35 -2.05) (layer F.Fab) (width 0.1)) + (fp_text user on (at 0.8975 -1.3425 90) (layer F.Fab) + (effects (font (size 0.6 0.6) (thickness 0.09))) + ) + (fp_text user %R (at 2.58 0) (layer F.Fab) + (effects (font (size 0.6 0.6) (thickness 0.09))) + ) + (pad 2 smd rect (at 3.365 0 270) (size 2.16 1.12) (layers F.Cu F.Paste F.Mask) + (net 23 ESP_BOOT)) + (pad 1 smd rect (at -3.365 0 270) (size 2.16 1.12) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 90)) + ) + ) + + (module Button_Switch_SMD:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin (layer F.Cu) (tedit 5A4E1404) (tstamp 625DB764) + (at 160.65 71.15 270) + (descr "SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin") + (tags "SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin") + (path /625614CB) + (attr smd) + (fp_text reference SW1 (at 5.75 -1.25 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value RESET (at 0 3.11 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 4.7 -2.4) (end -4.7 -2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.7 2.4) (end 4.7 -2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.7 2.4) (end 4.7 2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.7 -2.4) (end -4.7 2.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.603333 -0.635) (end -0.603333 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.565) (end -0.603333 0.565) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.445) (end -0.603333 0.445) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.325) (end -0.603333 0.325) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.205) (end -0.603333 0.205) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.085) (end -0.603333 0.085) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.035) (end -0.603333 -0.035) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.155) (end -0.603333 -0.155) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.275) (end -0.603333 -0.275) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.395) (end -0.603333 -0.395) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.515) (end -0.603333 -0.515) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.81 -0.635) (end -1.81 -0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.81 0.635) (end 1.81 -0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 0.635) (end 1.81 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.81 -0.635) (end -1.81 0.635) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.65 -2.35) (end -3.65 -0.967) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.65 -2.35) (end -2.267 -2.35) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.41 0.8) (end 3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.41 -2.11) (end 3.41 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 0.8) (end -3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 -2.11) (end -3.41 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 2.11) (end 3.41 2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.41 -2.11) (end 3.41 -2.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.603333 -0.635) (end -0.603333 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.565) (end -0.603333 0.565) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.465) (end -0.603333 0.465) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.365) (end -0.603333 0.365) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.265) (end -0.603333 0.265) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.165) (end -0.603333 0.165) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.065) (end -0.603333 0.065) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.035) (end -0.603333 -0.035) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.135) (end -0.603333 -0.135) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.235) (end -0.603333 -0.235) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.335) (end -0.603333 -0.335) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.435) (end -0.603333 -0.435) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.535) (end -0.603333 -0.535) (layer F.Fab) (width 0.1)) + (fp_line (start 1.81 -0.635) (end -1.81 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start 1.81 0.635) (end 1.81 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 0.635) (end 1.81 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.81 -0.635) (end -1.81 0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -3.35 -1.05) (end -2.35 -2.05) (layer F.Fab) (width 0.1)) + (fp_line (start -3.35 2.05) (end -3.35 -1.05) (layer F.Fab) (width 0.1)) + (fp_line (start 3.35 2.05) (end -3.35 2.05) (layer F.Fab) (width 0.1)) + (fp_line (start 3.35 -2.05) (end 3.35 2.05) (layer F.Fab) (width 0.1)) + (fp_line (start -2.35 -2.05) (end 3.35 -2.05) (layer F.Fab) (width 0.1)) + (fp_text user on (at 0.8975 -1.3425 90) (layer F.Fab) + (effects (font (size 0.6 0.6) (thickness 0.09))) + ) + (fp_text user %R (at 2.58 0) (layer F.Fab) + (effects (font (size 0.6 0.6) (thickness 0.09))) + ) + (pad 2 smd rect (at 3.365 0 270) (size 2.16 1.12) (layers F.Cu F.Paste F.Mask) + (net 22 ESP_EN)) + (pad 1 smd rect (at -3.365 0 270) (size 2.16 1.12) (layers F.Cu F.Paste F.Mask) + (net 1 GND)) + (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 90)) + ) + ) + + (module Inductor_SMD:L_Bourns_SRN6045TA (layer F.Cu) (tedit 5B61DEEA) (tstamp 625B2B11) + (at 157.45 105.975 180) + (descr http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf) + (tags "Semi-shielded Power Inductor") + (path /6254EE90) + (attr smd) + (fp_text reference L1 (at -2.375 3.95) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value DJNR6045-470-S (at 0 4.2) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -3.1 -3.1) (end -3.1 -2.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.5 -3.25) (end -3.5 -3.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -3.5 3.25) (end 3.5 3.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -3.5 -3.25) (end -3.5 3.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 3.5 3.25) (end 3.5 -3.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -3.1 3.1) (end -3.1 2.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.1 3.1) (end 3.1 2.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.1 3.1) (end -3.1 3.1) (layer F.SilkS) (width 0.12)) + (fp_line (start 3.1 -3.1) (end 3.1 -2.65) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.1 -3.1) (end 3.1 -3.1) (layer F.SilkS) (width 0.12)) + (fp_line (start 3 3) (end 3 -3) (layer F.Fab) (width 0.1)) + (fp_line (start -3 3) (end 3 3) (layer F.Fab) (width 0.1)) + (fp_line (start -3 -3) (end -3 3) (layer F.Fab) (width 0.1)) + (fp_line (start -3 -3) (end 3 -3) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 2 smd rect (at 2.075 0 180) (size 2.35 5.1) (layers F.Cu F.Paste F.Mask) + (net 2 +3V3)) + (pad 1 smd rect (at -2.075 0 180) (size 2.35 5.1) (layers F.Cu F.Paste F.Mask) + (net 3 "Net-(D2-Pad1)")) + (model ${KISYS3DMOD}/Inductor_SMD.3dshapes/L_Bourns_SRN6045TA.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 625B2978) + (at 156.075 114.825) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (path /628EA355) + (fp_text reference J4 (at 0.025 -2.475) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value UART (at 0 7.41) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 2.54 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 1 GND)) + (pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 29 ESP_TXD0)) + (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 30 ESP_RXD0)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_BarrelJack:BarrelJack_Horizontal (layer F.Cu) (tedit 5A1DBF6A) (tstamp 625B2B5B) + (at 141.608 116.6815 90) + (descr "DC Barrel Jack") + (tags "Power Jack") + (path /62570FCE) + (fp_text reference J1 (at -6.8185 6.017 180) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value "DC 2.5/5" (at -6.2 -5.5 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 0 -4.5) (end -13.7 -4.5) (layer F.Fab) (width 0.1)) + (fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer F.Fab) (width 0.1)) + (fp_line (start -13.7 4.5) (end 0.8 4.5) (layer F.Fab) (width 0.1)) + (fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer F.Fab) (width 0.1)) + (fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 -4.6) (end 0.9 -2) (layer F.SilkS) (width 0.12)) + (fp_line (start -13.8 -4.6) (end 0.9 -4.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.9 4.6) (end -1 4.6) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.9 1.9) (end 0.9 4.6) (layer F.SilkS) (width 0.12)) + (fp_line (start -13.8 4.6) (end -13.8 -4.6) (layer F.SilkS) (width 0.12)) + (fp_line (start -5 4.6) (end -13.8 4.6) (layer F.SilkS) (width 0.12)) + (fp_line (start -14 4.75) (end -14 -4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5 4.75) (end -14 4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5 6.75) (end -5 4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 6.75) (end -5 6.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1 4.75) (end -1 6.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 4.75) (end -1 4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 2) (end 1 4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 2 2) (end 1 2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 2 -2) (end 2 2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 -2) (end 2 -2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 -4.5) (end 1 -2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 -4.75) (end -14 -4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1 -4.5) (end 1 -4.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer F.Fab) (width 0.1)) + (fp_text user %R (at -3 -2.95 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 3 thru_hole roundrect (at -3 4.7 90) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 2 thru_hole roundrect (at -6 0 90) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask) (roundrect_rratio 0.25) + (net 1 GND)) + (pad 1 thru_hole rect (at 0 0 90) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask) + (net 28 +12V)) + (model ${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_Horizontal.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 625B2BF8) + (at 160.625 112.23) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (path /6257B061) + (fp_text reference D3 (at 0.025 -2.13) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value LED_RCGB (at 0 9.95) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 0 3.81 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 8.89) (end -1.27 8.89) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.33 8.95) (end 1.33 8.95) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 8.95) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 8.95) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 9.4) (end 1.8 9.4) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 39 "Net-(D3-Pad1)")) + (pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 1 GND)) + (pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 40 "Net-(D3-Pad3)")) + (pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 41 "Net-(D3-Pad4)")) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_text "MqTrigger v1.1" (at 126.9 124.425) (layer F.Cu) + (effects (font (size 1.1 1) (thickness 0.2))) + ) + (gr_line (start 163.425 66.175) (end 163.425 126.175) (layer Edge.Cuts) (width 0.1) (tstamp 625DB724)) + (gr_line (start 120.425 66.175) (end 163.425 66.175) (layer Edge.Cuts) (width 0.1) (tstamp 625DB718)) + (gr_line (start 120.425 126.175) (end 120.425 66.175) (layer Edge.Cuts) (width 0.1) (tstamp 625A40CA)) + (gr_line (start 163.425 126.175) (end 120.425 126.175) (layer Edge.Cuts) (width 0.1) (tstamp 625A40C7)) + + (via (at 159.55 87.4) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 33) (tstamp 625B2282)) + (via (at 159.55 90.5) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 32) (tstamp 625B23CF)) + (via (at 159.575 93.625) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 31) (tstamp 625B23C6)) + (via (at 159.55 96.725) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 34) (tstamp 625B20B7)) + (via (at 150.775 110.45) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 2) (tstamp 625B2180)) + (segment (start 143.308 122.6815) (end 146.308 119.6815) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B1E0B)) + (segment (start 141.608 122.6815) (end 143.308 122.6815) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2BAC)) + (segment (start 146.308 119.6815) (end 146.9065 119.6815) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2261)) + (segment (start 147.965 91.285) (end 144.99 91.285) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B23CC)) + (segment (start 145.965 106.525) (end 147.965 106.525) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2276)) + (segment (start 144.99 105.55) (end 145.965 106.525) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B1EE3)) + (segment (start 145.07 101.445) (end 144.99 101.365) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2288)) + (segment (start 144.99 101.365) (end 144.99 105.55) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B228B)) + (segment (start 147.965 101.445) (end 145.07 101.445) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2297)) + (segment (start 145.21 96.365) (end 144.99 96.585) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B1EFB)) + (segment (start 147.965 96.365) (end 145.21 96.365) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2456)) + (segment (start 144.99 96.585) (end 144.99 101.365) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2186)) + (segment (start 144.99 91.285) (end 144.99 96.585) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B25D6)) + (segment (start 144.99 105.55) (end 144.99 111.665) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2744)) + (segment (start 146.308 112.983) (end 146.308 119.6815) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B289D)) + (segment (start 144.99 111.665) (end 146.308 112.983) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B1F76)) + (segment (start 146.216 113.075) (end 146.308 112.983) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B225B)) + (segment (start 141.024 122.0975) (end 141.608 122.6815) (width 1) (layer B.Cu) (net 1) (tstamp 625B21B6)) + (segment (start 137.1125 122.0975) (end 141.024 122.0975) (width 0.7) (layer B.Cu) (net 1) (tstamp 625B25A3)) + (segment (start 135.45 108.775) (end 135.45 105.8375) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B1F04)) + (segment (start 135.3125 105.975) (end 135.45 105.8375) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B218C)) + (segment (start 132.3 105.975) (end 135.3125 105.975) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B1F58)) + (segment (start 132.3 102.625) (end 132.3 105.975) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2960)) + (segment (start 146.225 108.73) (end 146.225 107.46) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2285)) + (segment (start 146.225 106.19) (end 146.225 107.46) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2BC1)) + (segment (start 146.225 104.92) (end 146.225 106.19) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2BB5)) + (segment (start 146.577 119.4125) (end 146.308 119.6815) (width 0.7) (layer B.Cu) (net 1) (tstamp 625B21AD)) + (segment (start 140.975 104.92) (end 146.225 104.92) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B28A3)) + (segment (start 138.68 102.625) (end 140.975 104.92) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2171)) + (segment (start 132.3 102.625) (end 138.68 102.625) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2756)) + (segment (start 146.45 85.479998) (end 146.45 86.47) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B1EEC)) + (segment (start 152.959998 78.97) (end 146.45 85.479998) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2D5C)) + (segment (start 153.95 78.97) (end 152.959998 78.97) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2D59)) + (segment (start 151.165 91.185) (end 146.45 86.47) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B212F)) + (segment (start 151.165 96.48) (end 151.165 91.185) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B1F07)) + (segment (start 136.95 78.97) (end 136.95 75.675) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B23B1)) + (segment (start 136.95 75.675) (end 136.95 75.675) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B23B4)) + (via (at 136.95 75.675) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 1) (tstamp 625B23AE)) + (segment (start 145.95 86.47) (end 146.45 86.47) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B1F0A)) + (segment (start 138.45 78.97) (end 145.95 86.47) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2438)) + (segment (start 136.95 78.97) (end 138.45 78.97) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B215F)) + (segment (start 136.975 75.7) (end 136.95 75.675) (width 0.7) (layer F.Cu) (net 1) (tstamp 625B2D89)) + (segment (start 146.4515 119.825) (end 146.308 119.6815) (width 0.7) (layer B.Cu) (net 1) (tstamp 625B2BD3)) + (segment (start 151.4 119.825) (end 146.4515 119.825) (width 0.7) (layer B.Cu) (net 1) (tstamp 625B23A2)) + (segment (start 155.745 119.825) (end 155.775 119.855) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2BB2)) + (segment (start 135.16 124.05) (end 137.1125 122.0975) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2BC7)) + (segment (start 132.3 124.05) (end 135.16 124.05) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2750)) + (segment (start 132.3 105.975) (end 132.3 124.05) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B25EB)) + (segment (start 156.0875 119.9175) (end 156.075 119.905) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B1F01)) + (segment (start 155.995 119.825) (end 156.075 119.905) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2729)) + (segment (start 151.4 119.825) (end 155.995 119.825) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2D86)) + (segment (start 135.5875 103.975) (end 135.45 104.1125) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B2198)) + (segment (start 135.45 104.1125) (end 137.0375 104.1125) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B217D)) + (segment (start 139.115 106.19) (end 140.975 106.19) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B1E4D)) + (segment (start 137.0375 104.1125) (end 139.115 106.19) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B21B0)) + (segment (start 155.35 106) (end 155.375 105.975) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B1F55)) + (segment (start 155.375 105.975) (end 155.375 103.975) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B2444)) + (segment (start 161.675 97.675) (end 161.675 87.325) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B243E)) + (segment (start 150.75 110.475) (end 150.775 110.45) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B2138)) + (segment (start 144.05 110.475) (end 150.75 110.475) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B1DFF)) + (segment (start 161.675 87.325) (end 161.675 87.325) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B1D42)) + (via (at 161.65 87.425) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 2) (tstamp 625B2453)) + (segment (start 161.65 87.675) (end 161.65 80.675) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B2AF5)) + (segment (start 161.2125 80.2375) (end 159.525 80.2375) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B1F64)) + (segment (start 161.65 80.675) (end 161.2125 80.2375) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B1E47)) + (segment (start 159.525 80.2375) (end 154.2025 80.2375) (width 0.5) (layer B.Cu) (net 2) (tstamp 625B227C)) + (segment (start 150.775 110.45) (end 150.775 109.875) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B214D)) + (segment (start 154.675 105.975) (end 155.375 105.975) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B2399)) + (segment (start 150.775 109.875) (end 154.675 105.975) (width 0.7) (layer F.Cu) (net 2) (tstamp 625B21B9)) + (segment (start 140.065 107.46) (end 140.975 107.46) (width 0.5) (layer B.Cu) (net 3) (tstamp 625B2255)) + (segment (start 135.45 112.075) (end 140.065 107.46) (width 0.5) (layer B.Cu) (net 3) (tstamp 625B2BA0)) + (segment (start 159.5 106) (end 159.525 105.975) (width 0.7) (layer F.Cu) (net 3) (tstamp 625B23A8)) + (via (at 152.5 110.45) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 3) (tstamp 625B2D62)) + (segment (start 159.525 109.225) (end 159.525 105.975) (width 0.7) (layer F.Cu) (net 3) (tstamp 625B21B3)) + (segment (start 158.3 110.45) (end 159.525 109.225) (width 0.7) (layer F.Cu) (net 3) (tstamp 625B216B)) + (segment (start 152.5 110.45) (end 158.3 110.45) (width 0.7) (layer F.Cu) (net 3) (tstamp 625B229A)) + (segment (start 137.9 112.975) (end 140.8 112.975) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B1E14)) + (segment (start 140.8 112.975) (end 150.9375 112.975) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B2141)) + (segment (start 140.975 112.8) (end 140.8 112.975) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B2BCD)) + (segment (start 140.975 108.73) (end 140.975 112.8) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B2159)) + (segment (start 150.9375 114.6875) (end 151.4 115.15) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B2759)) + (segment (start 150.9375 112.975) (end 150.9375 114.6875) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B1F67)) + (segment (start 134.675 116.2) (end 134.675 116.675) (width 0.8) (layer B.Cu) (net 42) (tstamp 625B2D8F)) + (segment (start 137.9 112.975) (end 134.675 116.2) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B1F16)) + (segment (start 134.675 121.41) (end 133.9875 122.0975) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B2177)) + (segment (start 134.675 116.675) (end 134.675 121.41) (width 0.7) (layer B.Cu) (net 42) (tstamp 625B1DF9)) + (segment (start 160.6475 74.5125) (end 160.65 74.515) (width 0.7) (layer F.Cu) (net 22) (tstamp 625DB721)) + (segment (start 153.95 81.51) (end 157.735 81.51) (width 0.5) (layer B.Cu) (net 22) (tstamp 625B21A1)) + (segment (start 158.2875 82.0625) (end 159.525 82.0625) (width 0.5) (layer B.Cu) (net 22) (tstamp 625B1EF2)) + (segment (start 157.735 81.51) (end 158.2875 82.0625) (width 0.5) (layer B.Cu) (net 22) (tstamp 625B1EF5)) + (via (at 159.55 84.65) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 22) (tstamp 625B2435)) + (segment (start 159.5125 78.6) (end 159.4875 78.575) (width 0.7) (layer F.Cu) (net 22) (tstamp 625B1E08)) + (segment (start 159.525 84.625) (end 159.55 84.65) (width 0.5) (layer B.Cu) (net 22) (tstamp 625B2BD0)) + (segment (start 159.525 82.0625) (end 159.525 84.625) (width 0.5) (layer B.Cu) (net 22) (tstamp 625B2AF8)) + (via (at 134.4 85.75) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 23) (tstamp 625B1F10)) + (segment (start 136.95 95.48) (end 135.45 95.48) (width 0.5) (layer B.Cu) (net 23) (tstamp 625B272C)) + (via (at 141.05 87.7) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 24) (tstamp 625DE5E6)) + (segment (start 141.005 87.745) (end 141.05 87.7) (width 0.5) (layer B.Cu) (net 24) (tstamp 625B21C5)) + (segment (start 141.005 96.48) (end 141.005 87.745) (width 0.5) (layer B.Cu) (net 24) (tstamp 625B213E)) + (segment (start 153.95 94.21) (end 154.940002 94.21) (width 0.5) (layer B.Cu) (net 27) (tstamp 625B219B)) + (segment (start 154.96 94.21) (end 153.95 94.21) (width 0.5) (layer B.Cu) (net 27) (tstamp 625B20F0)) + (segment (start 160.625 99.875) (end 154.96 94.21) (width 0.5) (layer B.Cu) (net 27) (tstamp 625B25F1)) + (segment (start 159.422919 119.85) (end 160.625 119.85) (width 0.5) (layer B.Cu) (net 41) (tstamp 625B2267)) + (segment (start 158 118.427081) (end 159.422919 119.85) (width 0.5) (layer B.Cu) (net 41) (tstamp 625B1F6D)) + (segment (start 158 106.085) (end 158 118.427081) (width 0.5) (layer B.Cu) (net 41) (tstamp 625B2D68)) + (segment (start 160.63 114.775) (end 160.625 114.77) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B272F)) + (segment (start 162.425 114.775) (end 160.63 114.775) (width 0.5) (layer B.Cu) (net 1) (tstamp 625B2D7A)) + (segment (start 162.425 121.45) (end 161.775 122.1) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 162.425 114.775) (end 162.425 121.45) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 158.27 122.1) (end 156.075 119.905) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 161.775 122.1) (end 158.27 122.1) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 160.625 67.76) (end 160.65 67.785) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 152.525 78.625) (end 152.525 77.35) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 152.525 77.35) (end 150.925 75.75) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 152.24 67.76) (end 154.325 67.76) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 150.925 69.075) (end 152.24 67.76) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 157.7625 67.7875) (end 157.79 67.76) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 157.7625 78.575) (end 157.7625 67.7875) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 157.79 67.76) (end 160.625 67.76) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 154.325 67.76) (end 157.79 67.76) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 157.7875 78.6) (end 157.7625 78.575) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 157.7875 81.325) (end 157.7875 78.6) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 150.925 75.75) (end 150.925 69.075) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 150.85 75.675) (end 150.925 75.75) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 144.5025 80.1625) (end 142.35 78.01) (width 0.7) (layer F.Cu) (net 1) (tstamp 625DE5AD)) + (segment (start 146.225 80.1625) (end 144.5025 80.1625) (width 0.7) (layer F.Cu) (net 1) (tstamp 625DE5A7)) + (segment (start 138.275 75.775) (end 138.175 75.675) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 136.95 75.675) (end 138.175 75.675) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 142.35 75.775) (end 142.25 75.675) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 142.35 78.01) (end 142.35 75.775) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 142.25 75.675) (end 150.85 75.675) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 138.175 75.675) (end 142.25 75.675) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 130.835 111.665) (end 127.425 115.075) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 144.99 111.665) (end 130.835 111.665) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 147.965 91.1475) (end 157.7875 81.325) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 147.965 91.285) (end 147.965 91.1475) (width 0.7) (layer F.Cu) (net 1)) + (segment (start 162.425 123.65) (end 160.655 123.65) (width 0.7) (layer F.Cu) (net 2)) + (segment (start 162.425 98.025) (end 162.425 123.65) (width 0.7) (layer F.Cu) (net 2)) + (segment (start 161.325 98.025) (end 161.2875 98.0625) (width 0.7) (layer F.Cu) (net 2)) + (segment (start 162.425 98.025) (end 161.325 98.025) (width 0.7) (layer F.Cu) (net 2)) + (segment (start 161.2875 98.0625) (end 161.675 97.675) (width 0.7) (layer F.Cu) (net 2)) + (segment (start 155.375 103.975) (end 161.2875 98.0625) (width 0.7) (layer F.Cu) (net 2)) + (segment (start 142.696384 106.19) (end 140.975 106.19) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 144.05 107.543616) (end 142.696384 106.19) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 144.05 110.475) (end 144.05 107.543616) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 142.31 107.46) (end 140.975 107.46) (width 0.5) (layer B.Cu) (net 3)) + (segment (start 143.100001 108.250001) (end 142.31 107.46) (width 0.5) (layer B.Cu) (net 3)) + (segment (start 143.100001 111.775001) (end 143.100001 108.250001) (width 0.5) (layer B.Cu) (net 3)) + (segment (start 151.174999 111.775001) (end 143.100001 111.775001) (width 0.5) (layer B.Cu) (net 3)) + (segment (start 152.5 110.45) (end 151.174999 111.775001) (width 0.5) (layer B.Cu) (net 3)) + (segment (start 160.65 77.4125) (end 159.4875 78.575) (width 0.7) (layer F.Cu) (net 22)) + (segment (start 160.65 74.515) (end 160.65 77.4125) (width 0.7) (layer F.Cu) (net 22)) + (segment (start 159.4875 81.3) (end 159.5125 81.325) (width 0.7) (layer F.Cu) (net 22)) + (segment (start 159.4875 78.575) (end 159.4875 81.3) (width 0.7) (layer F.Cu) (net 22)) + (segment (start 159.5125 84.6125) (end 159.55 84.65) (width 0.7) (layer F.Cu) (net 22)) + (segment (start 159.5125 81.325) (end 159.5125 84.6125) (width 0.7) (layer F.Cu) (net 22)) + (segment (start 145.2025 81.8875) (end 142.35 84.74) (width 0.7) (layer F.Cu) (net 23) (tstamp 625DE5A4)) + (segment (start 146.225 81.8875) (end 145.2025 81.8875) (width 0.7) (layer F.Cu) (net 23) (tstamp 625DE5B0)) + (segment (start 134.41 85.74) (end 134.4 85.75) (width 0.7) (layer F.Cu) (net 23)) + (segment (start 134.4 94.43) (end 134.4 85.75) (width 0.5) (layer B.Cu) (net 23)) + (segment (start 135.45 95.48) (end 134.4 94.43) (width 0.5) (layer B.Cu) (net 23)) + (segment (start 135.41 84.74) (end 134.4 85.75) (width 0.7) (layer F.Cu) (net 23)) + (segment (start 142.35 84.74) (end 135.41 84.74) (width 0.7) (layer F.Cu) (net 23)) + (segment (start 154.325 80.425) (end 152.6 80.425) (width 0.7) (layer F.Cu) (net 24)) + (segment (start 152.6 80.425) (end 152.525 80.35) (width 0.7) (layer F.Cu) (net 24)) + (segment (start 154.325 74.49) (end 154.325 80.425) (width 0.7) (layer F.Cu) (net 24)) + (segment (start 145.175 87.7) (end 152.525 80.35) (width 0.7) (layer F.Cu) (net 24)) + (segment (start 141.05 87.7) (end 145.175 87.7) (width 0.7) (layer F.Cu) (net 24)) + (segment (start 149.895 98.0075) (end 153.425 101.5375) (width 0.5) (layer B.Cu) (net 25)) + (segment (start 149.895 96.48) (end 149.895 98.0075) (width 0.5) (layer B.Cu) (net 25)) + (segment (start 153.95 96.5875) (end 158.95 101.5875) (width 0.5) (layer B.Cu) (net 26)) + (segment (start 153.95 95.48) (end 153.95 96.5875) (width 0.5) (layer B.Cu) (net 26)) + (segment (start 160.625 99.875) (end 160.625 106.2125) (width 0.5) (layer B.Cu) (net 27)) + (segment (start 160.56 117.375) (end 160.625 117.31) (width 0.5) (layer B.Cu) (net 40) (tstamp 625B1EE6)) + (segment (start 158.975 117.375) (end 160.56 117.375) (width 0.5) (layer B.Cu) (net 40) (tstamp 625B25E5)) + (segment (start 141.65 116.6395) (end 141.608 116.6815) (width 0.7) (layer F.Cu) (net 28) (tstamp 625B25DC)) + (segment (start 141.6015 116.675) (end 141.608 116.6815) (width 1) (layer B.Cu) (net 28) (tstamp 625B243B)) + (segment (start 136.425 116.675) (end 141.6015 116.675) (width 0.7) (layer B.Cu) (net 28) (tstamp 625B2AFB)) + (segment (start 141.608 116.6815) (end 140.1935 116.6815) (width 0.7) (layer F.Cu) (net 28) (tstamp 625B2765)) + (segment (start 141.608 116.6815) (end 141.258 116.6815) (width 0.7) (layer F.Cu) (net 28)) + (segment (start 155.575 123.65) (end 153.525 123.65) (width 0.7) (layer F.Cu) (net 42)) + (segment (start 153.525 123.65) (end 151.725 121.85) (width 0.7) (layer F.Cu) (net 42)) + (segment (start 151.725 121.85) (end 151.425 121.55) (width 0.7) (layer F.Cu) (net 42)) + (segment (start 151.425 121.55) (end 151.425 118.225) (width 0.7) (layer F.Cu) (net 42)) + (segment (start 151.425 118.225) (end 148.4 115.2) (width 0.7) (layer F.Cu) (net 42)) + (segment (start 148.4 115.2) (end 148.4 115.2) (width 0.7) (layer F.Cu) (net 42) (tstamp 625DEB7A)) + (via (at 148.4 115.2) (size 1.3) (drill 0.5) (layers F.Cu B.Cu) (net 42)) + (segment (start 156.04 117.4) (end 156.075 117.365) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B273E)) + (segment (start 154.125 117.4) (end 156.04 117.4) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B295A)) + (segment (start 130.7 100.175) (end 144.45 100.175) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B1F6A)) + (segment (start 130.7 84.725) (end 130.7 100.175) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B2D6E)) + (segment (start 154.125 109.85) (end 154.125 117.4) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B1F7F)) + (segment (start 144.45 100.175) (end 154.125 109.85) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B25EE)) + (segment (start 132.645 82.78) (end 130.7 84.725) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B23D2)) + (segment (start 136.95 82.78) (end 132.645 82.78) (width 0.5) (layer B.Cu) (net 29) (tstamp 625B1D45)) + (segment (start 136.95 84.05) (end 132.85 84.05) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B21C2)) + (segment (start 132.85 84.05) (end 131.95 84.95) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B28A0)) + (segment (start 131.95 84.95) (end 131.95 98.925) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B274A)) + (segment (start 156.150008 114.749992) (end 156.075 114.825) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B1F5B)) + (segment (start 156.150008 109.293624) (end 156.150008 114.749992) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B2BBE)) + (segment (start 145.781384 98.925) (end 156.150008 109.293624) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B25F4)) + (segment (start 131.95 98.925) (end 145.781384 98.925) (width 0.5) (layer B.Cu) (net 30) (tstamp 625B1F13)) + (segment (start 157.62 91.67) (end 159.575 93.625) (width 0.5) (layer B.Cu) (net 31) (tstamp 625B28A6)) + (segment (start 153.95 91.67) (end 157.62 91.67) (width 0.5) (layer B.Cu) (net 31) (tstamp 625B2213)) + (segment (start 159.575 93.7125) (end 156.6125 96.675) (width 0.7) (layer F.Cu) (net 31) (tstamp 625B21A7)) + (segment (start 159.575 93.625) (end 159.575 93.7125) (width 0.7) (layer F.Cu) (net 31) (tstamp 625B2150)) + (segment (start 154.7875 96.675) (end 154.7 96.675) (width 0.7) (layer F.Cu) (net 44) (tstamp 625B2168)) + (segment (start 154.7875 96.675) (end 154.7875 96.6875) (width 0.7) (layer F.Cu) (net 44) (tstamp 625B1EF8)) + (segment (start 154.7875 96.6875) (end 150.4 101.075) (width 0.7) (layer F.Cu) (net 44) (tstamp 625B244A)) + (segment (start 149.665 103.985) (end 147.965 103.985) (width 0.7) (layer F.Cu) (net 44) (tstamp 625B1F70)) + (segment (start 150.4 103.25) (end 149.665 103.985) (width 0.7) (layer F.Cu) (net 44) (tstamp 625B1F73)) + (segment (start 150.4 101.075) (end 150.4 103.25) (width 0.7) (layer F.Cu) (net 44) (tstamp 625B2BA3)) + (segment (start 154.7875 99.775) (end 151.9 102.6625) (width 0.7) (layer F.Cu) (net 43) (tstamp 625B239F)) + (segment (start 149.665 109.065) (end 147.965 109.065) (width 0.7) (layer F.Cu) (net 43) (tstamp 625B21BC)) + (segment (start 151.9 106.83) (end 149.665 109.065) (width 0.7) (layer F.Cu) (net 43) (tstamp 625B1EEF)) + (segment (start 151.9 102.6625) (end 151.9 106.83) (width 0.7) (layer F.Cu) (net 43) (tstamp 625B216E)) + (segment (start 159.45 90.4) (end 159.55 90.5) (width 0.7) (layer B.Cu) (net 32) (tstamp 625B1F1F)) + (segment (start 153.95 90.4) (end 159.45 90.4) (width 0.5) (layer B.Cu) (net 32) (tstamp 625B23D8)) + (segment (start 159.55 90.6375) (end 156.6125 93.575) (width 0.7) (layer F.Cu) (net 32) (tstamp 625B1E11)) + (segment (start 159.55 90.5) (end 159.55 90.6375) (width 0.7) (layer F.Cu) (net 32) (tstamp 625B2258)) + (segment (start 149.4575 98.905) (end 147.965 98.905) (width 0.7) (layer F.Cu) (net 45) (tstamp 625B275F)) + (segment (start 154.7875 93.575) (end 149.4575 98.905) (width 0.7) (layer F.Cu) (net 45) (tstamp 625B2BA6)) + (segment (start 157.82 89.13) (end 159.55 87.4) (width 0.5) (layer B.Cu) (net 33) (tstamp 625B2270)) + (segment (start 153.95 89.13) (end 157.82 89.13) (width 0.5) (layer B.Cu) (net 33) (tstamp 625B1F22)) + (segment (start 159.55 87.5375) (end 156.6125 90.475) (width 0.7) (layer F.Cu) (net 33) (tstamp 625B2216)) + (segment (start 159.55 87.4) (end 159.55 87.5375) (width 0.7) (layer F.Cu) (net 33) (tstamp 625B2273)) + (segment (start 151.4375 93.825) (end 147.965 93.825) (width 0.7) (layer F.Cu) (net 46) (tstamp 625B2183)) + (segment (start 154.7875 90.475) (end 151.4375 93.825) (width 0.7) (layer F.Cu) (net 46) (tstamp 625B2165)) + (segment (start 130.219 106.525) (end 127.4155 103.7215) (width 0.7) (layer F.Cu) (net 47)) + (segment (start 138.435 106.525) (end 130.219 106.525) (width 0.7) (layer F.Cu) (net 47)) + (segment (start 127.759 109.065) (end 127.4155 108.7215) (width 0.7) (layer F.Cu) (net 48)) + (segment (start 138.435 109.065) (end 127.759 109.065) (width 0.7) (layer F.Cu) (net 48)) + (segment (start 128.824998 92.355) (end 127.4155 92.355) (width 0.7) (layer F.Cu) (net 49)) + (segment (start 137.914998 101.445) (end 128.824998 92.355) (width 0.7) (layer F.Cu) (net 49)) + (segment (start 138.435 101.445) (end 137.914998 101.445) (width 0.7) (layer F.Cu) (net 49)) + (segment (start 134.0455 103.985) (end 127.4155 97.355) (width 0.7) (layer F.Cu) (net 50)) + (segment (start 138.435 103.985) (end 134.0455 103.985) (width 0.7) (layer F.Cu) (net 50)) + (segment (start 127.425 81.025) (end 127.4 81) (width 0.7) (layer F.Cu) (net 51)) + (segment (start 137.914998 96.365) (end 130.325 88.775002) (width 0.7) (layer F.Cu) (net 51)) + (segment (start 138.435 96.365) (end 137.914998 96.365) (width 0.7) (layer F.Cu) (net 51)) + (segment (start 130.325 88.775002) (end 130.325 81.075) (width 0.7) (layer F.Cu) (net 51)) + (segment (start 127.475 81.075) (end 127.4 81) (width 0.7) (layer F.Cu) (net 51)) + (segment (start 130.325 81.075) (end 127.475 81.075) (width 0.7) (layer F.Cu) (net 51)) + (segment (start 138.435 98.905) (end 137.860774 98.905) (width 0.7) (layer F.Cu) (net 52)) + (segment (start 127.4 88.390002) (end 127.4 86) (width 0.7) (layer F.Cu) (net 52)) + (segment (start 137.914998 98.905) (end 127.4 88.390002) (width 0.7) (layer F.Cu) (net 52)) + (segment (start 138.435 98.905) (end 137.914998 98.905) (width 0.7) (layer F.Cu) (net 52)) + (segment (start 136.735 91.285) (end 133.099999 87.649999) (width 0.7) (layer F.Cu) (net 53)) + (segment (start 138.435 91.285) (end 136.735 91.285) (width 0.7) (layer F.Cu) (net 53)) + (segment (start 133.099999 87.649999) (end 133.099999 69.65) (width 0.7) (layer F.Cu) (net 53)) + (segment (start 133.099999 69.65) (end 127.4 69.65) (width 0.7) (layer F.Cu) (net 53)) + (segment (start 138.435 93.825) (end 137.860773 93.825) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 127.425 74.675) (end 127.4 74.65) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 138.435 93.825) (end 137.45 93.825) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 137.45 93.825) (end 131.625 88) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 131.625 88) (end 131.625 74.7) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 127.45 74.7) (end 127.4 74.65) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 131.625 74.7) (end 127.45 74.7) (width 0.7) (layer F.Cu) (net 54)) + (segment (start 155.765 92.94) (end 159.55 96.725) (width 0.5) (layer B.Cu) (net 34) (tstamp 625B20F3)) + (segment (start 153.95 92.94) (end 155.765 92.94) (width 0.5) (layer B.Cu) (net 34) (tstamp 625B2BB8)) + (segment (start 159.55 96.8375) (end 156.6125 99.775) (width 0.7) (layer F.Cu) (net 34) (tstamp 625B20EA)) + (segment (start 159.55 96.725) (end 159.55 96.8375) (width 0.7) (layer F.Cu) (net 34) (tstamp 625B23C0)) + (segment (start 160.625 108.0375) (end 160.625 112.23) (width 0.5) (layer B.Cu) (net 39)) + (segment (start 158.95 117.35) (end 158.975 117.375) (width 0.5) (layer B.Cu) (net 40)) + (segment (start 158.95 103.4125) (end 158.95 117.35) (width 0.5) (layer B.Cu) (net 40)) + (segment (start 155.2775 103.3625) (end 158 106.085) (width 0.5) (layer B.Cu) (net 41)) + (segment (start 153.425 103.3625) (end 155.2775 103.3625) (width 0.5) (layer B.Cu) (net 41)) + (segment (start 130.205 120.075) (end 127.425 120.075) (width 0.7) (layer F.Cu) (net 55)) + (segment (start 157.76708 125.200001) (end 135.330001 125.200001) (width 0.7) (layer F.Cu) (net 55)) + (segment (start 135.330001 125.200001) (end 130.205 120.075) (width 0.7) (layer F.Cu) (net 55)) + (segment (start 158.115 124.852081) (end 157.76708 125.200001) (width 0.7) (layer F.Cu) (net 55)) + (segment (start 158.115 123.65) (end 158.115 124.852081) (width 0.7) (layer F.Cu) (net 55)) + (segment (start 148.45 115.15) (end 148.4 115.2) (width 0.7) (layer B.Cu) (net 42)) + (segment (start 151.4 115.15) (end 148.45 115.15) (width 0.7) (layer B.Cu) (net 42)) + + (zone (net 0) (net_name "") (layer F.Cu) (tstamp 625E896F) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) + (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 163.4 126.1799) (xy 120.425 126.1799) (xy 120.425 66.1799) (xy 163.4 66.1799) + ) + ) + (filled_polygon + (pts + (xy 159.501525 124.596632) (xy 159.708368 124.803475) (xy 159.951589 124.96599) (xy 160.221842 125.077932) (xy 160.50874 125.135) + (xy 160.80126 125.135) (xy 161.088158 125.077932) (xy 161.358411 124.96599) (xy 161.601632 124.803475) (xy 161.770107 124.635) + (xy 162.37662 124.635) (xy 162.425 124.639765) (xy 162.47338 124.635) (xy 162.618094 124.620747) (xy 162.740001 124.583767) + (xy 162.740001 125.49) (xy 158.865712 125.49) (xy 158.93796 125.401965) (xy 159.029424 125.230848) (xy 159.085747 125.045175) + (xy 159.1 124.900461) (xy 159.104765 124.852082) (xy 159.1 124.803702) (xy 159.1 124.765107) (xy 159.268475 124.596632) + (xy 159.385 124.42224) + ) + ) + (filled_polygon + (pts + (xy 134.226999 125.49) (xy 133.182619 125.49) (xy 133.182619 124.44562) + ) + ) + (filled_polygon + (pts + (xy 147.401875 116.01914) (xy 147.58086 116.198125) (xy 147.791324 116.338753) (xy 148.025179 116.435619) (xy 148.273439 116.485) + (xy 148.292 116.485) (xy 150.440001 118.633001) (xy 150.44 121.50162) (xy 150.435235 121.55) (xy 150.44 121.598379) + (xy 150.454253 121.743093) (xy 150.510576 121.928766) (xy 150.60204 122.099884) (xy 150.72513 122.24987) (xy 150.762717 122.280717) + (xy 150.994286 122.512285) (xy 150.99429 122.51229) (xy 152.697001 124.215001) (xy 143.752021 124.215001) (xy 143.76214 124.202671) + (xy 143.890411 123.962692) (xy 143.969401 123.702299) (xy 143.996072 123.4315) (xy 143.996072 123.391052) (xy 144.00787 123.38137) + (xy 144.038716 123.343784) (xy 145.323694 122.058806) (xy 145.433 122.069572) (xy 147.183 122.069572) (xy 147.478186 122.040499) + (xy 147.762028 121.954396) (xy 148.023618 121.814573) (xy 148.252903 121.626403) (xy 148.441073 121.397118) (xy 148.580896 121.135528) + (xy 148.666999 120.851686) (xy 148.696072 120.5565) (xy 148.696072 118.8065) (xy 148.666999 118.511314) (xy 148.580896 118.227472) + (xy 148.441073 117.965882) (xy 148.252903 117.736597) (xy 148.023618 117.548427) (xy 147.762028 117.408604) (xy 147.478186 117.322501) + (xy 147.293 117.304262) (xy 147.293 115.856198) + ) + ) + (filled_polygon + (pts + (xy 140.825271 66.988962) (xy 140.513962 67.300271) (xy 140.269369 67.666331) (xy 140.10089 68.073075) (xy 140.015 68.504872) + (xy 140.015 68.945128) (xy 140.10089 69.376925) (xy 140.269369 69.783669) (xy 140.513962 70.149729) (xy 140.825271 70.461038) + (xy 141.191331 70.705631) (xy 141.598075 70.87411) (xy 142.029872 70.96) (xy 142.470128 70.96) (xy 142.901925 70.87411) + (xy 143.308669 70.705631) (xy 143.674729 70.461038) (xy 143.986038 70.149729) (xy 144.230631 69.783669) (xy 144.39911 69.376925) + (xy 144.485 68.945128) (xy 144.485 68.504872) (xy 144.39911 68.073075) (xy 144.230631 67.666331) (xy 143.986038 67.300271) + (xy 143.674729 66.988962) (xy 143.481723 66.86) (xy 151.834248 66.86) (xy 151.690116 66.93704) (xy 151.54013 67.06013) + (xy 151.509289 67.09771) (xy 150.262711 68.344289) (xy 150.225131 68.37513) (xy 150.102041 68.525116) (xy 150.056424 68.610459) + (xy 150.010576 68.696234) (xy 149.954253 68.881907) (xy 149.935235 69.075) (xy 149.940001 69.12339) (xy 149.94 74.69) + (xy 142.29838 74.69) (xy 142.25 74.685235) (xy 142.20162 74.69) (xy 138.22338 74.69) (xy 138.175 74.685235) + (xy 138.12662 74.69) (xy 137.782265 74.69) (xy 137.76914 74.676875) (xy 137.558676 74.536247) (xy 137.324821 74.439381) + (xy 137.076561 74.39) (xy 136.823439 74.39) (xy 136.575179 74.439381) (xy 136.341324 74.536247) (xy 136.13086 74.676875) + (xy 135.951875 74.85586) (xy 135.811247 75.066324) (xy 135.714381 75.300179) (xy 135.665 75.548439) (xy 135.665 75.801561) + (xy 135.714381 76.049821) (xy 135.811247 76.283676) (xy 135.951875 76.49414) (xy 136.13086 76.673125) (xy 136.341324 76.813753) + (xy 136.575179 76.910619) (xy 136.823439 76.96) (xy 137.076561 76.96) (xy 137.324821 76.910619) (xy 137.558676 76.813753) + (xy 137.76914 76.673125) (xy 137.782265 76.66) (xy 137.841187 76.66) (xy 137.896234 76.689423) (xy 138.081906 76.745747) + (xy 138.274999 76.764765) (xy 138.468093 76.745747) (xy 138.653766 76.689423) (xy 138.708813 76.66) (xy 141.214299 76.66) + (xy 141.200498 76.68582) (xy 141.164188 76.805518) (xy 141.151928 76.93) (xy 141.151928 79.09) (xy 141.164188 79.214482) + (xy 141.200498 79.33418) (xy 141.259463 79.444494) (xy 141.338815 79.541185) (xy 141.435506 79.620537) (xy 141.54582 79.679502) + (xy 141.665518 79.715812) (xy 141.79 79.728072) (xy 142.675072 79.728072) (xy 143.771789 80.82479) (xy 143.80263 80.86237) + (xy 143.84834 80.899883) (xy 143.952616 80.98546) (xy 144.123733 81.076924) (xy 144.309406 81.133247) (xy 144.5025 81.152265) + (xy 144.55088 81.1475) (xy 144.551529 81.1475) (xy 144.50263 81.18763) (xy 144.471784 81.225216) (xy 142.675072 83.021928) + (xy 141.79 83.021928) (xy 141.665518 83.034188) (xy 141.54582 83.070498) (xy 141.435506 83.129463) (xy 141.338815 83.208815) + (xy 141.259463 83.305506) (xy 141.200498 83.41582) (xy 141.164188 83.535518) (xy 141.151928 83.66) (xy 141.151928 83.755) + (xy 135.45838 83.755) (xy 135.41 83.750235) (xy 135.36162 83.755) (xy 135.216906 83.769253) (xy 135.031233 83.825576) + (xy 134.860116 83.91704) (xy 134.71013 84.04013) (xy 134.679289 84.07771) (xy 134.291999 84.465) (xy 134.273439 84.465) + (xy 134.084999 84.502482) (xy 134.084999 69.69838) (xy 134.089764 69.65) (xy 134.070746 69.456906) (xy 134.014423 69.271233) + (xy 133.922959 69.100116) (xy 133.799869 68.95013) (xy 133.649883 68.82704) (xy 133.478766 68.735576) (xy 133.293093 68.679253) + (xy 133.148379 68.665) (xy 133.099999 68.660235) (xy 133.051619 68.665) (xy 129.683802 68.665) (xy 129.544608 68.495392) + (xy 129.29717 68.292325) (xy 129.014869 68.141432) (xy 128.708556 68.048513) (xy 128.469824 68.025) (xy 126.330176 68.025) + (xy 126.091444 68.048513) (xy 125.785131 68.141432) (xy 125.50283 68.292325) (xy 125.255392 68.495392) (xy 125.052325 68.74283) + (xy 124.901432 69.025131) (xy 124.808513 69.331444) (xy 124.777138 69.65) (xy 124.808513 69.968556) (xy 124.901432 70.274869) + (xy 125.052325 70.55717) (xy 125.255392 70.804608) (xy 125.50283 71.007675) (xy 125.785131 71.158568) (xy 126.091444 71.251487) + (xy 126.330176 71.275) (xy 128.469824 71.275) (xy 128.708556 71.251487) (xy 129.014869 71.158568) (xy 129.29717 71.007675) + (xy 129.544608 70.804608) (xy 129.683802 70.635) (xy 132.115 70.635) (xy 132.115 73.845031) (xy 132.003767 73.785576) + (xy 131.818094 73.729253) (xy 131.67338 73.715) (xy 131.625 73.710235) (xy 131.57662 73.715) (xy 130.018072 73.715) + (xy 130.018072 73.66) (xy 130.005812 73.535518) (xy 129.969502 73.41582) (xy 129.910537 73.305506) (xy 129.831185 73.208815) + (xy 129.734494 73.129463) (xy 129.62418 73.070498) (xy 129.504482 73.034188) (xy 129.38 73.021928) (xy 125.42 73.021928) + (xy 125.295518 73.034188) (xy 125.17582 73.070498) (xy 125.065506 73.129463) (xy 124.968815 73.208815) (xy 124.889463 73.305506) + (xy 124.830498 73.41582) (xy 124.794188 73.535518) (xy 124.781928 73.66) (xy 124.781928 75.64) (xy 124.794188 75.764482) + (xy 124.830498 75.88418) (xy 124.889463 75.994494) (xy 124.968815 76.091185) (xy 125.065506 76.170537) (xy 125.17582 76.229502) + (xy 125.295518 76.265812) (xy 125.42 76.278072) (xy 129.38 76.278072) (xy 129.504482 76.265812) (xy 129.62418 76.229502) + (xy 129.734494 76.170537) (xy 129.831185 76.091185) (xy 129.910537 75.994494) (xy 129.969502 75.88418) (xy 130.005812 75.764482) + (xy 130.01364 75.685) (xy 130.640001 75.685) (xy 130.640001 80.141233) (xy 130.518094 80.104253) (xy 130.37338 80.09) + (xy 130.325 80.085235) (xy 130.27662 80.09) (xy 129.745352 80.09) (xy 129.544608 79.845392) (xy 129.29717 79.642325) + (xy 129.014869 79.491432) (xy 128.708556 79.398513) (xy 128.469824 79.375) (xy 126.330176 79.375) (xy 126.091444 79.398513) + (xy 125.785131 79.491432) (xy 125.50283 79.642325) (xy 125.255392 79.845392) (xy 125.052325 80.09283) (xy 124.901432 80.375131) + (xy 124.808513 80.681444) (xy 124.777138 81) (xy 124.808513 81.318556) (xy 124.901432 81.624869) (xy 125.052325 81.90717) + (xy 125.255392 82.154608) (xy 125.50283 82.357675) (xy 125.785131 82.508568) (xy 126.091444 82.601487) (xy 126.330176 82.625) + (xy 128.469824 82.625) (xy 128.708556 82.601487) (xy 129.014869 82.508568) (xy 129.29717 82.357675) (xy 129.340001 82.322525) + (xy 129.340001 84.371928) (xy 125.42 84.371928) (xy 125.295518 84.384188) (xy 125.17582 84.420498) (xy 125.065506 84.479463) + (xy 124.968815 84.558815) (xy 124.889463 84.655506) (xy 124.830498 84.76582) (xy 124.794188 84.885518) (xy 124.781928 85.01) + (xy 124.781928 86.99) (xy 124.794188 87.114482) (xy 124.830498 87.23418) (xy 124.889463 87.344494) (xy 124.968815 87.441185) + (xy 125.065506 87.520537) (xy 125.17582 87.579502) (xy 125.295518 87.615812) (xy 125.42 87.628072) (xy 126.415 87.628072) + (xy 126.415 88.341622) (xy 126.410235 88.390002) (xy 126.415 88.438381) (xy 126.429253 88.583095) (xy 126.485576 88.768768) + (xy 126.57704 88.939886) (xy 126.70013 89.089872) (xy 126.737716 89.120718) (xy 128.346998 90.73) (xy 126.345676 90.73) + (xy 126.106944 90.753513) (xy 125.800631 90.846432) (xy 125.51833 90.997325) (xy 125.270892 91.200392) (xy 125.067825 91.44783) + (xy 124.916932 91.730131) (xy 124.824013 92.036444) (xy 124.792638 92.355) (xy 124.824013 92.673556) (xy 124.916932 92.979869) + (xy 125.067825 93.26217) (xy 125.270892 93.509608) (xy 125.51833 93.712675) (xy 125.800631 93.863568) (xy 126.106944 93.956487) + (xy 126.345676 93.98) (xy 128.485324 93.98) (xy 128.724056 93.956487) (xy 128.961467 93.884469) (xy 136.796928 101.71993) + (xy 136.796928 102.335) (xy 136.809188 102.459482) (xy 136.845498 102.57918) (xy 136.904463 102.689494) (xy 136.925395 102.715) + (xy 136.904463 102.740506) (xy 136.845498 102.85082) (xy 136.809188 102.970518) (xy 136.806284 103) (xy 134.453501 103) + (xy 129.998426 98.544926) (xy 130.021312 98.469482) (xy 130.033572 98.345) (xy 130.033572 96.365) (xy 130.021312 96.240518) + (xy 129.985002 96.12082) (xy 129.926037 96.010506) (xy 129.846685 95.913815) (xy 129.749994 95.834463) (xy 129.63968 95.775498) + (xy 129.519982 95.739188) (xy 129.3955 95.726928) (xy 125.4355 95.726928) (xy 125.311018 95.739188) (xy 125.19132 95.775498) + (xy 125.081006 95.834463) (xy 124.984315 95.913815) (xy 124.904963 96.010506) (xy 124.845998 96.12082) (xy 124.809688 96.240518) + (xy 124.797428 96.365) (xy 124.797428 98.345) (xy 124.809688 98.469482) (xy 124.845998 98.58918) (xy 124.904963 98.699494) + (xy 124.984315 98.796185) (xy 125.081006 98.875537) (xy 125.19132 98.934502) (xy 125.311018 98.970812) (xy 125.4355 98.983072) + (xy 127.650572 98.983072) (xy 133.314789 104.64729) (xy 133.34563 104.68487) (xy 133.495616 104.80796) (xy 133.666733 104.899424) + (xy 133.852406 104.955747) (xy 134.0455 104.974765) (xy 134.09388 104.97) (xy 136.806284 104.97) (xy 136.809188 104.999482) + (xy 136.845498 105.11918) (xy 136.904463 105.229494) (xy 136.925395 105.255) (xy 136.904463 105.280506) (xy 136.845498 105.39082) + (xy 136.809188 105.510518) (xy 136.806284 105.54) (xy 130.627001 105.54) (xy 129.741762 104.654762) (xy 129.763175 104.62867) + (xy 129.914068 104.346369) (xy 130.006987 104.040056) (xy 130.038362 103.7215) (xy 130.006987 103.402944) (xy 129.914068 103.096631) + (xy 129.763175 102.81433) (xy 129.560108 102.566892) (xy 129.31267 102.363825) (xy 129.030369 102.212932) (xy 128.724056 102.120013) + (xy 128.485324 102.0965) (xy 126.345676 102.0965) (xy 126.106944 102.120013) (xy 125.800631 102.212932) (xy 125.51833 102.363825) + (xy 125.270892 102.566892) (xy 125.067825 102.81433) (xy 124.916932 103.096631) (xy 124.824013 103.402944) (xy 124.792638 103.7215) + (xy 124.824013 104.040056) (xy 124.916932 104.346369) (xy 125.067825 104.62867) (xy 125.270892 104.876108) (xy 125.51833 105.079175) + (xy 125.800631 105.230068) (xy 126.106944 105.322987) (xy 126.345676 105.3465) (xy 127.6475 105.3465) (xy 129.394427 107.093428) + (xy 125.4355 107.093428) (xy 125.311018 107.105688) (xy 125.19132 107.141998) (xy 125.081006 107.200963) (xy 124.984315 107.280315) + (xy 124.904963 107.377006) (xy 124.845998 107.48732) (xy 124.809688 107.607018) (xy 124.797428 107.7315) (xy 124.797428 109.7115) + (xy 124.809688 109.835982) (xy 124.845998 109.95568) (xy 124.904963 110.065994) (xy 124.984315 110.162685) (xy 125.081006 110.242037) + (xy 125.19132 110.301002) (xy 125.311018 110.337312) (xy 125.4355 110.349572) (xy 129.3955 110.349572) (xy 129.519982 110.337312) + (xy 129.63968 110.301002) (xy 129.749994 110.242037) (xy 129.846685 110.162685) (xy 129.926037 110.065994) (xy 129.934586 110.05) + (xy 136.806284 110.05) (xy 136.809188 110.079482) (xy 136.845498 110.19918) (xy 136.904463 110.309494) (xy 136.983815 110.406185) + (xy 137.080506 110.485537) (xy 137.19082 110.544502) (xy 137.310518 110.580812) (xy 137.435 110.593072) (xy 139.435 110.593072) + (xy 139.559482 110.580812) (xy 139.67918 110.544502) (xy 139.789494 110.485537) (xy 139.886185 110.406185) (xy 139.965537 110.309494) + (xy 140.024502 110.19918) (xy 140.060812 110.079482) (xy 140.073072 109.955) (xy 140.073072 108.175) (xy 140.060812 108.050518) + (xy 140.024502 107.93082) (xy 139.965537 107.820506) (xy 139.944605 107.795) (xy 139.965537 107.769494) (xy 140.024502 107.65918) + (xy 140.060812 107.539482) (xy 140.073072 107.415) (xy 140.073072 105.635) (xy 140.060812 105.510518) (xy 140.024502 105.39082) + (xy 139.965537 105.280506) (xy 139.944605 105.255) (xy 139.965537 105.229494) (xy 140.024502 105.11918) (xy 140.060812 104.999482) + (xy 140.073072 104.875) (xy 140.073072 103.095) (xy 140.060812 102.970518) (xy 140.024502 102.85082) (xy 139.965537 102.740506) + (xy 139.944605 102.715) (xy 139.965537 102.689494) (xy 140.024502 102.57918) (xy 140.060812 102.459482) (xy 140.073072 102.335) + (xy 140.073072 100.555) (xy 140.060812 100.430518) (xy 140.024502 100.31082) (xy 139.965537 100.200506) (xy 139.944605 100.175) + (xy 139.965537 100.149494) (xy 140.024502 100.03918) (xy 140.060812 99.919482) (xy 140.073072 99.795) (xy 140.073072 98.015) + (xy 140.060812 97.890518) (xy 140.024502 97.77082) (xy 139.965537 97.660506) (xy 139.944605 97.635) (xy 139.965537 97.609494) + (xy 140.024502 97.49918) (xy 140.060812 97.379482) (xy 140.073072 97.255) (xy 140.073072 95.475) (xy 140.060812 95.350518) + (xy 140.024502 95.23082) (xy 139.965537 95.120506) (xy 139.944605 95.095) (xy 139.965537 95.069494) (xy 140.024502 94.95918) + (xy 140.060812 94.839482) (xy 140.073072 94.715) (xy 140.073072 92.935) (xy 140.060812 92.810518) (xy 140.024502 92.69082) + (xy 139.965537 92.580506) (xy 139.944605 92.555) (xy 139.965537 92.529494) (xy 140.024502 92.41918) (xy 140.060812 92.299482) + (xy 140.073072 92.175) (xy 140.073072 90.395) (xy 140.060812 90.270518) (xy 140.024502 90.15082) (xy 139.965537 90.040506) + (xy 139.886185 89.943815) (xy 139.789494 89.864463) (xy 139.67918 89.805498) (xy 139.559482 89.769188) (xy 139.435 89.756928) + (xy 137.435 89.756928) (xy 137.310518 89.769188) (xy 137.19082 89.805498) (xy 137.080506 89.864463) (xy 136.983815 89.943815) + (xy 136.904463 90.040506) (xy 136.897163 90.054162) (xy 134.084999 87.241999) (xy 134.084999 86.997518) (xy 134.273439 87.035) + (xy 134.526561 87.035) (xy 134.774821 86.985619) (xy 135.008676 86.888753) (xy 135.21914 86.748125) (xy 135.398125 86.56914) + (xy 135.538753 86.358676) (xy 135.635619 86.124821) (xy 135.685 85.876561) (xy 135.685 85.858001) (xy 135.818001 85.725) + (xy 141.151928 85.725) (xy 141.151928 85.82) (xy 141.164188 85.944482) (xy 141.200498 86.06418) (xy 141.259463 86.174494) + (xy 141.338815 86.271185) (xy 141.435506 86.350537) (xy 141.54582 86.409502) (xy 141.665518 86.445812) (xy 141.79 86.458072) + (xy 142.91 86.458072) (xy 143.034482 86.445812) (xy 143.15418 86.409502) (xy 143.264494 86.350537) (xy 143.361185 86.271185) + (xy 143.440537 86.174494) (xy 143.499502 86.06418) (xy 143.535812 85.944482) (xy 143.548072 85.82) (xy 143.548072 84.934928) + (xy 145.544349 82.938651) (xy 145.652433 82.996423) (xy 145.816684 83.046248) (xy 145.9875 83.063072) (xy 146.4625 83.063072) + (xy 146.633316 83.046248) (xy 146.797567 82.996423) (xy 146.948942 82.915512) (xy 147.081623 82.806623) (xy 147.190512 82.673942) + (xy 147.271423 82.522567) (xy 147.321248 82.358316) (xy 147.338072 82.1875) (xy 147.338072 81.5875) (xy 147.321248 81.416684) + (xy 147.271423 81.252433) (xy 147.190512 81.101058) (xy 147.128093 81.025) (xy 147.190512 80.948942) (xy 147.271423 80.797567) + (xy 147.321248 80.633316) (xy 147.338072 80.4625) (xy 147.338072 79.8625) (xy 147.321248 79.691684) (xy 147.271423 79.527433) + (xy 147.190512 79.376058) (xy 147.081623 79.243377) (xy 146.948942 79.134488) (xy 146.797567 79.053577) (xy 146.633316 79.003752) + (xy 146.4625 78.986928) (xy 145.9875 78.986928) (xy 145.816684 79.003752) (xy 145.652433 79.053577) (xy 145.501058 79.134488) + (xy 145.448648 79.1775) (xy 144.910501 79.1775) (xy 143.548072 77.815072) (xy 143.548072 76.93) (xy 143.535812 76.805518) + (xy 143.499502 76.68582) (xy 143.485701 76.66) (xy 150.442 76.66) (xy 151.540001 77.758001) (xy 151.540001 77.875017) + (xy 151.478577 77.989933) (xy 151.428752 78.154184) (xy 151.411928 78.325) (xy 151.411928 78.925) (xy 151.428752 79.095816) + (xy 151.478577 79.260067) (xy 151.559488 79.411442) (xy 151.621907 79.4875) (xy 151.559488 79.563558) (xy 151.478577 79.714933) + (xy 151.428752 79.879184) (xy 151.411928 80.05) (xy 151.411928 80.070071) (xy 144.767 86.715) (xy 141.882265 86.715) + (xy 141.86914 86.701875) (xy 141.658676 86.561247) (xy 141.424821 86.464381) (xy 141.176561 86.415) (xy 140.923439 86.415) + (xy 140.675179 86.464381) (xy 140.441324 86.561247) (xy 140.23086 86.701875) (xy 140.051875 86.88086) (xy 139.911247 87.091324) + (xy 139.814381 87.325179) (xy 139.765 87.573439) (xy 139.765 87.826561) (xy 139.814381 88.074821) (xy 139.911247 88.308676) + (xy 140.051875 88.51914) (xy 140.23086 88.698125) (xy 140.441324 88.838753) (xy 140.675179 88.935619) (xy 140.923439 88.985) + (xy 141.176561 88.985) (xy 141.424821 88.935619) (xy 141.658676 88.838753) (xy 141.86914 88.698125) (xy 141.882265 88.685) + (xy 145.12662 88.685) (xy 145.175 88.689765) (xy 145.22338 88.685) (xy 145.368094 88.670747) (xy 145.553767 88.614424) + (xy 145.724884 88.52296) (xy 145.87487 88.39987) (xy 145.905716 88.362284) (xy 152.742429 81.525572) (xy 152.7625 81.525572) + (xy 152.933316 81.508748) (xy 153.097567 81.458923) (xy 153.189096 81.41) (xy 154.27662 81.41) (xy 154.325 81.414765) + (xy 154.37338 81.41) (xy 154.518094 81.395747) (xy 154.703767 81.339424) (xy 154.874884 81.24796) (xy 155.02487 81.12487) + (xy 155.14796 80.974884) (xy 155.239424 80.803767) (xy 155.295747 80.618094) (xy 155.314765 80.425) (xy 155.31 80.37662) + (xy 155.31 76.042674) (xy 155.336185 76.021185) (xy 155.415537 75.924494) (xy 155.474502 75.81418) (xy 155.510812 75.694482) + (xy 155.523072 75.57) (xy 155.523072 73.41) (xy 155.510812 73.285518) (xy 155.474502 73.16582) (xy 155.415537 73.055506) + (xy 155.336185 72.958815) (xy 155.239494 72.879463) (xy 155.12918 72.820498) (xy 155.009482 72.784188) (xy 154.885 72.771928) + (xy 153.765 72.771928) (xy 153.640518 72.784188) (xy 153.52082 72.820498) (xy 153.410506 72.879463) (xy 153.313815 72.958815) + (xy 153.234463 73.055506) (xy 153.175498 73.16582) (xy 153.139188 73.285518) (xy 153.126928 73.41) (xy 153.126928 75.57) + (xy 153.139188 75.694482) (xy 153.175498 75.81418) (xy 153.234463 75.924494) (xy 153.313815 76.021185) (xy 153.34 76.042675) + (xy 153.34 76.790417) (xy 153.276163 76.712631) (xy 153.22487 76.65013) (xy 153.18729 76.619289) (xy 151.91 75.342) + (xy 151.91 69.483) (xy 152.648001 68.745) (xy 153.126928 68.745) (xy 153.126928 68.84) (xy 153.139188 68.964482) + (xy 153.175498 69.08418) (xy 153.234463 69.194494) (xy 153.313815 69.291185) (xy 153.410506 69.370537) (xy 153.52082 69.429502) + (xy 153.640518 69.465812) (xy 153.765 69.478072) (xy 154.885 69.478072) (xy 155.009482 69.465812) (xy 155.12918 69.429502) + (xy 155.239494 69.370537) (xy 155.336185 69.291185) (xy 155.415537 69.194494) (xy 155.474502 69.08418) (xy 155.510812 68.964482) + (xy 155.523072 68.84) (xy 155.523072 68.745) (xy 156.777501 68.745) (xy 156.7775 77.798648) (xy 156.734488 77.851058) + (xy 156.653577 78.002433) (xy 156.603752 78.166684) (xy 156.586928 78.3375) (xy 156.586928 78.8125) (xy 156.603752 78.983316) + (xy 156.653577 79.147567) (xy 156.734488 79.298942) (xy 156.802501 79.381815) (xy 156.8025 80.548648) (xy 156.759488 80.601058) + (xy 156.678577 80.752433) (xy 156.628752 80.916684) (xy 156.611928 81.0875) (xy 156.611928 81.107571) (xy 147.962572 89.756928) + (xy 146.965 89.756928) (xy 146.840518 89.769188) (xy 146.72082 89.805498) (xy 146.610506 89.864463) (xy 146.513815 89.943815) + (xy 146.434463 90.040506) (xy 146.375498 90.15082) (xy 146.339188 90.270518) (xy 146.336284 90.3) (xy 145.03838 90.3) + (xy 144.99 90.295235) (xy 144.94162 90.3) (xy 144.796906 90.314253) (xy 144.611233 90.370576) (xy 144.440116 90.46204) + (xy 144.29013 90.58513) (xy 144.16704 90.735116) (xy 144.075576 90.906233) (xy 144.019253 91.091906) (xy 144.000235 91.285) + (xy 144.005 91.333379) (xy 144.005001 96.53661) (xy 144.000235 96.585) (xy 144.005 96.63338) (xy 144.005001 101.31661) + (xy 144.000235 101.365) (xy 144.005 101.41338) (xy 144.005001 105.50161) (xy 144.000235 105.55) (xy 144.005 105.59838) + (xy 144.005001 110.68) (xy 130.883379 110.68) (xy 130.834999 110.675235) (xy 130.641905 110.694253) (xy 130.598691 110.707362) + (xy 130.456233 110.750576) (xy 130.285116 110.84204) (xy 130.13513 110.96513) (xy 130.104284 111.002716) (xy 127.657 113.45) + (xy 126.355176 113.45) (xy 126.116444 113.473513) (xy 125.810131 113.566432) (xy 125.52783 113.717325) (xy 125.280392 113.920392) + (xy 125.077325 114.16783) (xy 124.926432 114.450131) (xy 124.833513 114.756444) (xy 124.802138 115.075) (xy 124.833513 115.393556) + (xy 124.926432 115.699869) (xy 125.077325 115.98217) (xy 125.280392 116.229608) (xy 125.52783 116.432675) (xy 125.810131 116.583568) + (xy 126.116444 116.676487) (xy 126.355176 116.7) (xy 128.494824 116.7) (xy 128.733556 116.676487) (xy 129.039869 116.583568) + (xy 129.32217 116.432675) (xy 129.569608 116.229608) (xy 129.772675 115.98217) (xy 129.923568 115.699869) (xy 130.016487 115.393556) + (xy 130.047862 115.075) (xy 130.016487 114.756444) (xy 129.923568 114.450131) (xy 129.772675 114.16783) (xy 129.751262 114.141738) + (xy 131.243 112.65) (xy 144.582 112.65) (xy 145.264917 113.332917) (xy 145.301576 113.453766) (xy 145.323 113.493847) + (xy 145.323001 117.304262) (xy 145.137814 117.322501) (xy 144.853972 117.408604) (xy 144.592382 117.548427) (xy 144.363097 117.736597) + (xy 144.174927 117.965882) (xy 144.035104 118.227472) (xy 143.996072 118.356143) (xy 143.996072 114.9315) (xy 143.983812 114.807018) + (xy 143.947502 114.68732) (xy 143.888537 114.577006) (xy 143.809185 114.480315) (xy 143.712494 114.400963) (xy 143.60218 114.341998) + (xy 143.482482 114.305688) (xy 143.358 114.293428) (xy 139.858 114.293428) (xy 139.733518 114.305688) (xy 139.61382 114.341998) + (xy 139.503506 114.400963) (xy 139.406815 114.480315) (xy 139.327463 114.577006) (xy 139.268498 114.68732) (xy 139.232188 114.807018) + (xy 139.219928 114.9315) (xy 139.219928 116.517089) (xy 139.203735 116.6815) (xy 139.219928 116.845911) (xy 139.219928 118.4315) + (xy 139.232188 118.555982) (xy 139.268498 118.67568) (xy 139.327463 118.785994) (xy 139.406815 118.882685) (xy 139.503506 118.962037) + (xy 139.61382 119.021002) (xy 139.733518 119.057312) (xy 139.858 119.069572) (xy 143.358 119.069572) (xy 143.482482 119.057312) + (xy 143.60218 119.021002) (xy 143.712494 118.962037) (xy 143.809185 118.882685) (xy 143.888537 118.785994) (xy 143.929494 118.709369) + (xy 143.919928 118.8065) (xy 143.919928 120.5565) (xy 143.930694 120.665806) (xy 143.615208 120.981292) (xy 143.589515 120.949985) + (xy 143.379171 120.77736) (xy 143.139192 120.649089) (xy 142.878799 120.570099) (xy 142.608 120.543428) (xy 140.608 120.543428) + (xy 140.337201 120.570099) (xy 140.076808 120.649089) (xy 139.836829 120.77736) (xy 139.626485 120.949985) (xy 139.45386 121.160329) + (xy 139.325589 121.400308) (xy 139.246599 121.660701) (xy 139.219928 121.9315) (xy 139.219928 123.4315) (xy 139.246599 123.702299) + (xy 139.325589 123.962692) (xy 139.45386 124.202671) (xy 139.463979 124.215001) (xy 135.738002 124.215001) (xy 130.935716 119.412716) + (xy 130.90487 119.37513) (xy 130.754884 119.25204) (xy 130.583767 119.160576) (xy 130.398094 119.104253) (xy 130.25338 119.09) + (xy 130.205 119.085235) (xy 130.15662 119.09) (xy 130.043072 119.09) (xy 130.043072 119.085) (xy 130.030812 118.960518) + (xy 129.994502 118.84082) (xy 129.935537 118.730506) (xy 129.856185 118.633815) (xy 129.759494 118.554463) (xy 129.64918 118.495498) + (xy 129.529482 118.459188) (xy 129.405 118.446928) (xy 125.445 118.446928) (xy 125.320518 118.459188) (xy 125.20082 118.495498) + (xy 125.090506 118.554463) (xy 124.993815 118.633815) (xy 124.914463 118.730506) (xy 124.855498 118.84082) (xy 124.819188 118.960518) + (xy 124.806928 119.085) (xy 124.806928 121.065) (xy 124.819188 121.189482) (xy 124.855498 121.30918) (xy 124.914463 121.419494) + (xy 124.993815 121.516185) (xy 125.090506 121.595537) (xy 125.20082 121.654502) (xy 125.320518 121.690812) (xy 125.445 121.703072) + (xy 129.405 121.703072) (xy 129.529482 121.690812) (xy 129.64918 121.654502) (xy 129.759494 121.595537) (xy 129.856185 121.516185) + (xy 129.935537 121.419494) (xy 129.994502 121.30918) (xy 130.00653 121.26953) (xy 131.685 122.948) (xy 121.11 122.948) + (xy 121.11 66.86) (xy 141.018277 66.86) + ) + ) + (filled_polygon + (pts + (xy 161.44 110.741928) (xy 159.775 110.741928) (xy 159.650518 110.754188) (xy 159.53082 110.790498) (xy 159.420506 110.849463) + (xy 159.323815 110.928815) (xy 159.244463 111.025506) (xy 159.185498 111.13582) (xy 159.149188 111.255518) (xy 159.136928 111.38) + (xy 159.136928 113.08) (xy 159.149188 113.204482) (xy 159.185498 113.32418) (xy 159.244463 113.434494) (xy 159.323815 113.531185) + (xy 159.420506 113.610537) (xy 159.53082 113.669502) (xy 159.60338 113.691513) (xy 159.471525 113.823368) (xy 159.30901 114.066589) + (xy 159.197068 114.336842) (xy 159.14 114.62374) (xy 159.14 114.91626) (xy 159.197068 115.203158) (xy 159.30901 115.473411) + (xy 159.471525 115.716632) (xy 159.678368 115.923475) (xy 159.85276 116.04) (xy 159.678368 116.156525) (xy 159.471525 116.363368) + (xy 159.30901 116.606589) (xy 159.197068 116.876842) (xy 159.14 117.16374) (xy 159.14 117.45626) (xy 159.197068 117.743158) + (xy 159.30901 118.013411) (xy 159.471525 118.256632) (xy 159.678368 118.463475) (xy 159.85276 118.58) (xy 159.678368 118.696525) + (xy 159.471525 118.903368) (xy 159.30901 119.146589) (xy 159.197068 119.416842) (xy 159.14 119.70374) (xy 159.14 119.99626) + (xy 159.197068 120.283158) (xy 159.30901 120.553411) (xy 159.471525 120.796632) (xy 159.678368 121.003475) (xy 159.921589 121.16599) + (xy 160.191842 121.277932) (xy 160.47874 121.335) (xy 160.77126 121.335) (xy 161.058158 121.277932) (xy 161.328411 121.16599) + (xy 161.440001 121.091428) (xy 161.440001 122.388527) (xy 161.358411 122.33401) (xy 161.088158 122.222068) (xy 160.80126 122.165) + (xy 160.50874 122.165) (xy 160.221842 122.222068) (xy 159.951589 122.33401) (xy 159.708368 122.496525) (xy 159.501525 122.703368) + (xy 159.385 122.87776) (xy 159.268475 122.703368) (xy 159.061632 122.496525) (xy 158.818411 122.33401) (xy 158.548158 122.222068) + (xy 158.26126 122.165) (xy 157.96874 122.165) (xy 157.681842 122.222068) (xy 157.411589 122.33401) (xy 157.168368 122.496525) + (xy 157.036513 122.62838) (xy 157.014502 122.55582) (xy 156.955537 122.445506) (xy 156.876185 122.348815) (xy 156.779494 122.269463) + (xy 156.66918 122.210498) (xy 156.549482 122.174188) (xy 156.425 122.161928) (xy 154.725 122.161928) (xy 154.600518 122.174188) + (xy 154.48082 122.210498) (xy 154.370506 122.269463) (xy 154.273815 122.348815) (xy 154.194463 122.445506) (xy 154.135498 122.55582) + (xy 154.102379 122.665) (xy 153.933 122.665) (xy 152.41 121.142) (xy 152.41 118.273379) (xy 152.414765 118.224999) + (xy 152.395747 118.031906) (xy 152.339424 117.846233) (xy 152.280822 117.736597) (xy 152.24796 117.675116) (xy 152.12487 117.52513) + (xy 152.087284 117.494284) (xy 149.685 115.092) (xy 149.685 115.073439) (xy 149.635619 114.825179) (xy 149.538753 114.591324) + (xy 149.398125 114.38086) (xy 149.21914 114.201875) (xy 149.008676 114.061247) (xy 148.800458 113.975) (xy 154.586928 113.975) + (xy 154.586928 115.675) (xy 154.599188 115.799482) (xy 154.635498 115.91918) (xy 154.694463 116.029494) (xy 154.773815 116.126185) + (xy 154.870506 116.205537) (xy 154.98082 116.264502) (xy 155.05338 116.286513) (xy 154.921525 116.418368) (xy 154.75901 116.661589) + (xy 154.647068 116.931842) (xy 154.59 117.21874) (xy 154.59 117.51126) (xy 154.647068 117.798158) (xy 154.75901 118.068411) + (xy 154.921525 118.311632) (xy 155.128368 118.518475) (xy 155.30276 118.635) (xy 155.128368 118.751525) (xy 154.921525 118.958368) + (xy 154.75901 119.201589) (xy 154.647068 119.471842) (xy 154.59 119.75874) (xy 154.59 120.05126) (xy 154.647068 120.338158) + (xy 154.75901 120.608411) (xy 154.921525 120.851632) (xy 155.128368 121.058475) (xy 155.371589 121.22099) (xy 155.641842 121.332932) + (xy 155.92874 121.39) (xy 156.22126 121.39) (xy 156.508158 121.332932) (xy 156.778411 121.22099) (xy 157.021632 121.058475) + (xy 157.228475 120.851632) (xy 157.39099 120.608411) (xy 157.502932 120.338158) (xy 157.56 120.05126) (xy 157.56 119.75874) + (xy 157.502932 119.471842) (xy 157.39099 119.201589) (xy 157.228475 118.958368) (xy 157.021632 118.751525) (xy 156.84724 118.635) + (xy 157.021632 118.518475) (xy 157.228475 118.311632) (xy 157.39099 118.068411) (xy 157.502932 117.798158) (xy 157.56 117.51126) + (xy 157.56 117.21874) (xy 157.502932 116.931842) (xy 157.39099 116.661589) (xy 157.228475 116.418368) (xy 157.09662 116.286513) + (xy 157.16918 116.264502) (xy 157.279494 116.205537) (xy 157.376185 116.126185) (xy 157.455537 116.029494) (xy 157.514502 115.91918) + (xy 157.550812 115.799482) (xy 157.563072 115.675) (xy 157.563072 113.975) (xy 157.550812 113.850518) (xy 157.514502 113.73082) + (xy 157.455537 113.620506) (xy 157.376185 113.523815) (xy 157.279494 113.444463) (xy 157.16918 113.385498) (xy 157.049482 113.349188) + (xy 156.925 113.336928) (xy 155.225 113.336928) (xy 155.100518 113.349188) (xy 154.98082 113.385498) (xy 154.870506 113.444463) + (xy 154.773815 113.523815) (xy 154.694463 113.620506) (xy 154.635498 113.73082) (xy 154.599188 113.850518) (xy 154.586928 113.975) + (xy 148.800458 113.975) (xy 148.774821 113.964381) (xy 148.526561 113.915) (xy 148.273439 113.915) (xy 148.025179 113.964381) + (xy 147.791324 114.061247) (xy 147.58086 114.201875) (xy 147.401875 114.38086) (xy 147.293 114.543802) (xy 147.293 113.03138) + (xy 147.297765 112.983) (xy 147.278747 112.789906) (xy 147.250332 112.696234) (xy 147.222424 112.604233) (xy 147.13096 112.433116) + (xy 147.00787 112.28313) (xy 146.970284 112.252284) (xy 145.975 111.257) (xy 145.975 107.51378) (xy 146.013379 107.51) + (xy 146.336284 107.51) (xy 146.339188 107.539482) (xy 146.375498 107.65918) (xy 146.434463 107.769494) (xy 146.455395 107.795) + (xy 146.434463 107.820506) (xy 146.375498 107.93082) (xy 146.339188 108.050518) (xy 146.326928 108.175) (xy 146.326928 109.955) + (xy 146.339188 110.079482) (xy 146.375498 110.19918) (xy 146.434463 110.309494) (xy 146.513815 110.406185) (xy 146.610506 110.485537) + (xy 146.72082 110.544502) (xy 146.840518 110.580812) (xy 146.965 110.593072) (xy 148.965 110.593072) (xy 149.089482 110.580812) + (xy 149.20918 110.544502) (xy 149.319494 110.485537) (xy 149.416185 110.406185) (xy 149.49189 110.313938) (xy 149.49 110.323439) + (xy 149.49 110.576561) (xy 149.539381 110.824821) (xy 149.636247 111.058676) (xy 149.776875 111.26914) (xy 149.95586 111.448125) + (xy 150.166324 111.588753) (xy 150.400179 111.685619) (xy 150.648439 111.735) (xy 150.901561 111.735) (xy 151.149821 111.685619) + (xy 151.383676 111.588753) (xy 151.59414 111.448125) (xy 151.6375 111.404765) (xy 151.68086 111.448125) (xy 151.891324 111.588753) + (xy 152.125179 111.685619) (xy 152.373439 111.735) (xy 152.626561 111.735) (xy 152.874821 111.685619) (xy 153.108676 111.588753) + (xy 153.31914 111.448125) (xy 153.332265 111.435) (xy 158.25162 111.435) (xy 158.3 111.439765) (xy 158.34838 111.435) + (xy 158.493094 111.420747) (xy 158.678767 111.364424) (xy 158.849884 111.27296) (xy 158.99987 111.14987) (xy 159.030715 111.112285) + (xy 160.18729 109.955711) (xy 160.22487 109.92487) (xy 160.34796 109.774884) (xy 160.439424 109.603767) (xy 160.495747 109.418094) + (xy 160.51 109.27338) (xy 160.51 109.273379) (xy 160.514765 109.225) (xy 160.51 109.17662) (xy 160.51 109.163072) + (xy 160.7 109.163072) (xy 160.824482 109.150812) (xy 160.94418 109.114502) (xy 161.054494 109.055537) (xy 161.151185 108.976185) + (xy 161.230537 108.879494) (xy 161.289502 108.76918) (xy 161.325812 108.649482) (xy 161.338072 108.525) (xy 161.338072 103.425) + (xy 161.325812 103.300518) (xy 161.289502 103.18082) (xy 161.230537 103.070506) (xy 161.151185 102.973815) (xy 161.054494 102.894463) + (xy 160.94418 102.835498) (xy 160.824482 102.799188) (xy 160.7 102.786928) (xy 158.35 102.786928) (xy 158.225518 102.799188) + (xy 158.10582 102.835498) (xy 157.995506 102.894463) (xy 157.898815 102.973815) (xy 157.819463 103.070506) (xy 157.760498 103.18082) + (xy 157.724188 103.300518) (xy 157.711928 103.425) (xy 157.711928 108.525) (xy 157.724188 108.649482) (xy 157.760498 108.76918) + (xy 157.819463 108.879494) (xy 157.898815 108.976185) (xy 157.995506 109.055537) (xy 158.10582 109.114502) (xy 158.210687 109.146313) + (xy 157.892 109.465) (xy 153.332265 109.465) (xy 153.31914 109.451875) (xy 153.108676 109.311247) (xy 152.874821 109.214381) + (xy 152.836285 109.206716) (xy 153.561928 108.481073) (xy 153.561928 108.525) (xy 153.574188 108.649482) (xy 153.610498 108.76918) + (xy 153.669463 108.879494) (xy 153.748815 108.976185) (xy 153.845506 109.055537) (xy 153.95582 109.114502) (xy 154.075518 109.150812) + (xy 154.2 109.163072) (xy 156.55 109.163072) (xy 156.674482 109.150812) (xy 156.79418 109.114502) (xy 156.904494 109.055537) + (xy 157.001185 108.976185) (xy 157.080537 108.879494) (xy 157.139502 108.76918) (xy 157.175812 108.649482) (xy 157.188072 108.525) + (xy 157.188072 103.554928) (xy 161.44 99.303001) + ) + ) + (filled_polygon + (pts + (xy 161.440001 118.608572) (xy 161.39724 118.58) (xy 161.440001 118.551428) + ) + ) + (filled_polygon + (pts + (xy 161.440001 116.068572) (xy 161.39724 116.04) (xy 161.440001 116.011428) + ) + ) + (filled_polygon + (pts + (xy 130.025906 107.495747) (xy 130.219 107.514765) (xy 130.26738 107.51) (xy 136.806284 107.51) (xy 136.809188 107.539482) + (xy 136.845498 107.65918) (xy 136.904463 107.769494) (xy 136.925395 107.795) (xy 136.904463 107.820506) (xy 136.845498 107.93082) + (xy 136.809188 108.050518) (xy 136.806284 108.08) (xy 130.033572 108.08) (xy 130.033572 107.7315) (xy 130.021312 107.607018) + (xy 129.985002 107.48732) (xy 129.982462 107.482569) + ) + ) + (filled_polygon + (pts + (xy 150.915001 106.421999) (xy 149.502837 107.834163) (xy 149.495537 107.820506) (xy 149.474605 107.795) (xy 149.495537 107.769494) + (xy 149.554502 107.65918) (xy 149.590812 107.539482) (xy 149.603072 107.415) (xy 149.603072 105.635) (xy 149.590812 105.510518) + (xy 149.554502 105.39082) (xy 149.495537 105.280506) (xy 149.474605 105.255) (xy 149.495537 105.229494) (xy 149.554502 105.11918) + (xy 149.590812 104.999482) (xy 149.593716 104.97) (xy 149.61662 104.97) (xy 149.665 104.974765) (xy 149.71338 104.97) + (xy 149.858094 104.955747) (xy 150.043767 104.899424) (xy 150.214884 104.80796) (xy 150.36487 104.68487) (xy 150.395715 104.647285) + (xy 150.915 104.128) + ) + ) + (filled_polygon + (pts + (xy 155.743377 100.631623) (xy 155.876058 100.740512) (xy 156.027433 100.821423) (xy 156.191684 100.871248) (xy 156.3625 100.888072) + (xy 156.8625 100.888072) (xy 157.033316 100.871248) (xy 157.108584 100.848416) (xy 155.170072 102.786928) (xy 154.2 102.786928) + (xy 154.075518 102.799188) (xy 153.95582 102.835498) (xy 153.845506 102.894463) (xy 153.748815 102.973815) (xy 153.669463 103.070506) + (xy 153.610498 103.18082) (xy 153.574188 103.300518) (xy 153.561928 103.425) (xy 153.561928 105.695071) (xy 152.885 106.371999) + (xy 152.885 103.0705) (xy 155.070699 100.884802) (xy 155.208316 100.871248) (xy 155.372567 100.821423) (xy 155.523942 100.740512) + (xy 155.656623 100.631623) (xy 155.7 100.578768) + ) + ) + (filled_polygon + (pts + (xy 146.339188 102.459482) (xy 146.375498 102.57918) (xy 146.434463 102.689494) (xy 146.455395 102.715) (xy 146.434463 102.740506) + (xy 146.375498 102.85082) (xy 146.339188 102.970518) (xy 146.326928 103.095) (xy 146.326928 104.875) (xy 146.339188 104.999482) + (xy 146.375498 105.11918) (xy 146.434463 105.229494) (xy 146.455395 105.255) (xy 146.434463 105.280506) (xy 146.375498 105.39082) + (xy 146.340196 105.507196) (xy 145.975 105.142) (xy 145.975 102.43) (xy 146.336284 102.43) + ) + ) + (filled_polygon + (pts + (xy 153.728577 99.202433) (xy 153.678752 99.366684) (xy 153.665198 99.504301) (xy 151.385 101.7845) (xy 151.385 101.483) + (xy 153.800928 99.067072) + ) + ) + (filled_polygon + (pts + (xy 153.809488 95.951058) (xy 153.728577 96.102433) (xy 153.678752 96.266684) (xy 153.663832 96.418167) (xy 149.737716 100.344284) + (xy 149.70013 100.37513) (xy 149.597655 100.499997) (xy 149.590812 100.430518) (xy 149.554502 100.31082) (xy 149.495537 100.200506) + (xy 149.474605 100.175) (xy 149.495537 100.149494) (xy 149.554502 100.03918) (xy 149.590812 99.919482) (xy 149.594576 99.881264) + (xy 149.650594 99.875747) (xy 149.836267 99.819424) (xy 150.007384 99.72796) (xy 150.15737 99.60487) (xy 150.188216 99.567284) + (xy 153.832582 95.922918) + ) + ) + (filled_polygon + (pts + (xy 146.339188 97.379482) (xy 146.375498 97.49918) (xy 146.434463 97.609494) (xy 146.455395 97.635) (xy 146.434463 97.660506) + (xy 146.375498 97.77082) (xy 146.339188 97.890518) (xy 146.326928 98.015) (xy 146.326928 99.795) (xy 146.339188 99.919482) + (xy 146.375498 100.03918) (xy 146.434463 100.149494) (xy 146.455395 100.175) (xy 146.434463 100.200506) (xy 146.375498 100.31082) + (xy 146.339188 100.430518) (xy 146.336284 100.46) (xy 145.975 100.46) (xy 145.975 97.35) (xy 146.336284 97.35) + ) + ) + (filled_polygon + (pts + (xy 157.698416 100.258584) (xy 157.721248 100.183316) (xy 157.734802 100.045698) (xy 159.793825 97.986675) (xy 159.924821 97.960619) + (xy 160.04698 97.910019) + ) + ) + (filled_polygon + (pts + (xy 155.743377 97.531623) (xy 155.876058 97.640512) (xy 156.027433 97.721423) (xy 156.191684 97.771248) (xy 156.3625 97.788072) + (xy 156.8625 97.788072) (xy 157.033316 97.771248) (xy 157.197567 97.721423) (xy 157.348942 97.640512) (xy 157.377082 97.617418) + (xy 156.329302 98.665198) (xy 156.191684 98.678752) (xy 156.027433 98.728577) (xy 155.876058 98.809488) (xy 155.743377 98.918377) + (xy 155.7 98.971232) (xy 155.656623 98.918377) (xy 155.523942 98.809488) (xy 155.372567 98.728577) (xy 155.208316 98.678752) + (xy 155.0375 98.661928) (xy 154.5375 98.661928) (xy 154.366684 98.678752) (xy 154.202433 98.728577) (xy 154.067073 98.800928) + (xy 155.084564 97.783437) (xy 155.208316 97.771248) (xy 155.372567 97.721423) (xy 155.523942 97.640512) (xy 155.656623 97.531623) + (xy 155.7 97.478768) + ) + ) + (filled_polygon + (pts + (xy 158.265 96.598439) (xy 158.265 96.7295) (xy 157.567418 97.427082) (xy 157.590512 97.398942) (xy 157.671423 97.247567) + (xy 157.721248 97.083316) (xy 157.734802 96.945698) (xy 158.310423 96.370077) + ) + ) + (filled_polygon + (pts + (xy 153.809488 92.851058) (xy 153.728577 93.002433) (xy 153.678752 93.166684) (xy 153.665198 93.304302) (xy 149.590899 97.378601) + (xy 149.603072 97.255) (xy 149.603072 95.475) (xy 149.590812 95.350518) (xy 149.554502 95.23082) (xy 149.495537 95.120506) + (xy 149.474605 95.095) (xy 149.495537 95.069494) (xy 149.554502 94.95918) (xy 149.590812 94.839482) (xy 149.593716 94.81) + (xy 151.38912 94.81) (xy 151.4375 94.814765) (xy 151.48588 94.81) (xy 151.630594 94.795747) (xy 151.816267 94.739424) + (xy 151.987384 94.64796) (xy 152.13737 94.52487) (xy 152.168216 94.487284) (xy 153.832582 92.822918) + ) + ) + (filled_polygon + (pts + (xy 162.740001 97.091233) (xy 162.66 97.066965) (xy 162.66 88.226368) (xy 162.74 88.106639) + ) + ) + (filled_polygon + (pts + (xy 160.69 96.119335) (xy 160.688753 96.116324) (xy 160.548125 95.90586) (xy 160.36914 95.726875) (xy 160.158676 95.586247) + (xy 159.924821 95.489381) (xy 159.676561 95.44) (xy 159.423439 95.44) (xy 159.195078 95.485423) (xy 159.787618 94.892882) + (xy 159.949821 94.860619) (xy 160.183676 94.763753) (xy 160.39414 94.623125) (xy 160.573125 94.44414) (xy 160.69 94.269224) + ) + ) + (filled_polygon + (pts + (xy 155.743377 94.431623) (xy 155.876058 94.540512) (xy 156.027433 94.621423) (xy 156.191684 94.671248) (xy 156.3625 94.688072) + (xy 156.8625 94.688072) (xy 157.033316 94.671248) (xy 157.197567 94.621423) (xy 157.348942 94.540512) (xy 157.377079 94.51742) + (xy 156.329302 95.565198) (xy 156.191684 95.578752) (xy 156.027433 95.628577) (xy 155.876058 95.709488) (xy 155.743377 95.818377) + (xy 155.7 95.871232) (xy 155.656623 95.818377) (xy 155.523942 95.709488) (xy 155.372567 95.628577) (xy 155.208316 95.578752) + (xy 155.0375 95.561928) (xy 154.5375 95.561928) (xy 154.366684 95.578752) (xy 154.202433 95.628577) (xy 154.051058 95.709488) + (xy 154.022918 95.732582) (xy 155.070698 94.684802) (xy 155.208316 94.671248) (xy 155.372567 94.621423) (xy 155.523942 94.540512) + (xy 155.656623 94.431623) (xy 155.7 94.378768) + ) + ) + (filled_polygon + (pts + (xy 146.339188 92.299482) (xy 146.375498 92.41918) (xy 146.434463 92.529494) (xy 146.455395 92.555) (xy 146.434463 92.580506) + (xy 146.375498 92.69082) (xy 146.339188 92.810518) (xy 146.326928 92.935) (xy 146.326928 94.715) (xy 146.339188 94.839482) + (xy 146.375498 94.95918) (xy 146.434463 95.069494) (xy 146.455395 95.095) (xy 146.434463 95.120506) (xy 146.375498 95.23082) + (xy 146.339188 95.350518) (xy 146.336284 95.38) (xy 145.975 95.38) (xy 145.975 92.27) (xy 146.336284 92.27) + ) + ) + (filled_polygon + (pts + (xy 158.339381 93.250179) (xy 158.29 93.498439) (xy 158.29 93.604499) (xy 157.56742 94.327079) (xy 157.590512 94.298942) + (xy 157.671423 94.147567) (xy 157.721248 93.983316) (xy 157.734802 93.845698) (xy 158.345787 93.234713) + ) + ) + (filled_polygon + (pts + (xy 160.69 92.980776) (xy 160.573125 92.80586) (xy 160.39414 92.626875) (xy 160.183676 92.486247) (xy 159.949821 92.389381) + (xy 159.701561 92.34) (xy 159.448439 92.34) (xy 159.200179 92.389381) (xy 159.184713 92.395787) (xy 159.825032 91.755468) + (xy 159.924821 91.735619) (xy 160.158676 91.638753) (xy 160.36914 91.498125) (xy 160.548125 91.31914) (xy 160.688753 91.108676) + (xy 160.690001 91.105664) + ) + ) + (filled_polygon + (pts + (xy 162.74 86.743361) (xy 162.648125 86.60586) (xy 162.46914 86.426875) (xy 162.258676 86.286247) (xy 162.024821 86.189381) + (xy 161.776561 86.14) (xy 161.523439 86.14) (xy 161.275179 86.189381) (xy 161.041324 86.286247) (xy 160.83086 86.426875) + (xy 160.651875 86.60586) (xy 160.608352 86.670996) (xy 160.548125 86.58086) (xy 160.36914 86.401875) (xy 160.158676 86.261247) + (xy 159.924821 86.164381) (xy 159.676561 86.115) (xy 159.423439 86.115) (xy 159.175179 86.164381) (xy 158.941324 86.261247) + (xy 158.73086 86.401875) (xy 158.551875 86.58086) (xy 158.411247 86.791324) (xy 158.314381 87.025179) (xy 158.265 87.273439) + (xy 158.265 87.4295) (xy 156.329302 89.365198) (xy 156.191684 89.378752) (xy 156.027433 89.428577) (xy 155.876058 89.509488) + (xy 155.743377 89.618377) (xy 155.7 89.671232) (xy 155.656623 89.618377) (xy 155.523942 89.509488) (xy 155.372567 89.428577) + (xy 155.208316 89.378752) (xy 155.0375 89.361928) (xy 154.5375 89.361928) (xy 154.366684 89.378752) (xy 154.202433 89.428577) + (xy 154.051058 89.509488) (xy 153.918377 89.618377) (xy 153.809488 89.751058) (xy 153.728577 89.902433) (xy 153.678752 90.066684) + (xy 153.665198 90.204302) (xy 151.0295 92.84) (xy 149.593716 92.84) (xy 149.590812 92.810518) (xy 149.554502 92.69082) + (xy 149.495537 92.580506) (xy 149.474605 92.555) (xy 149.495537 92.529494) (xy 149.554502 92.41918) (xy 149.590812 92.299482) + (xy 149.603072 92.175) (xy 149.603072 90.902428) (xy 158.067429 82.438072) (xy 158.0875 82.438072) (xy 158.258316 82.421248) + (xy 158.422567 82.371423) (xy 158.5275 82.315335) (xy 158.527501 83.867339) (xy 158.411247 84.041324) (xy 158.314381 84.275179) + (xy 158.265 84.523439) (xy 158.265 84.776561) (xy 158.314381 85.024821) (xy 158.411247 85.258676) (xy 158.551875 85.46914) + (xy 158.73086 85.648125) (xy 158.941324 85.788753) (xy 159.175179 85.885619) (xy 159.423439 85.935) (xy 159.676561 85.935) + (xy 159.924821 85.885619) (xy 160.158676 85.788753) (xy 160.36914 85.648125) (xy 160.548125 85.46914) (xy 160.688753 85.258676) + (xy 160.785619 85.024821) (xy 160.835 84.776561) (xy 160.835 84.523439) (xy 160.785619 84.275179) (xy 160.688753 84.041324) + (xy 160.548125 83.83086) (xy 160.4975 83.780235) (xy 160.4975 82.101352) (xy 160.540512 82.048942) (xy 160.621423 81.897567) + (xy 160.671248 81.733316) (xy 160.688072 81.5625) (xy 160.688072 81.0875) (xy 160.671248 80.916684) (xy 160.621423 80.752433) + (xy 160.540512 80.601058) (xy 160.4725 80.518186) (xy 160.4725 79.351352) (xy 160.515512 79.298942) (xy 160.596423 79.147567) + (xy 160.646248 78.983316) (xy 160.663072 78.8125) (xy 160.663072 78.792428) (xy 161.312284 78.143216) (xy 161.34987 78.11237) + (xy 161.47296 77.962384) (xy 161.564424 77.791267) (xy 161.620747 77.605594) (xy 161.626903 77.543094) (xy 161.639765 77.412501) + (xy 161.635 77.364121) (xy 161.635 76.067674) (xy 161.661185 76.046185) (xy 161.740537 75.949494) (xy 161.799502 75.83918) + (xy 161.835812 75.719482) (xy 161.848072 75.595) (xy 161.848072 73.435) (xy 161.835812 73.310518) (xy 161.799502 73.19082) + (xy 161.740537 73.080506) (xy 161.661185 72.983815) (xy 161.564494 72.904463) (xy 161.45418 72.845498) (xy 161.334482 72.809188) + (xy 161.21 72.796928) (xy 160.09 72.796928) (xy 159.965518 72.809188) (xy 159.84582 72.845498) (xy 159.735506 72.904463) + (xy 159.638815 72.983815) (xy 159.559463 73.080506) (xy 159.500498 73.19082) (xy 159.464188 73.310518) (xy 159.451928 73.435) + (xy 159.451928 75.595) (xy 159.464188 75.719482) (xy 159.500498 75.83918) (xy 159.559463 75.949494) (xy 159.638815 76.046185) + (xy 159.665001 76.067675) (xy 159.665001 77.004499) (xy 159.207572 77.461928) (xy 159.1875 77.461928) (xy 159.016684 77.478752) + (xy 158.852433 77.528577) (xy 158.7475 77.584664) (xy 158.7475 68.745) (xy 159.451928 68.745) (xy 159.451928 68.865) + (xy 159.464188 68.989482) (xy 159.500498 69.10918) (xy 159.559463 69.219494) (xy 159.638815 69.316185) (xy 159.735506 69.395537) + (xy 159.84582 69.454502) (xy 159.965518 69.490812) (xy 160.09 69.503072) (xy 161.21 69.503072) (xy 161.334482 69.490812) + (xy 161.45418 69.454502) (xy 161.564494 69.395537) (xy 161.661185 69.316185) (xy 161.740537 69.219494) (xy 161.799502 69.10918) + (xy 161.835812 68.989482) (xy 161.848072 68.865) (xy 161.848072 66.86) (xy 162.74 66.86) + ) + ) + (filled_polygon + (pts + (xy 155.743377 91.331623) (xy 155.876058 91.440512) (xy 156.027433 91.521423) (xy 156.191684 91.571248) (xy 156.3625 91.588072) + (xy 156.8625 91.588072) (xy 157.033316 91.571248) (xy 157.197567 91.521423) (xy 157.348942 91.440512) (xy 157.377082 91.417418) + (xy 156.329302 92.465198) (xy 156.191684 92.478752) (xy 156.027433 92.528577) (xy 155.876058 92.609488) (xy 155.743377 92.718377) + (xy 155.7 92.771232) (xy 155.656623 92.718377) (xy 155.523942 92.609488) (xy 155.372567 92.528577) (xy 155.208316 92.478752) + (xy 155.0375 92.461928) (xy 154.5375 92.461928) (xy 154.366684 92.478752) (xy 154.202433 92.528577) (xy 154.051058 92.609488) + (xy 154.022918 92.632582) (xy 155.070698 91.584802) (xy 155.208316 91.571248) (xy 155.372567 91.521423) (xy 155.523942 91.440512) + (xy 155.656623 91.331623) (xy 155.7 91.278768) + ) + ) + (filled_polygon + (pts + (xy 158.265 90.373439) (xy 158.265 90.5295) (xy 157.567418 91.227082) (xy 157.590512 91.198942) (xy 157.671423 91.047567) + (xy 157.721248 90.883316) (xy 157.734802 90.745698) (xy 158.304216 90.176284) + ) + ) + (filled_polygon + (pts + (xy 160.651875 88.24414) (xy 160.690001 88.282266) (xy 160.690001 89.894336) (xy 160.688753 89.891324) (xy 160.548125 89.68086) + (xy 160.36914 89.501875) (xy 160.158676 89.361247) (xy 159.924821 89.264381) (xy 159.676561 89.215) (xy 159.423439 89.215) + (xy 159.226284 89.254216) (xy 159.825032 88.655468) (xy 159.924821 88.635619) (xy 160.158676 88.538753) (xy 160.36914 88.398125) + (xy 160.548125 88.21914) (xy 160.591648 88.154004) + ) + ) + (filled_polygon + (pts + (xy 129.34 88.726622) (xy 129.335235 88.775002) (xy 129.34 88.823381) (xy 129.352413 88.949415) (xy 128.385 87.982002) + (xy 128.385 87.628072) (xy 129.34 87.628072) + ) + ) + ) + (zone (net 0) (net_name "") (layer B.Cu) (tstamp 625E896C) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) + (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 163.411519 126.175) (xy 120.436519 126.175) (xy 120.436519 66.175) (xy 163.411519 66.175) + ) + ) + (filled_polygon + (pts + (xy 140.825271 66.988962) (xy 140.513962 67.300271) (xy 140.269369 67.666331) (xy 140.10089 68.073075) (xy 140.015 68.504872) + (xy 140.015 68.945128) (xy 140.10089 69.376925) (xy 140.269369 69.783669) (xy 140.513962 70.149729) (xy 140.825271 70.461038) + (xy 141.191331 70.705631) (xy 141.598075 70.87411) (xy 142.029872 70.96) (xy 142.470128 70.96) (xy 142.901925 70.87411) + (xy 143.308669 70.705631) (xy 143.674729 70.461038) (xy 143.986038 70.149729) (xy 144.230631 69.783669) (xy 144.39911 69.376925) + (xy 144.485 68.945128) (xy 144.485 68.504872) (xy 144.39911 68.073075) (xy 144.230631 67.666331) (xy 143.986038 67.300271) + (xy 143.674729 66.988962) (xy 143.481723 66.86) (xy 162.74 66.86) (xy 162.74 86.743361) (xy 162.648125 86.60586) + (xy 162.535 86.492735) (xy 162.535 80.718465) (xy 162.539281 80.674999) (xy 162.535 80.631533) (xy 162.535 80.631523) + (xy 162.522195 80.50151) (xy 162.471589 80.334687) (xy 162.389411 80.180941) (xy 162.278817 80.046183) (xy 162.245044 80.018466) + (xy 161.869034 79.642456) (xy 161.841317 79.608683) (xy 161.706559 79.498089) (xy 161.552813 79.415911) (xy 161.38599 79.365305) + (xy 161.255977 79.3525) (xy 161.255969 79.3525) (xy 161.2125 79.348219) (xy 161.169031 79.3525) (xy 160.362277 79.3525) + (xy 160.248942 79.259488) (xy 160.097567 79.178577) (xy 159.933316 79.128752) (xy 159.7625 79.111928) (xy 159.2875 79.111928) + (xy 159.116684 79.128752) (xy 158.952433 79.178577) (xy 158.801058 79.259488) (xy 158.687723 79.3525) (xy 155.588072 79.3525) + (xy 155.588072 78.52) (xy 155.575812 78.395518) (xy 155.539502 78.27582) (xy 155.480537 78.165506) (xy 155.401185 78.068815) + (xy 155.304494 77.989463) (xy 155.19418 77.930498) (xy 155.074482 77.894188) (xy 154.95 77.881928) (xy 152.95 77.881928) + (xy 152.825518 77.894188) (xy 152.70582 77.930498) (xy 152.595506 77.989463) (xy 152.498815 78.068815) (xy 152.419463 78.165506) + (xy 152.360498 78.27582) (xy 152.343816 78.330814) (xy 152.331181 78.341183) (xy 152.303468 78.374951) (xy 147.346492 83.331928) + (xy 144.063507 83.331928) (xy 139.106534 78.374956) (xy 139.078817 78.341183) (xy 138.944059 78.230589) (xy 138.790313 78.148411) + (xy 138.62349 78.097805) (xy 138.493477 78.085) (xy 138.493469 78.085) (xy 138.45 78.080719) (xy 138.413874 78.084277) + (xy 138.401185 78.068815) (xy 138.304494 77.989463) (xy 138.19418 77.930498) (xy 138.074482 77.894188) (xy 137.95 77.881928) + (xy 137.835 77.881928) (xy 137.835 76.607265) (xy 137.948125 76.49414) (xy 138.088753 76.283676) (xy 138.185619 76.049821) + (xy 138.235 75.801561) (xy 138.235 75.548439) (xy 138.185619 75.300179) (xy 138.088753 75.066324) (xy 137.948125 74.85586) + (xy 137.76914 74.676875) (xy 137.558676 74.536247) (xy 137.324821 74.439381) (xy 137.076561 74.39) (xy 136.823439 74.39) + (xy 136.575179 74.439381) (xy 136.341324 74.536247) (xy 136.13086 74.676875) (xy 135.951875 74.85586) (xy 135.811247 75.066324) + (xy 135.714381 75.300179) (xy 135.665 75.548439) (xy 135.665 75.801561) (xy 135.714381 76.049821) (xy 135.811247 76.283676) + (xy 135.951875 76.49414) (xy 136.065001 76.607266) (xy 136.065 77.881928) (xy 135.95 77.881928) (xy 135.825518 77.894188) + (xy 135.70582 77.930498) (xy 135.595506 77.989463) (xy 135.498815 78.068815) (xy 135.419463 78.165506) (xy 135.360498 78.27582) + (xy 135.324188 78.395518) (xy 135.311928 78.52) (xy 135.311928 79.42) (xy 135.324188 79.544482) (xy 135.342546 79.605) + (xy 135.324188 79.665518) (xy 135.311928 79.79) (xy 135.311928 80.69) (xy 135.324188 80.814482) (xy 135.342546 80.875) + (xy 135.324188 80.935518) (xy 135.311928 81.06) (xy 135.311928 81.895) (xy 132.688465 81.895) (xy 132.644999 81.890719) + (xy 132.601533 81.895) (xy 132.601523 81.895) (xy 132.47151 81.907805) (xy 132.304687 81.958411) (xy 132.150941 82.040589) + (xy 132.150939 82.04059) (xy 132.15094 82.04059) (xy 132.049953 82.123468) (xy 132.049951 82.12347) (xy 132.016183 82.151183) + (xy 131.98847 82.184951) (xy 130.104956 84.068466) (xy 130.071183 84.096183) (xy 129.960589 84.230942) (xy 129.878411 84.384688) + (xy 129.856796 84.455942) (xy 129.830066 84.544059) (xy 129.827805 84.551511) (xy 129.827392 84.555702) (xy 129.734494 84.479463) + (xy 129.62418 84.420498) (xy 129.504482 84.384188) (xy 129.38 84.371928) (xy 125.42 84.371928) (xy 125.295518 84.384188) + (xy 125.17582 84.420498) (xy 125.065506 84.479463) (xy 124.968815 84.558815) (xy 124.889463 84.655506) (xy 124.830498 84.76582) + (xy 124.794188 84.885518) (xy 124.781928 85.01) (xy 124.781928 86.99) (xy 124.794188 87.114482) (xy 124.830498 87.23418) + (xy 124.889463 87.344494) (xy 124.968815 87.441185) (xy 125.065506 87.520537) (xy 125.17582 87.579502) (xy 125.295518 87.615812) + (xy 125.42 87.628072) (xy 129.38 87.628072) (xy 129.504482 87.615812) (xy 129.62418 87.579502) (xy 129.734494 87.520537) + (xy 129.815 87.454467) (xy 129.815 91.544789) (xy 129.763175 91.44783) (xy 129.560108 91.200392) (xy 129.31267 90.997325) + (xy 129.030369 90.846432) (xy 128.724056 90.753513) (xy 128.485324 90.73) (xy 126.345676 90.73) (xy 126.106944 90.753513) + (xy 125.800631 90.846432) (xy 125.51833 90.997325) (xy 125.270892 91.200392) (xy 125.067825 91.44783) (xy 124.916932 91.730131) + (xy 124.824013 92.036444) (xy 124.792638 92.355) (xy 124.824013 92.673556) (xy 124.916932 92.979869) (xy 125.067825 93.26217) + (xy 125.270892 93.509608) (xy 125.51833 93.712675) (xy 125.800631 93.863568) (xy 126.106944 93.956487) (xy 126.345676 93.98) + (xy 128.485324 93.98) (xy 128.724056 93.956487) (xy 129.030369 93.863568) (xy 129.31267 93.712675) (xy 129.560108 93.509608) + (xy 129.763175 93.26217) (xy 129.815001 93.165211) (xy 129.815001 95.887812) (xy 129.749994 95.834463) (xy 129.63968 95.775498) + (xy 129.519982 95.739188) (xy 129.3955 95.726928) (xy 125.4355 95.726928) (xy 125.311018 95.739188) (xy 125.19132 95.775498) + (xy 125.081006 95.834463) (xy 124.984315 95.913815) (xy 124.904963 96.010506) (xy 124.845998 96.12082) (xy 124.809688 96.240518) + (xy 124.797428 96.365) (xy 124.797428 98.345) (xy 124.809688 98.469482) (xy 124.845998 98.58918) (xy 124.904963 98.699494) + (xy 124.984315 98.796185) (xy 125.081006 98.875537) (xy 125.19132 98.934502) (xy 125.311018 98.970812) (xy 125.4355 98.983072) + (xy 129.3955 98.983072) (xy 129.519982 98.970812) (xy 129.63968 98.934502) (xy 129.749994 98.875537) (xy 129.815001 98.822187) + (xy 129.815001 100.131513) (xy 129.810718 100.175) (xy 129.827805 100.34849) (xy 129.878411 100.515313) (xy 129.960589 100.669059) + (xy 130.071183 100.803817) (xy 130.205941 100.914411) (xy 130.359687 100.996589) (xy 130.52651 101.047195) (xy 130.656523 101.06) + (xy 130.656524 101.06) (xy 130.7 101.064282) (xy 130.743477 101.06) (xy 144.083422 101.06) (xy 147.01686 103.993438) + (xy 146.9 103.981928) (xy 145.55 103.981928) (xy 145.396255 103.997071) (xy 145.271217 104.035) (xy 141.928783 104.035) + (xy 141.803745 103.997071) (xy 141.65 103.981928) (xy 141.288507 103.981928) (xy 139.336534 102.029956) (xy 139.308817 101.996183) + (xy 139.174059 101.885589) (xy 139.020313 101.803411) (xy 138.85349 101.752805) (xy 138.723477 101.74) (xy 138.723469 101.74) + (xy 138.68 101.735719) (xy 138.636531 101.74) (xy 132.343476 101.74) (xy 132.3 101.735718) (xy 132.256523 101.74) + (xy 132.12651 101.752805) (xy 131.959687 101.803411) (xy 131.805941 101.885589) (xy 131.671183 101.996183) (xy 131.560589 102.130941) + (xy 131.478411 102.284687) (xy 131.427805 102.45151) (xy 131.410718 102.625) (xy 131.415 102.668477) (xy 131.415001 105.931514) + (xy 131.410718 105.975) (xy 131.415 106.018477) (xy 131.415001 124.006513) (xy 131.410718 124.05) (xy 131.427805 124.22349) + (xy 131.478411 124.390313) (xy 131.560589 124.544059) (xy 131.671183 124.678817) (xy 131.805941 124.789411) (xy 131.959687 124.871589) + (xy 132.12651 124.922195) (xy 132.256523 124.935) (xy 132.256524 124.935) (xy 132.3 124.939282) (xy 132.343477 124.935) + (xy 135.116531 124.935) (xy 135.16 124.939281) (xy 135.203469 124.935) (xy 135.203477 124.935) (xy 135.33349 124.922195) + (xy 135.500313 124.871589) (xy 135.654059 124.789411) (xy 135.788817 124.678817) (xy 135.816534 124.645044) (xy 136.826007 123.635572) + (xy 137.525001 123.635572) (xy 137.698255 123.618508) (xy 137.864851 123.567972) (xy 138.018387 123.485905) (xy 138.152962 123.375462) + (xy 138.263405 123.240887) (xy 138.345472 123.087351) (xy 138.346944 123.0825) (xy 139.219928 123.0825) (xy 139.219928 123.4315) + (xy 139.246599 123.702299) (xy 139.325589 123.962692) (xy 139.45386 124.202671) (xy 139.626485 124.413015) (xy 139.836829 124.58564) + (xy 140.076808 124.713911) (xy 140.337201 124.792901) (xy 140.608 124.819572) (xy 142.608 124.819572) (xy 142.878799 124.792901) + (xy 143.139192 124.713911) (xy 143.379171 124.58564) (xy 143.589515 124.413015) (xy 143.76214 124.202671) (xy 143.890411 123.962692) + (xy 143.969401 123.702299) (xy 143.996072 123.4315) (xy 143.996072 121.9315) (xy 143.969401 121.660701) (xy 143.890411 121.400308) + (xy 143.76214 121.160329) (xy 143.589515 120.949985) (xy 143.379171 120.77736) (xy 143.139192 120.649089) (xy 142.878799 120.570099) + (xy 142.608 120.543428) (xy 140.608 120.543428) (xy 140.337201 120.570099) (xy 140.076808 120.649089) (xy 139.836829 120.77736) + (xy 139.626485 120.949985) (xy 139.493112 121.1125) (xy 138.346944 121.1125) (xy 138.345472 121.107649) (xy 138.263405 120.954113) + (xy 138.152962 120.819538) (xy 138.018387 120.709095) (xy 137.864851 120.627028) (xy 137.698255 120.576492) (xy 137.525001 120.559428) + (xy 136.699999 120.559428) (xy 136.526745 120.576492) (xy 136.360149 120.627028) (xy 136.206613 120.709095) (xy 136.072038 120.819538) + (xy 135.961595 120.954113) (xy 135.879528 121.107649) (xy 135.828992 121.274245) (xy 135.811928 121.447499) (xy 135.811928 122.146493) + (xy 135.288072 122.67035) (xy 135.288072 122.189929) (xy 135.337289 122.140712) (xy 135.37487 122.10987) (xy 135.49796 121.959884) + (xy 135.589424 121.788767) (xy 135.645747 121.603094) (xy 135.658985 121.468683) (xy 135.664765 121.41) (xy 135.66 121.36162) + (xy 135.66 117.645292) (xy 135.802433 117.721423) (xy 135.966684 117.771248) (xy 136.1375 117.788072) (xy 136.7125 117.788072) + (xy 136.883316 117.771248) (xy 137.047567 117.721423) (xy 137.162482 117.66) (xy 139.219928 117.66) (xy 139.219928 118.4315) + (xy 139.232188 118.555982) (xy 139.268498 118.67568) (xy 139.327463 118.785994) (xy 139.406815 118.882685) (xy 139.503506 118.962037) + (xy 139.61382 119.021002) (xy 139.733518 119.057312) (xy 139.858 119.069572) (xy 143.358 119.069572) (xy 143.482482 119.057312) + (xy 143.60218 119.021002) (xy 143.712494 118.962037) (xy 143.809185 118.882685) (xy 143.888537 118.785994) (xy 143.929494 118.709369) + (xy 143.919928 118.8065) (xy 143.919928 120.5565) (xy 143.949001 120.851686) (xy 144.035104 121.135528) (xy 144.174927 121.397118) + (xy 144.363097 121.626403) (xy 144.592382 121.814573) (xy 144.853972 121.954396) (xy 145.137814 122.040499) (xy 145.433 122.069572) + (xy 147.183 122.069572) (xy 147.478186 122.040499) (xy 147.762028 121.954396) (xy 148.023618 121.814573) (xy 148.252903 121.626403) + (xy 148.441073 121.397118) (xy 148.580896 121.135528) (xy 148.666999 120.851686) (xy 148.671105 120.81) (xy 149.575431 120.81) + (xy 149.586595 120.830887) (xy 149.697038 120.965462) (xy 149.831613 121.075905) (xy 149.985149 121.157972) (xy 150.151745 121.208508) + (xy 150.324999 121.225572) (xy 152.475001 121.225572) (xy 152.648255 121.208508) (xy 152.814851 121.157972) (xy 152.968387 121.075905) + (xy 153.102962 120.965462) (xy 153.213405 120.830887) (xy 153.278021 120.71) (xy 154.82689 120.71) (xy 154.921525 120.851632) + (xy 155.128368 121.058475) (xy 155.371589 121.22099) (xy 155.641842 121.332932) (xy 155.92874 121.39) (xy 156.22126 121.39) + (xy 156.29396 121.375539) (xy 157.316181 122.39776) (xy 157.168368 122.496525) (xy 157.036513 122.62838) (xy 157.014502 122.55582) + (xy 156.955537 122.445506) (xy 156.876185 122.348815) (xy 156.779494 122.269463) (xy 156.66918 122.210498) (xy 156.549482 122.174188) + (xy 156.425 122.161928) (xy 154.725 122.161928) (xy 154.600518 122.174188) (xy 154.48082 122.210498) (xy 154.370506 122.269463) + (xy 154.273815 122.348815) (xy 154.194463 122.445506) (xy 154.135498 122.55582) (xy 154.099188 122.675518) (xy 154.086928 122.8) + (xy 154.086928 124.5) (xy 154.099188 124.624482) (xy 154.135498 124.74418) (xy 154.194463 124.854494) (xy 154.273815 124.951185) + (xy 154.370506 125.030537) (xy 154.48082 125.089502) (xy 154.600518 125.125812) (xy 154.725 125.138072) (xy 156.425 125.138072) + (xy 156.549482 125.125812) (xy 156.66918 125.089502) (xy 156.779494 125.030537) (xy 156.876185 124.951185) (xy 156.955537 124.854494) + (xy 157.014502 124.74418) (xy 157.036513 124.67162) (xy 157.168368 124.803475) (xy 157.411589 124.96599) (xy 157.681842 125.077932) + (xy 157.96874 125.135) (xy 158.26126 125.135) (xy 158.548158 125.077932) (xy 158.818411 124.96599) (xy 159.061632 124.803475) + (xy 159.268475 124.596632) (xy 159.385 124.42224) (xy 159.501525 124.596632) (xy 159.708368 124.803475) (xy 159.951589 124.96599) + (xy 160.221842 125.077932) (xy 160.50874 125.135) (xy 160.80126 125.135) (xy 161.088158 125.077932) (xy 161.358411 124.96599) + (xy 161.601632 124.803475) (xy 161.808475 124.596632) (xy 161.97099 124.353411) (xy 162.082932 124.083158) (xy 162.14 123.79626) + (xy 162.14 123.50374) (xy 162.082932 123.216842) (xy 161.977901 122.963273) (xy 162.115313 122.921589) (xy 162.269059 122.839411) + (xy 162.403817 122.728817) (xy 162.431534 122.695044) (xy 162.740001 122.386578) (xy 162.740001 125.49) (xy 121.11 125.49) + (xy 121.11 119.085) (xy 124.806928 119.085) (xy 124.806928 121.065) (xy 124.819188 121.189482) (xy 124.855498 121.30918) + (xy 124.914463 121.419494) (xy 124.993815 121.516185) (xy 125.090506 121.595537) (xy 125.20082 121.654502) (xy 125.320518 121.690812) + (xy 125.445 121.703072) (xy 129.405 121.703072) (xy 129.529482 121.690812) (xy 129.64918 121.654502) (xy 129.759494 121.595537) + (xy 129.856185 121.516185) (xy 129.935537 121.419494) (xy 129.994502 121.30918) (xy 130.030812 121.189482) (xy 130.043072 121.065) + (xy 130.043072 119.085) (xy 130.030812 118.960518) (xy 129.994502 118.84082) (xy 129.935537 118.730506) (xy 129.856185 118.633815) + (xy 129.759494 118.554463) (xy 129.64918 118.495498) (xy 129.529482 118.459188) (xy 129.405 118.446928) (xy 125.445 118.446928) + (xy 125.320518 118.459188) (xy 125.20082 118.495498) (xy 125.090506 118.554463) (xy 124.993815 118.633815) (xy 124.914463 118.730506) + (xy 124.855498 118.84082) (xy 124.819188 118.960518) (xy 124.806928 119.085) (xy 121.11 119.085) (xy 121.11 115.075) + (xy 124.802138 115.075) (xy 124.833513 115.393556) (xy 124.926432 115.699869) (xy 125.077325 115.98217) (xy 125.280392 116.229608) + (xy 125.52783 116.432675) (xy 125.810131 116.583568) (xy 126.116444 116.676487) (xy 126.355176 116.7) (xy 128.494824 116.7) + (xy 128.733556 116.676487) (xy 129.039869 116.583568) (xy 129.32217 116.432675) (xy 129.569608 116.229608) (xy 129.772675 115.98217) + (xy 129.923568 115.699869) (xy 130.016487 115.393556) (xy 130.047862 115.075) (xy 130.016487 114.756444) (xy 129.923568 114.450131) + (xy 129.772675 114.16783) (xy 129.569608 113.920392) (xy 129.32217 113.717325) (xy 129.039869 113.566432) (xy 128.733556 113.473513) + (xy 128.494824 113.45) (xy 126.355176 113.45) (xy 126.116444 113.473513) (xy 125.810131 113.566432) (xy 125.52783 113.717325) + (xy 125.280392 113.920392) (xy 125.077325 114.16783) (xy 124.926432 114.450131) (xy 124.833513 114.756444) (xy 124.802138 115.075) + (xy 121.11 115.075) (xy 121.11 107.7315) (xy 124.797428 107.7315) (xy 124.797428 109.7115) (xy 124.809688 109.835982) + (xy 124.845998 109.95568) (xy 124.904963 110.065994) (xy 124.984315 110.162685) (xy 125.081006 110.242037) (xy 125.19132 110.301002) + (xy 125.311018 110.337312) (xy 125.4355 110.349572) (xy 129.3955 110.349572) (xy 129.519982 110.337312) (xy 129.63968 110.301002) + (xy 129.749994 110.242037) (xy 129.846685 110.162685) (xy 129.926037 110.065994) (xy 129.985002 109.95568) (xy 130.021312 109.835982) + (xy 130.033572 109.7115) (xy 130.033572 107.7315) (xy 130.021312 107.607018) (xy 129.985002 107.48732) (xy 129.926037 107.377006) + (xy 129.846685 107.280315) (xy 129.749994 107.200963) (xy 129.63968 107.141998) (xy 129.519982 107.105688) (xy 129.3955 107.093428) + (xy 125.4355 107.093428) (xy 125.311018 107.105688) (xy 125.19132 107.141998) (xy 125.081006 107.200963) (xy 124.984315 107.280315) + (xy 124.904963 107.377006) (xy 124.845998 107.48732) (xy 124.809688 107.607018) (xy 124.797428 107.7315) (xy 121.11 107.7315) + (xy 121.11 103.7215) (xy 124.792638 103.7215) (xy 124.824013 104.040056) (xy 124.916932 104.346369) (xy 125.067825 104.62867) + (xy 125.270892 104.876108) (xy 125.51833 105.079175) (xy 125.800631 105.230068) (xy 126.106944 105.322987) (xy 126.345676 105.3465) + (xy 128.485324 105.3465) (xy 128.724056 105.322987) (xy 129.030369 105.230068) (xy 129.31267 105.079175) (xy 129.560108 104.876108) + (xy 129.763175 104.62867) (xy 129.914068 104.346369) (xy 130.006987 104.040056) (xy 130.038362 103.7215) (xy 130.006987 103.402944) + (xy 129.914068 103.096631) (xy 129.763175 102.81433) (xy 129.560108 102.566892) (xy 129.31267 102.363825) (xy 129.030369 102.212932) + (xy 128.724056 102.120013) (xy 128.485324 102.0965) (xy 126.345676 102.0965) (xy 126.106944 102.120013) (xy 125.800631 102.212932) + (xy 125.51833 102.363825) (xy 125.270892 102.566892) (xy 125.067825 102.81433) (xy 124.916932 103.096631) (xy 124.824013 103.402944) + (xy 124.792638 103.7215) (xy 121.11 103.7215) (xy 121.11 81) (xy 124.777138 81) (xy 124.808513 81.318556) + (xy 124.901432 81.624869) (xy 125.052325 81.90717) (xy 125.255392 82.154608) (xy 125.50283 82.357675) (xy 125.785131 82.508568) + (xy 126.091444 82.601487) (xy 126.330176 82.625) (xy 128.469824 82.625) (xy 128.708556 82.601487) (xy 129.014869 82.508568) + (xy 129.29717 82.357675) (xy 129.544608 82.154608) (xy 129.747675 81.90717) (xy 129.898568 81.624869) (xy 129.991487 81.318556) + (xy 130.022862 81) (xy 129.991487 80.681444) (xy 129.898568 80.375131) (xy 129.747675 80.09283) (xy 129.544608 79.845392) + (xy 129.29717 79.642325) (xy 129.014869 79.491432) (xy 128.708556 79.398513) (xy 128.469824 79.375) (xy 126.330176 79.375) + (xy 126.091444 79.398513) (xy 125.785131 79.491432) (xy 125.50283 79.642325) (xy 125.255392 79.845392) (xy 125.052325 80.09283) + (xy 124.901432 80.375131) (xy 124.808513 80.681444) (xy 124.777138 81) (xy 121.11 81) (xy 121.11 73.66) + (xy 124.781928 73.66) (xy 124.781928 75.64) (xy 124.794188 75.764482) (xy 124.830498 75.88418) (xy 124.889463 75.994494) + (xy 124.968815 76.091185) (xy 125.065506 76.170537) (xy 125.17582 76.229502) (xy 125.295518 76.265812) (xy 125.42 76.278072) + (xy 129.38 76.278072) (xy 129.504482 76.265812) (xy 129.62418 76.229502) (xy 129.734494 76.170537) (xy 129.831185 76.091185) + (xy 129.910537 75.994494) (xy 129.969502 75.88418) (xy 130.005812 75.764482) (xy 130.018072 75.64) (xy 130.018072 73.66) + (xy 130.005812 73.535518) (xy 129.969502 73.41582) (xy 129.910537 73.305506) (xy 129.831185 73.208815) (xy 129.734494 73.129463) + (xy 129.62418 73.070498) (xy 129.504482 73.034188) (xy 129.38 73.021928) (xy 125.42 73.021928) (xy 125.295518 73.034188) + (xy 125.17582 73.070498) (xy 125.065506 73.129463) (xy 124.968815 73.208815) (xy 124.889463 73.305506) (xy 124.830498 73.41582) + (xy 124.794188 73.535518) (xy 124.781928 73.66) (xy 121.11 73.66) (xy 121.11 69.65) (xy 124.777138 69.65) + (xy 124.808513 69.968556) (xy 124.901432 70.274869) (xy 125.052325 70.55717) (xy 125.255392 70.804608) (xy 125.50283 71.007675) + (xy 125.785131 71.158568) (xy 126.091444 71.251487) (xy 126.330176 71.275) (xy 128.469824 71.275) (xy 128.708556 71.251487) + (xy 129.014869 71.158568) (xy 129.29717 71.007675) (xy 129.544608 70.804608) (xy 129.747675 70.55717) (xy 129.898568 70.274869) + (xy 129.991487 69.968556) (xy 130.022862 69.65) (xy 129.991487 69.331444) (xy 129.898568 69.025131) (xy 129.747675 68.74283) + (xy 129.544608 68.495392) (xy 129.29717 68.292325) (xy 129.014869 68.141432) (xy 128.708556 68.048513) (xy 128.469824 68.025) + (xy 126.330176 68.025) (xy 126.091444 68.048513) (xy 125.785131 68.141432) (xy 125.50283 68.292325) (xy 125.255392 68.495392) + (xy 125.052325 68.74283) (xy 124.901432 69.025131) (xy 124.808513 69.331444) (xy 124.777138 69.65) (xy 121.11 69.65) + (xy 121.11 66.86) (xy 141.018277 66.86) + ) + ) + (filled_polygon + (pts + (xy 157.127805 118.600571) (xy 157.178412 118.767394) (xy 157.26059 118.92114) (xy 157.343468 119.022127) (xy 157.343471 119.02213) + (xy 157.371184 119.055898) (xy 157.404951 119.08361) (xy 158.766389 120.445049) (xy 158.794102 120.478817) (xy 158.82787 120.50653) + (xy 158.827872 120.506532) (xy 158.888758 120.5565) (xy 158.92886 120.589411) (xy 159.082606 120.671589) (xy 159.249429 120.722195) + (xy 159.379442 120.735) (xy 159.379452 120.735) (xy 159.422918 120.739281) (xy 159.432569 120.73833) (xy 159.471525 120.796632) + (xy 159.678368 121.003475) (xy 159.921589 121.16599) (xy 160.03991 121.215) (xy 158.636579 121.215) (xy 157.545539 120.12396) + (xy 157.56 120.05126) (xy 157.56 119.75874) (xy 157.502932 119.471842) (xy 157.39099 119.201589) (xy 157.228475 118.958368) + (xy 157.021632 118.751525) (xy 156.84724 118.635) (xy 157.021632 118.518475) (xy 157.110926 118.429181) + ) + ) + (filled_polygon + (pts + (xy 161.540001 121.08342) (xy 161.408422 121.215) (xy 161.21009 121.215) (xy 161.328411 121.16599) (xy 161.540001 121.02461) + ) + ) + (filled_polygon + (pts + (xy 138.45847 106.785049) (xy 138.486183 106.818817) (xy 138.519951 106.84653) (xy 138.519953 106.846532) (xy 138.620941 106.929411) + (xy 138.774686 107.011589) (xy 138.848858 107.034089) (xy 138.94151 107.062195) (xy 139.071523 107.075) (xy 139.071531 107.075) + (xy 139.115 107.079281) (xy 139.158469 107.075) (xy 139.198421 107.075) (xy 135.286494 110.986928) (xy 134.85 110.986928) + (xy 134.725518 110.999188) (xy 134.60582 111.035498) (xy 134.495506 111.094463) (xy 134.398815 111.173815) (xy 134.319463 111.270506) + (xy 134.260498 111.38082) (xy 134.224188 111.500518) (xy 134.211928 111.625) (xy 134.211928 112.525) (xy 134.224188 112.649482) + (xy 134.260498 112.76918) (xy 134.319463 112.879494) (xy 134.398815 112.976185) (xy 134.495506 113.055537) (xy 134.60582 113.114502) + (xy 134.725518 113.150812) (xy 134.85 113.163072) (xy 136.05 113.163072) (xy 136.174482 113.150812) (xy 136.29418 113.114502) + (xy 136.404494 113.055537) (xy 136.501185 112.976185) (xy 136.580537 112.879494) (xy 136.639502 112.76918) (xy 136.675812 112.649482) + (xy 136.688072 112.525) (xy 136.688072 112.088506) (xy 139.579956 109.196623) (xy 139.644742 109.317829) (xy 139.742749 109.437251) + (xy 139.862171 109.535258) (xy 139.99 109.603585) (xy 139.990001 111.99) (xy 137.94838 111.99) (xy 137.9 111.985235) + (xy 137.85162 111.99) (xy 137.706906 112.004253) (xy 137.521233 112.060576) (xy 137.350116 112.15204) (xy 137.20013 112.27513) + (xy 137.169289 112.31271) (xy 134.203609 115.278391) (xy 134.097203 115.335266) (xy 133.939604 115.464604) (xy 133.810266 115.622203) + (xy 133.714159 115.802008) (xy 133.67449 115.932778) (xy 133.659488 115.951058) (xy 133.578577 116.102433) (xy 133.528752 116.266684) + (xy 133.511928 116.4375) (xy 133.511928 116.9125) (xy 133.528752 117.083316) (xy 133.578577 117.247567) (xy 133.659488 117.398942) + (xy 133.69 117.436121) (xy 133.690001 120.559428) (xy 133.574999 120.559428) (xy 133.401745 120.576492) (xy 133.235149 120.627028) + (xy 133.185 120.653833) (xy 133.185 106.86) (xy 134.565001 106.86) (xy 134.565 107.757317) (xy 134.495506 107.794463) + (xy 134.398815 107.873815) (xy 134.319463 107.970506) (xy 134.260498 108.08082) (xy 134.224188 108.200518) (xy 134.211928 108.325) + (xy 134.211928 109.225) (xy 134.224188 109.349482) (xy 134.260498 109.46918) (xy 134.319463 109.579494) (xy 134.398815 109.676185) + (xy 134.495506 109.755537) (xy 134.60582 109.814502) (xy 134.725518 109.850812) (xy 134.85 109.863072) (xy 136.05 109.863072) + (xy 136.174482 109.850812) (xy 136.29418 109.814502) (xy 136.404494 109.755537) (xy 136.501185 109.676185) (xy 136.580537 109.579494) + (xy 136.639502 109.46918) (xy 136.675812 109.349482) (xy 136.688072 109.225) (xy 136.688072 108.325) (xy 136.675812 108.200518) + (xy 136.639502 108.08082) (xy 136.580537 107.970506) (xy 136.501185 107.873815) (xy 136.404494 107.794463) (xy 136.335 107.757317) + (xy 136.335 106.722046) (xy 136.415512 106.623942) (xy 136.496423 106.472567) (xy 136.546248 106.308316) (xy 136.563072 106.1375) + (xy 136.563072 105.5375) (xy 136.546248 105.366684) (xy 136.496423 105.202433) (xy 136.415512 105.051058) (xy 136.371558 104.9975) + (xy 136.670922 104.9975) + ) + ) + (filled_polygon + (pts + (xy 140.8 113.964765) (xy 140.84838 113.96) (xy 148.047204 113.96) (xy 148.025179 113.964381) (xy 147.791324 114.061247) + (xy 147.58086 114.201875) (xy 147.401875 114.38086) (xy 147.261247 114.591324) (xy 147.164381 114.825179) (xy 147.115 115.073439) + (xy 147.115 115.326561) (xy 147.164381 115.574821) (xy 147.261247 115.808676) (xy 147.401875 116.01914) (xy 147.58086 116.198125) + (xy 147.791324 116.338753) (xy 148.025179 116.435619) (xy 148.273439 116.485) (xy 148.526561 116.485) (xy 148.774821 116.435619) + (xy 149.008676 116.338753) (xy 149.21914 116.198125) (xy 149.282265 116.135) (xy 149.575431 116.135) (xy 149.586595 116.155887) + (xy 149.697038 116.290462) (xy 149.831613 116.400905) (xy 149.985149 116.482972) (xy 150.151745 116.533508) (xy 150.324999 116.550572) + (xy 152.475001 116.550572) (xy 152.648255 116.533508) (xy 152.814851 116.482972) (xy 152.968387 116.400905) (xy 153.102962 116.290462) + (xy 153.213405 116.155887) (xy 153.240001 116.10613) (xy 153.240001 117.356513) (xy 153.235718 117.4) (xy 153.252805 117.57349) + (xy 153.303411 117.740313) (xy 153.385589 117.894059) (xy 153.496183 118.028817) (xy 153.630941 118.139411) (xy 153.784687 118.221589) + (xy 153.95151 118.272195) (xy 154.081523 118.285) (xy 154.081524 118.285) (xy 154.125 118.289282) (xy 154.168477 118.285) + (xy 154.90373 118.285) (xy 154.921525 118.311632) (xy 155.128368 118.518475) (xy 155.30276 118.635) (xy 155.128368 118.751525) + (xy 154.939893 118.94) (xy 153.278021 118.94) (xy 153.213405 118.819113) (xy 153.102962 118.684538) (xy 152.968387 118.574095) + (xy 152.814851 118.492028) (xy 152.648255 118.441492) (xy 152.475001 118.424428) (xy 150.324999 118.424428) (xy 150.151745 118.441492) + (xy 149.985149 118.492028) (xy 149.831613 118.574095) (xy 149.697038 118.684538) (xy 149.586595 118.819113) (xy 149.575431 118.84) + (xy 148.696072 118.84) (xy 148.696072 118.8065) (xy 148.666999 118.511314) (xy 148.580896 118.227472) (xy 148.441073 117.965882) + (xy 148.252903 117.736597) (xy 148.023618 117.548427) (xy 147.762028 117.408604) (xy 147.478186 117.322501) (xy 147.183 117.293428) + (xy 145.433 117.293428) (xy 145.137814 117.322501) (xy 144.853972 117.408604) (xy 144.592382 117.548427) (xy 144.363097 117.736597) + (xy 144.174927 117.965882) (xy 144.035104 118.227472) (xy 143.996072 118.356143) (xy 143.996072 114.9315) (xy 143.983812 114.807018) + (xy 143.947502 114.68732) (xy 143.888537 114.577006) (xy 143.809185 114.480315) (xy 143.712494 114.400963) (xy 143.60218 114.341998) + (xy 143.482482 114.305688) (xy 143.358 114.293428) (xy 139.858 114.293428) (xy 139.733518 114.305688) (xy 139.61382 114.341998) + (xy 139.503506 114.400963) (xy 139.406815 114.480315) (xy 139.327463 114.577006) (xy 139.268498 114.68732) (xy 139.232188 114.807018) + (xy 139.219928 114.9315) (xy 139.219928 115.69) (xy 137.162482 115.69) (xy 137.047567 115.628577) (xy 136.883316 115.578752) + (xy 136.7125 115.561928) (xy 136.706072 115.561928) (xy 138.308001 113.96) (xy 140.75162 113.96) + ) + ) + (filled_polygon + (pts + (xy 159.678368 118.463475) (xy 159.85276 118.58) (xy 159.678368 118.696525) (xy 159.599695 118.775198) (xy 159.084497 118.26) + (xy 159.474893 118.26) + ) + ) + (filled_polygon + (pts + (xy 161.540001 118.67539) (xy 161.39724 118.58) (xy 161.540001 118.48461) + ) + ) + (filled_polygon + (pts + (xy 155.05338 116.286513) (xy 155.01 116.329893) (xy 155.01 116.273354) + ) + ) + (filled_polygon + (pts + (xy 157.115001 116.304894) (xy 157.09662 116.286513) (xy 157.115001 116.280937) + ) + ) + (filled_polygon + (pts + (xy 161.54 116.135389) (xy 161.39724 116.04) (xy 161.54 115.944611) + ) + ) + (filled_polygon + (pts + (xy 159.85276 116.04) (xy 159.835 116.051867) (xy 159.835 116.028133) + ) + ) + (filled_polygon + (pts + (xy 153.240001 114.19387) (xy 153.213405 114.144113) (xy 153.102962 114.009538) (xy 152.968387 113.899095) (xy 152.814851 113.817028) + (xy 152.648255 113.766492) (xy 152.475001 113.749428) (xy 151.9225 113.749428) (xy 151.9225 113.02338) (xy 151.927265 112.975) + (xy 151.908247 112.781906) (xy 151.851924 112.596233) (xy 151.765767 112.435044) (xy 151.803816 112.403818) (xy 151.831533 112.370045) + (xy 152.466579 111.735) (xy 152.626561 111.735) (xy 152.874821 111.685619) (xy 153.108676 111.588753) (xy 153.24 111.501005) + ) + ) + (filled_polygon + (pts + (xy 149.697038 114.009538) (xy 149.586595 114.144113) (xy 149.575431 114.165) (xy 149.163953 114.165) (xy 149.008676 114.061247) + (xy 148.774821 113.964381) (xy 148.752796 113.96) (xy 149.7574 113.96) + ) + ) + (filled_polygon + (pts + (xy 162.740001 113.945733) (xy 162.59849 113.902805) (xy 162.468477 113.89) (xy 162.468476 113.89) (xy 162.425 113.885718) + (xy 162.381523 113.89) (xy 161.822997 113.89) (xy 161.778475 113.823368) (xy 161.64662 113.691513) (xy 161.71918 113.669502) + (xy 161.829494 113.610537) (xy 161.926185 113.531185) (xy 162.005537 113.434494) (xy 162.064502 113.32418) (xy 162.100812 113.204482) + (xy 162.113072 113.08) (xy 162.113072 111.38) (xy 162.100812 111.255518) (xy 162.064502 111.13582) (xy 162.005537 111.025506) + (xy 161.926185 110.928815) (xy 161.829494 110.849463) (xy 161.71918 110.790498) (xy 161.599482 110.754188) (xy 161.51 110.745375) + (xy 161.51 108.872046) (xy 161.590512 108.773942) (xy 161.671423 108.622567) (xy 161.721248 108.458316) (xy 161.738072 108.2875) + (xy 161.738072 107.7875) (xy 161.721248 107.616684) (xy 161.671423 107.452433) (xy 161.590512 107.301058) (xy 161.481623 107.168377) + (xy 161.428768 107.125) (xy 161.481623 107.081623) (xy 161.590512 106.948942) (xy 161.671423 106.797567) (xy 161.721248 106.633316) + (xy 161.738072 106.4625) (xy 161.738072 105.9625) (xy 161.721248 105.791684) (xy 161.671423 105.627433) (xy 161.590512 105.476058) + (xy 161.51 105.377954) (xy 161.51 99.918469) (xy 161.514281 99.875) (xy 161.51 99.831531) (xy 161.51 99.831523) + (xy 161.497195 99.70151) (xy 161.446589 99.534687) (xy 161.364411 99.380941) (xy 161.253817 99.246183) (xy 161.220051 99.218472) + (xy 159.95125 97.949672) (xy 160.158676 97.863753) (xy 160.36914 97.723125) (xy 160.548125 97.54414) (xy 160.688753 97.333676) + (xy 160.785619 97.099821) (xy 160.835 96.851561) (xy 160.835 96.598439) (xy 160.785619 96.350179) (xy 160.688753 96.116324) + (xy 160.548125 95.90586) (xy 160.36914 95.726875) (xy 160.158676 95.586247) (xy 159.924821 95.489381) (xy 159.676561 95.44) + (xy 159.516579 95.44) (xy 156.631578 92.555) (xy 157.253422 92.555) (xy 158.29 93.591579) (xy 158.29 93.751561) + (xy 158.339381 93.999821) (xy 158.436247 94.233676) (xy 158.576875 94.44414) (xy 158.75586 94.623125) (xy 158.966324 94.763753) + (xy 159.200179 94.860619) (xy 159.448439 94.91) (xy 159.701561 94.91) (xy 159.949821 94.860619) (xy 160.183676 94.763753) + (xy 160.39414 94.623125) (xy 160.573125 94.44414) (xy 160.713753 94.233676) (xy 160.810619 93.999821) (xy 160.86 93.751561) + (xy 160.86 93.498439) (xy 160.810619 93.250179) (xy 160.713753 93.016324) (xy 160.573125 92.80586) (xy 160.39414 92.626875) + (xy 160.183676 92.486247) (xy 159.949821 92.389381) (xy 159.701561 92.34) (xy 159.541579 92.34) (xy 158.486578 91.285) + (xy 158.529063 91.285) (xy 158.551875 91.31914) (xy 158.73086 91.498125) (xy 158.941324 91.638753) (xy 159.175179 91.735619) + (xy 159.423439 91.785) (xy 159.676561 91.785) (xy 159.924821 91.735619) (xy 160.158676 91.638753) (xy 160.36914 91.498125) + (xy 160.548125 91.31914) (xy 160.688753 91.108676) (xy 160.785619 90.874821) (xy 160.835 90.626561) (xy 160.835 90.373439) + (xy 160.785619 90.125179) (xy 160.688753 89.891324) (xy 160.548125 89.68086) (xy 160.36914 89.501875) (xy 160.158676 89.361247) + (xy 159.924821 89.264381) (xy 159.676561 89.215) (xy 159.423439 89.215) (xy 159.175179 89.264381) (xy 158.941324 89.361247) + (xy 158.73086 89.501875) (xy 158.717735 89.515) (xy 158.686578 89.515) (xy 159.516579 88.685) (xy 159.676561 88.685) + (xy 159.924821 88.635619) (xy 160.158676 88.538753) (xy 160.36914 88.398125) (xy 160.548125 88.21914) (xy 160.591648 88.154004) + (xy 160.651875 88.24414) (xy 160.83086 88.423125) (xy 161.041324 88.563753) (xy 161.275179 88.660619) (xy 161.523439 88.71) + (xy 161.776561 88.71) (xy 162.024821 88.660619) (xy 162.258676 88.563753) (xy 162.46914 88.423125) (xy 162.648125 88.24414) + (xy 162.74 88.106639) + ) + ) + (filled_polygon + (pts + (xy 155.265008 109.660203) (xy 155.265009 113.336928) (xy 155.225 113.336928) (xy 155.100518 113.349188) (xy 155.01 113.376646) + (xy 155.01 109.893465) (xy 155.014281 109.849999) (xy 155.01 109.806533) (xy 155.01 109.806523) (xy 154.997195 109.67651) + (xy 154.946589 109.509687) (xy 154.864411 109.355941) (xy 154.827731 109.311247) (xy 154.781532 109.254953) (xy 154.78153 109.254951) + (xy 154.753817 109.221183) (xy 154.720051 109.193472) (xy 145.336578 99.81) (xy 145.414806 99.81) + ) + ) + (filled_polygon + (pts + (xy 148.050518 98.105812) (xy 148.175 98.118072) (xy 149.016609 98.118072) (xy 149.022805 98.18099) (xy 149.073412 98.347813) + (xy 149.15559 98.501559) (xy 149.238468 98.602546) (xy 149.238471 98.602549) (xy 149.266184 98.636317) (xy 149.299951 98.664029) + (xy 152.311928 101.676007) (xy 152.311928 101.7875) (xy 152.328752 101.958316) (xy 152.378577 102.122567) (xy 152.459488 102.273942) + (xy 152.568377 102.406623) (xy 152.621232 102.45) (xy 152.568377 102.493377) (xy 152.459488 102.626058) (xy 152.378577 102.777433) + (xy 152.328752 102.941684) (xy 152.311928 103.1125) (xy 152.311928 103.6125) (xy 152.328752 103.783316) (xy 152.378577 103.947567) + (xy 152.459488 104.098942) (xy 152.568377 104.231623) (xy 152.701058 104.340512) (xy 152.852433 104.421423) (xy 153.016684 104.471248) + (xy 153.1875 104.488072) (xy 153.6625 104.488072) (xy 153.833316 104.471248) (xy 153.997567 104.421423) (xy 154.148942 104.340512) + (xy 154.262277 104.2475) (xy 154.910922 104.2475) (xy 157.115 106.451579) (xy 157.115001 113.369063) (xy 157.049482 113.349188) + (xy 157.035008 113.347762) (xy 157.035008 109.337093) (xy 157.039289 109.293624) (xy 157.035008 109.250155) (xy 157.035008 109.250147) + (xy 157.022203 109.120134) (xy 157.00709 109.070313) (xy 156.971597 108.95331) (xy 156.889419 108.799565) (xy 156.80654 108.698577) + (xy 156.806538 108.698575) (xy 156.778825 108.664807) (xy 156.745059 108.637096) (xy 146.437918 98.329956) (xy 146.410201 98.296183) + (xy 146.275443 98.185589) (xy 146.149126 98.118072) (xy 146.535 98.118072) (xy 146.659482 98.105812) (xy 146.72 98.087454) + (xy 146.780518 98.105812) (xy 146.905 98.118072) (xy 147.805 98.118072) (xy 147.929482 98.105812) (xy 147.99 98.087454) + ) + ) + (filled_polygon + (pts + (xy 142.215001 111.731524) (xy 142.210719 111.775001) (xy 142.227806 111.948491) (xy 142.240398 111.99) (xy 141.96 111.99) + (xy 141.96 109.603584) (xy 142.087829 109.535258) (xy 142.207251 109.437251) (xy 142.215002 109.427807) + ) + ) + (filled_polygon + (pts + (xy 144.992749 109.437251) (xy 145.112171 109.535258) (xy 145.214585 109.59) (xy 144.935 109.59) (xy 144.935 109.366884) + ) + ) + (filled_polygon + (pts + (xy 152.219117 109.195696) (xy 152.125179 109.214381) (xy 151.891324 109.311247) (xy 151.68086 109.451875) (xy 151.6375 109.495235) + (xy 151.59414 109.451875) (xy 151.383676 109.311247) (xy 151.149821 109.214381) (xy 150.901561 109.165) (xy 150.648439 109.165) + (xy 150.400179 109.214381) (xy 150.166324 109.311247) (xy 149.95586 109.451875) (xy 149.817735 109.59) (xy 147.235415 109.59) + (xy 147.337829 109.535258) (xy 147.457251 109.437251) (xy 147.555258 109.317829) (xy 147.628084 109.181582) (xy 147.672929 109.033745) + (xy 147.688072 108.88) (xy 147.688072 108.58) (xy 147.672929 108.426255) (xy 147.628084 108.278418) (xy 147.555258 108.142171) + (xy 147.516546 108.095) (xy 147.555258 108.047829) (xy 147.628084 107.911582) (xy 147.672929 107.763745) (xy 147.688072 107.61) + (xy 147.688072 107.31) (xy 147.672929 107.156255) (xy 147.628084 107.008418) (xy 147.555258 106.872171) (xy 147.516546 106.825) + (xy 147.555258 106.777829) (xy 147.628084 106.641582) (xy 147.672929 106.493745) (xy 147.688072 106.34) (xy 147.688072 106.04) + (xy 147.672929 105.886255) (xy 147.628084 105.738418) (xy 147.555258 105.602171) (xy 147.516546 105.555) (xy 147.555258 105.507829) + (xy 147.628084 105.371582) (xy 147.672929 105.223745) (xy 147.688072 105.07) (xy 147.688072 104.77) (xy 147.676562 104.65314) + ) + ) + (filled_polygon + (pts + (xy 144.777071 105.886255) (xy 144.761928 106.04) (xy 144.761928 106.34) (xy 144.777071 106.493745) (xy 144.821916 106.641582) + (xy 144.894742 106.777829) (xy 144.933454 106.825) (xy 144.894742 106.872171) (xy 144.821916 107.008418) (xy 144.802187 107.073459) + (xy 144.789411 107.049557) (xy 144.71361 106.957194) (xy 144.706532 106.948569) (xy 144.70653 106.948567) (xy 144.678817 106.914799) + (xy 144.645049 106.887086) (xy 143.562962 105.805) (xy 144.801719 105.805) + ) + ) + (filled_polygon + (pts + (xy 139.517442 104.71402) (xy 139.511928 104.77) (xy 139.511928 105.07) (xy 139.527071 105.223745) (xy 139.551719 105.305) + (xy 139.481579 105.305) (xy 137.694032 103.517454) (xy 137.687915 103.51) (xy 138.313422 103.51) + ) + ) + (filled_polygon + (pts + (xy 134.353752 103.641684) (xy 134.336928 103.8125) (xy 134.336928 104.4125) (xy 134.353752 104.583316) (xy 134.403577 104.747567) + (xy 134.484488 104.898942) (xy 134.546907 104.975) (xy 134.484488 105.051058) (xy 134.463673 105.09) (xy 133.185 105.09) + (xy 133.185 103.51) (xy 134.393698 103.51) + ) + ) + (filled_polygon + (pts + (xy 152.342546 80.875) (xy 152.324188 80.935518) (xy 152.311928 81.06) (xy 152.311928 81.96) (xy 152.324188 82.084482) + (xy 152.342546 82.145) (xy 152.324188 82.205518) (xy 152.311928 82.33) (xy 152.311928 83.23) (xy 152.324188 83.354482) + (xy 152.342546 83.415) (xy 152.324188 83.475518) (xy 152.311928 83.6) (xy 152.311928 84.5) (xy 152.324188 84.624482) + (xy 152.342546 84.685) (xy 152.324188 84.745518) (xy 152.311928 84.87) (xy 152.311928 85.77) (xy 152.324188 85.894482) + (xy 152.342546 85.955) (xy 152.324188 86.015518) (xy 152.311928 86.14) (xy 152.311928 87.04) (xy 152.324188 87.164482) + (xy 152.342546 87.225) (xy 152.324188 87.285518) (xy 152.311928 87.41) (xy 152.311928 88.31) (xy 152.324188 88.434482) + (xy 152.342546 88.495) (xy 152.324188 88.555518) (xy 152.311928 88.68) (xy 152.311928 89.58) (xy 152.324188 89.704482) + (xy 152.342546 89.765) (xy 152.324188 89.825518) (xy 152.311928 89.95) (xy 152.311928 90.85) (xy 152.324188 90.974482) + (xy 152.342546 91.035) (xy 152.324188 91.095518) (xy 152.311928 91.22) (xy 152.311928 92.12) (xy 152.324188 92.244482) + (xy 152.342546 92.305) (xy 152.324188 92.365518) (xy 152.311928 92.49) (xy 152.311928 93.39) (xy 152.324188 93.514482) + (xy 152.342546 93.575) (xy 152.324188 93.635518) (xy 152.311928 93.76) (xy 152.311928 94.66) (xy 152.324188 94.784482) + (xy 152.342546 94.845) (xy 152.324188 94.905518) (xy 152.311928 95.03) (xy 152.311928 95.93) (xy 152.324188 96.054482) + (xy 152.360498 96.17418) (xy 152.419463 96.284494) (xy 152.498815 96.381185) (xy 152.595506 96.460537) (xy 152.70582 96.519502) + (xy 152.825518 96.555812) (xy 152.95 96.568072) (xy 153.062632 96.568072) (xy 153.060719 96.5875) (xy 153.077805 96.76099) + (xy 153.128412 96.927813) (xy 153.21059 97.081559) (xy 153.293468 97.182546) (xy 153.293471 97.182549) (xy 153.321184 97.216317) + (xy 153.354952 97.24403) (xy 157.836928 101.726007) (xy 157.836928 101.8375) (xy 157.853752 102.008316) (xy 157.903577 102.172567) + (xy 157.984488 102.323942) (xy 158.093377 102.456623) (xy 158.146232 102.5) (xy 158.093377 102.543377) (xy 157.984488 102.676058) + (xy 157.903577 102.827433) (xy 157.853752 102.991684) (xy 157.836928 103.1625) (xy 157.836928 103.6625) (xy 157.853752 103.833316) + (xy 157.903577 103.997567) (xy 157.984488 104.148942) (xy 158.065 104.247046) (xy 158.065 104.898421) (xy 155.934034 102.767456) + (xy 155.906317 102.733683) (xy 155.771559 102.623089) (xy 155.617813 102.540911) (xy 155.45099 102.490305) (xy 155.320977 102.4775) + (xy 155.320969 102.4775) (xy 155.2775 102.473219) (xy 155.234031 102.4775) (xy 154.262277 102.4775) (xy 154.228768 102.45) + (xy 154.281623 102.406623) (xy 154.390512 102.273942) (xy 154.471423 102.122567) (xy 154.521248 101.958316) (xy 154.538072 101.7875) + (xy 154.538072 101.2875) (xy 154.521248 101.116684) (xy 154.471423 100.952433) (xy 154.390512 100.801058) (xy 154.281623 100.668377) + (xy 154.148942 100.559488) (xy 153.997567 100.478577) (xy 153.833316 100.428752) (xy 153.6625 100.411928) (xy 153.551007 100.411928) + (xy 151.25715 98.118072) (xy 151.615 98.118072) (xy 151.739482 98.105812) (xy 151.85918 98.069502) (xy 151.969494 98.010537) + (xy 152.066185 97.931185) (xy 152.145537 97.834494) (xy 152.204502 97.72418) (xy 152.240812 97.604482) (xy 152.253072 97.48) + (xy 152.253072 95.48) (xy 152.240812 95.355518) (xy 152.204502 95.23582) (xy 152.145537 95.125506) (xy 152.066185 95.028815) + (xy 152.05 95.015532) (xy 152.05 91.228469) (xy 152.054281 91.185) (xy 152.05 91.141531) (xy 152.05 91.141523) + (xy 152.037195 91.01151) (xy 151.986589 90.844687) (xy 151.904411 90.690941) (xy 151.851575 90.626561) (xy 151.821532 90.589953) + (xy 151.82153 90.589951) (xy 151.793817 90.556183) (xy 151.760049 90.52847) (xy 149.588072 88.356493) (xy 149.588072 83.97) + (xy 149.575812 83.845518) (xy 149.539502 83.72582) (xy 149.510331 83.671246) (xy 152.334174 80.847402) + ) + ) + (filled_polygon + (pts + (xy 159.74 100.241579) (xy 159.74 100.663701) (xy 159.673942 100.609488) (xy 159.522567 100.528577) (xy 159.358316 100.478752) + (xy 159.1875 100.461928) (xy 159.076007 100.461928) (xy 155.147684 96.533606) (xy 155.19418 96.519502) (xy 155.304494 96.460537) + (xy 155.401185 96.381185) (xy 155.480537 96.284494) (xy 155.539502 96.17418) (xy 155.57048 96.072058) + ) + ) + (filled_polygon + (pts + (xy 143.311928 85.083507) (xy 143.311928 88.97) (xy 143.324188 89.094482) (xy 143.360498 89.21418) (xy 143.419463 89.324494) + (xy 143.498815 89.421185) (xy 143.595506 89.500537) (xy 143.70582 89.559502) (xy 143.825518 89.595812) (xy 143.95 89.608072) + (xy 148.336493 89.608072) (xy 150.280001 91.55158) (xy 150.28 94.841928) (xy 149.445 94.841928) (xy 149.320518 94.854188) + (xy 149.26 94.872546) (xy 149.199482 94.854188) (xy 149.075 94.841928) (xy 148.175 94.841928) (xy 148.050518 94.854188) + (xy 147.99 94.872546) (xy 147.929482 94.854188) (xy 147.805 94.841928) (xy 146.905 94.841928) (xy 146.780518 94.854188) + (xy 146.72 94.872546) (xy 146.659482 94.854188) (xy 146.535 94.841928) (xy 145.635 94.841928) (xy 145.510518 94.854188) + (xy 145.45 94.872546) (xy 145.389482 94.854188) (xy 145.265 94.841928) (xy 144.365 94.841928) (xy 144.240518 94.854188) + (xy 144.18 94.872546) (xy 144.119482 94.854188) (xy 143.995 94.841928) (xy 143.095 94.841928) (xy 142.970518 94.854188) + (xy 142.91 94.872546) (xy 142.849482 94.854188) (xy 142.725 94.841928) (xy 141.89 94.841928) (xy 141.89 88.677265) + (xy 142.048125 88.51914) (xy 142.188753 88.308676) (xy 142.285619 88.074821) (xy 142.335 87.826561) (xy 142.335 87.573439) + (xy 142.285619 87.325179) (xy 142.188753 87.091324) (xy 142.048125 86.88086) (xy 141.86914 86.701875) (xy 141.658676 86.561247) + (xy 141.424821 86.464381) (xy 141.176561 86.415) (xy 140.923439 86.415) (xy 140.675179 86.464381) (xy 140.441324 86.561247) + (xy 140.23086 86.701875) (xy 140.051875 86.88086) (xy 139.911247 87.091324) (xy 139.814381 87.325179) (xy 139.765 87.573439) + (xy 139.765 87.826561) (xy 139.814381 88.074821) (xy 139.911247 88.308676) (xy 140.051875 88.51914) (xy 140.120001 88.587266) + (xy 140.12 94.841928) (xy 139.285 94.841928) (xy 139.160518 94.854188) (xy 139.04082 94.890498) (xy 138.930506 94.949463) + (xy 138.833815 95.028815) (xy 138.754463 95.125506) (xy 138.695498 95.23582) (xy 138.659188 95.355518) (xy 138.646928 95.48) + (xy 138.646928 97.48) (xy 138.659188 97.604482) (xy 138.695498 97.72418) (xy 138.754463 97.834494) (xy 138.833815 97.931185) + (xy 138.930506 98.010537) (xy 138.985627 98.04) (xy 132.835 98.04) (xy 132.835 85.316578) (xy 133.216579 84.935) + (xy 133.399109 84.935) (xy 133.261247 85.141324) (xy 133.164381 85.375179) (xy 133.115 85.623439) (xy 133.115 85.876561) + (xy 133.164381 86.124821) (xy 133.261247 86.358676) (xy 133.401875 86.56914) (xy 133.515001 86.682266) (xy 133.515 94.386531) + (xy 133.510719 94.43) (xy 133.515 94.473469) (xy 133.515 94.473476) (xy 133.519019 94.514281) (xy 133.527805 94.60349) + (xy 133.543157 94.654096) (xy 133.578411 94.770312) (xy 133.660589 94.924058) (xy 133.771183 95.058817) (xy 133.804956 95.086534) + (xy 134.79347 96.075049) (xy 134.821183 96.108817) (xy 134.854951 96.13653) (xy 134.854953 96.136532) (xy 134.858799 96.139688) + (xy 134.955941 96.219411) (xy 135.109687 96.301589) (xy 135.27651 96.352195) (xy 135.406523 96.365) (xy 135.406533 96.365) + (xy 135.449999 96.369281) (xy 135.486126 96.365723) (xy 135.498815 96.381185) (xy 135.595506 96.460537) (xy 135.70582 96.519502) + (xy 135.825518 96.555812) (xy 135.95 96.568072) (xy 137.95 96.568072) (xy 138.074482 96.555812) (xy 138.19418 96.519502) + (xy 138.304494 96.460537) (xy 138.401185 96.381185) (xy 138.480537 96.284494) (xy 138.539502 96.17418) (xy 138.575812 96.054482) + (xy 138.588072 95.93) (xy 138.588072 95.03) (xy 138.575812 94.905518) (xy 138.557454 94.845) (xy 138.575812 94.784482) + (xy 138.588072 94.66) (xy 138.588072 93.76) (xy 138.575812 93.635518) (xy 138.557454 93.575) (xy 138.575812 93.514482) + (xy 138.588072 93.39) (xy 138.588072 92.49) (xy 138.575812 92.365518) (xy 138.557454 92.305) (xy 138.575812 92.244482) + (xy 138.588072 92.12) (xy 138.588072 91.22) (xy 138.575812 91.095518) (xy 138.557454 91.035) (xy 138.575812 90.974482) + (xy 138.588072 90.85) (xy 138.588072 89.95) (xy 138.575812 89.825518) (xy 138.557454 89.765) (xy 138.575812 89.704482) + (xy 138.588072 89.58) (xy 138.588072 88.68) (xy 138.575812 88.555518) (xy 138.557454 88.495) (xy 138.575812 88.434482) + (xy 138.588072 88.31) (xy 138.588072 87.41) (xy 138.575812 87.285518) (xy 138.557454 87.225) (xy 138.575812 87.164482) + (xy 138.588072 87.04) (xy 138.588072 86.14) (xy 138.575812 86.015518) (xy 138.557454 85.955) (xy 138.575812 85.894482) + (xy 138.588072 85.77) (xy 138.588072 84.87) (xy 138.575812 84.745518) (xy 138.557454 84.685) (xy 138.575812 84.624482) + (xy 138.588072 84.5) (xy 138.588072 83.6) (xy 138.575812 83.475518) (xy 138.557454 83.415) (xy 138.575812 83.354482) + (xy 138.588072 83.23) (xy 138.588072 82.33) (xy 138.575812 82.205518) (xy 138.557454 82.145) (xy 138.575812 82.084482) + (xy 138.588072 81.96) (xy 138.588072 81.06) (xy 138.575812 80.935518) (xy 138.557454 80.875) (xy 138.575812 80.814482) + (xy 138.588072 80.69) (xy 138.588072 80.35965) + ) + ) + (filled_polygon + (pts + (xy 135.311928 87.04) (xy 135.324188 87.164482) (xy 135.342546 87.225) (xy 135.324188 87.285518) (xy 135.311928 87.41) + (xy 135.311928 88.31) (xy 135.324188 88.434482) (xy 135.342546 88.495) (xy 135.324188 88.555518) (xy 135.311928 88.68) + (xy 135.311928 89.58) (xy 135.324188 89.704482) (xy 135.342546 89.765) (xy 135.324188 89.825518) (xy 135.311928 89.95) + (xy 135.311928 90.85) (xy 135.324188 90.974482) (xy 135.342546 91.035) (xy 135.324188 91.095518) (xy 135.311928 91.22) + (xy 135.311928 92.12) (xy 135.324188 92.244482) (xy 135.342546 92.305) (xy 135.324188 92.365518) (xy 135.311928 92.49) + (xy 135.311928 93.39) (xy 135.324188 93.514482) (xy 135.342546 93.575) (xy 135.324188 93.635518) (xy 135.311928 93.76) + (xy 135.311928 94.09035) (xy 135.285 94.063422) (xy 135.285 86.682265) (xy 135.311928 86.655337) + ) + ) + (filled_polygon + (pts + (xy 157.630966 82.657544) (xy 157.658683 82.691317) (xy 157.793441 82.801911) (xy 157.947187 82.884089) (xy 158.063403 82.919343) + (xy 158.114009 82.934695) (xy 158.128806 82.936152) (xy 158.244023 82.9475) (xy 158.244031 82.9475) (xy 158.2875 82.951781) + (xy 158.330969 82.9475) (xy 158.64 82.9475) (xy 158.640001 83.742734) (xy 158.551875 83.83086) (xy 158.411247 84.041324) + (xy 158.314381 84.275179) (xy 158.265 84.523439) (xy 158.265 84.776561) (xy 158.314381 85.024821) (xy 158.411247 85.258676) + (xy 158.551875 85.46914) (xy 158.73086 85.648125) (xy 158.941324 85.788753) (xy 159.175179 85.885619) (xy 159.423439 85.935) + (xy 159.676561 85.935) (xy 159.924821 85.885619) (xy 160.158676 85.788753) (xy 160.36914 85.648125) (xy 160.548125 85.46914) + (xy 160.688753 85.258676) (xy 160.765 85.074599) (xy 160.765 86.492735) (xy 160.651875 86.60586) (xy 160.608352 86.670996) + (xy 160.548125 86.58086) (xy 160.36914 86.401875) (xy 160.158676 86.261247) (xy 159.924821 86.164381) (xy 159.676561 86.115) + (xy 159.423439 86.115) (xy 159.175179 86.164381) (xy 158.941324 86.261247) (xy 158.73086 86.401875) (xy 158.551875 86.58086) + (xy 158.411247 86.791324) (xy 158.314381 87.025179) (xy 158.265 87.273439) (xy 158.265 87.433421) (xy 157.453422 88.245) + (xy 155.588072 88.245) (xy 155.588072 87.41) (xy 155.575812 87.285518) (xy 155.557454 87.225) (xy 155.575812 87.164482) + (xy 155.588072 87.04) (xy 155.588072 86.14) (xy 155.575812 86.015518) (xy 155.557454 85.955) (xy 155.575812 85.894482) + (xy 155.588072 85.77) (xy 155.588072 84.87) (xy 155.575812 84.745518) (xy 155.557454 84.685) (xy 155.575812 84.624482) + (xy 155.588072 84.5) (xy 155.588072 83.6) (xy 155.575812 83.475518) (xy 155.557454 83.415) (xy 155.575812 83.354482) + (xy 155.588072 83.23) (xy 155.588072 82.395) (xy 157.368422 82.395) + ) + ) + (filled_polygon + (pts + (xy 160.765 84.225402) (xy 160.688753 84.041324) (xy 160.548125 83.83086) (xy 160.41 83.692735) (xy 160.41 82.897046) + (xy 160.490512 82.798942) (xy 160.571423 82.647567) (xy 160.621248 82.483316) (xy 160.638072 82.3125) (xy 160.638072 81.8125) + (xy 160.621248 81.641684) (xy 160.571423 81.477433) (xy 160.490512 81.326058) (xy 160.381623 81.193377) (xy 160.328768 81.15) + (xy 160.362277 81.1225) (xy 160.765001 81.1225) + ) + ) + (filled_polygon + (pts + (xy 158.721232 81.15) (xy 158.687723 81.1775) (xy 158.654078 81.1775) (xy 158.599078 81.1225) (xy 158.687723 81.1225) + ) + ) + ) +) diff --git a/kicad/mqtrigger.pro b/kicad/mqtrigger.pro new file mode 100644 index 0000000..cd146dd --- /dev/null +++ b/kicad/mqtrigger.pro @@ -0,0 +1,252 @@ +update=nie, 17 kwi 2022, 19:14:29 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] +[schematic_editor] +version=1 +PageLayoutDescrFile= +PlotDirectoryName= +SubpartIdSeparator=0 +SubpartFirstId=65 +NetFmtName=CadStar +SpiceAjustPassiveValues=0 +LabSize=50 +ERC_TestSimilarLabels=1 +[pcbnew] +version=1 +PageLayoutDescrFile= +LastNetListRead= +CopperLayerCount=2 +BoardThickness=1.6 +AllowMicroVias=0 +AllowBlindVias=0 +RequireCourtyardDefinitions=0 +ProhibitOverlappingCourtyards=1 +MinTrackWidth=0.5 +MinViaDiameter=0.5 +MinViaDrill=0.3 +MinMicroViaDiameter=0.2 +MinMicroViaDrill=0.09999999999999999 +MinHoleToHole=0.25 +TrackWidth1=0.5 +TrackWidth2=0.5 +TrackWidth3=0.7 +ViaDiameter1=1.3 +ViaDrill1=0.5 +ViaDiameter2=1.3 +ViaDrill2=0.5 +dPairWidth1=0.5 +dPairGap1=0.25 +dPairViaGap1=0.25 +SilkLineWidth=0.12 +SilkTextSizeV=1 +SilkTextSizeH=1 +SilkTextSizeThickness=0.15 +SilkTextItalic=0 +SilkTextUpright=1 +CopperLineWidth=0.2 +CopperTextSizeV=1.5 +CopperTextSizeH=1.5 +CopperTextThickness=0.3 +CopperTextItalic=0 +CopperTextUpright=1 +EdgeCutLineWidth=0.05 +CourtyardLineWidth=0.05 +OthersLineWidth=0.15 +OthersTextSizeV=1 +OthersTextSizeH=1 +OthersTextSizeThickness=0.15 +OthersTextItalic=0 +OthersTextUpright=1 +SolderMaskClearance=0 +SolderMaskMinWidth=0 +SolderPasteClearance=0 +SolderPasteRatio=-0 +[pcbnew/Layer.F.Cu] +Name=F.Cu +Type=0 +Enabled=1 +[pcbnew/Layer.In1.Cu] +Name=In1.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In2.Cu] +Name=In2.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In3.Cu] +Name=In3.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In4.Cu] +Name=In4.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In5.Cu] +Name=In5.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In6.Cu] +Name=In6.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In7.Cu] +Name=In7.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In8.Cu] +Name=In8.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In9.Cu] +Name=In9.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In10.Cu] +Name=In10.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In11.Cu] +Name=In11.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In12.Cu] +Name=In12.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In13.Cu] +Name=In13.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In14.Cu] +Name=In14.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In15.Cu] +Name=In15.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In16.Cu] +Name=In16.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In17.Cu] +Name=In17.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In18.Cu] +Name=In18.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In19.Cu] +Name=In19.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In20.Cu] +Name=In20.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In21.Cu] +Name=In21.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In22.Cu] +Name=In22.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In23.Cu] +Name=In23.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In24.Cu] +Name=In24.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In25.Cu] +Name=In25.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In26.Cu] +Name=In26.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In27.Cu] +Name=In27.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In28.Cu] +Name=In28.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In29.Cu] +Name=In29.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In30.Cu] +Name=In30.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.B.Cu] +Name=B.Cu +Type=0 +Enabled=1 +[pcbnew/Layer.B.Adhes] +Enabled=1 +[pcbnew/Layer.F.Adhes] +Enabled=1 +[pcbnew/Layer.B.Paste] +Enabled=1 +[pcbnew/Layer.F.Paste] +Enabled=1 +[pcbnew/Layer.B.SilkS] +Enabled=1 +[pcbnew/Layer.F.SilkS] +Enabled=1 +[pcbnew/Layer.B.Mask] +Enabled=1 +[pcbnew/Layer.F.Mask] +Enabled=1 +[pcbnew/Layer.Dwgs.User] +Enabled=1 +[pcbnew/Layer.Cmts.User] +Enabled=1 +[pcbnew/Layer.Eco1.User] +Enabled=1 +[pcbnew/Layer.Eco2.User] +Enabled=1 +[pcbnew/Layer.Edge.Cuts] +Enabled=1 +[pcbnew/Layer.Margin] +Enabled=1 +[pcbnew/Layer.B.CrtYd] +Enabled=1 +[pcbnew/Layer.F.CrtYd] +Enabled=1 +[pcbnew/Layer.B.Fab] +Enabled=1 +[pcbnew/Layer.F.Fab] +Enabled=1 +[pcbnew/Layer.Rescue] +Enabled=0 +[pcbnew/Netclasses] +[pcbnew/Netclasses/Default] +Name=Default +Clearance=0.3 +TrackWidth=0.5 +ViaDiameter=1.3 +ViaDrill=0.5 +uViaDiameter=0.3 +uViaDrill=0.1 +dPairWidth=0.5 +dPairGap=0.25 +dPairViaGap=0.25 diff --git a/kicad/mqtrigger.sch b/kicad/mqtrigger.sch new file mode 100644 index 0000000..6a2a568 --- /dev/null +++ b/kicad/mqtrigger.sch @@ -0,0 +1,1018 @@ +EESchema Schematic File Version 4 +EELAYER 30 0 +EELAYER END +$Descr A4 11693 8268 +encoding utf-8 +Sheet 1 1 +Title "MqTrigger" +Date "2022-04-16" +Rev "1.1" +Comp "chodak166" +Comment1 "" +Comment2 "" +Comment3 "" +Comment4 "" +$EndDescr +$Comp +L Isolator:LTV-847S U2 +U 1 1 62546E7C +P 2500 4350 +F 0 "U2" H 2500 4675 50 0000 C CNN +F 1 "LTV-847S" H 2500 4584 50 0000 C CNN +F 2 "Package_DIP:SMDIP-16_W9.53mm" H 2500 4050 50 0001 C CNN +F 3 "http://www.us.liteon.com/downloads/LTV-817-827-847.PDF" H 1900 4800 50 0001 C CNN + 1 2500 4350 + 1 0 0 -1 +$EndComp +$Comp +L Isolator:LTV-847S U2 +U 2 1 62547B02 +P 2500 4900 +F 0 "U2" H 2500 5225 50 0000 C CNN +F 1 "LTV-847S" H 2500 5134 50 0000 C CNN +F 2 "Package_DIP:SMDIP-16_W9.53mm" H 2500 4600 50 0001 C CNN +F 3 "http://www.us.liteon.com/downloads/LTV-817-827-847.PDF" H 1900 5350 50 0001 C CNN + 2 2500 4900 + 1 0 0 -1 +$EndComp +$Comp +L Isolator:LTV-847S U2 +U 3 1 62548F47 +P 2500 5450 +F 0 "U2" H 2500 5775 50 0000 C CNN +F 1 "LTV-847S" H 2500 5684 50 0000 C CNN +F 2 "Package_DIP:SMDIP-16_W9.53mm" H 2500 5150 50 0001 C CNN +F 3 "http://www.us.liteon.com/downloads/LTV-817-827-847.PDF" H 1900 5900 50 0001 C CNN + 3 2500 5450 + 1 0 0 -1 +$EndComp +$Comp +L Isolator:LTV-847S U2 +U 4 1 6254A993 +P 2500 6050 +F 0 "U2" H 2500 6375 50 0000 C CNN +F 1 "LTV-847S" H 2500 6284 50 0000 C CNN +F 2 "Package_DIP:SMDIP-16_W9.53mm" H 2500 5750 50 0001 C CNN +F 3 "http://www.us.liteon.com/downloads/LTV-817-827-847.PDF" H 1900 6500 50 0001 C CNN + 4 2500 6050 + 1 0 0 -1 +$EndComp +$Comp +L Device:R R3 +U 1 1 62566586 +P 1700 4250 +F 0 "R3" V 1493 4250 50 0000 C CNN +F 1 "100" V 1584 4250 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 1630 4250 50 0001 C CNN +F 3 "~" H 1700 4250 50 0001 C CNN + 1 1700 4250 + 0 1 1 0 +$EndComp +$Comp +L Device:LED_RCGB D3 +U 1 1 6257B061 +P 4400 5600 +F 0 "D3" H 4400 6097 50 0000 C CNN +F 1 "LED_RCGB" H 4400 6006 50 0000 C CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" H 4400 5550 50 0001 C CNN +F 3 "~" H 4400 5550 50 0001 C CNN + 1 4400 5600 + 1 0 0 -1 +$EndComp +$Comp +L power:+12V #PWR01 +U 1 1 6259879B +P 1150 1250 +F 0 "#PWR01" H 1150 1100 50 0001 C CNN +F 1 "+12V" V 1165 1378 50 0000 L CNN +F 2 "" H 1150 1250 50 0001 C CNN +F 3 "" H 1150 1250 50 0001 C CNN + 1 1150 1250 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR02 +U 1 1 6259997A +P 1150 1400 +F 0 "#PWR02" H 1150 1150 50 0001 C CNN +F 1 "GND" V 1155 1272 50 0000 R CNN +F 2 "" H 1150 1400 50 0001 C CNN +F 3 "" H 1150 1400 50 0001 C CNN + 1 1150 1400 + 0 1 1 0 +$EndComp +Wire Wire Line + 4600 5400 4650 5250 +Wire Wire Line + 4650 5600 4600 5600 +Wire Wire Line + 4600 5800 4650 5950 +$Comp +L power:GND #PWR0105 +U 1 1 6280C54E +P 2050 6350 +F 0 "#PWR0105" H 2050 6100 50 0001 C CNN +F 1 "GND" H 2055 6177 50 0000 C CNN +F 2 "" H 2050 6350 50 0001 C CNN +F 3 "" H 2050 6350 50 0001 C CNN + 1 2050 6350 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2200 4450 2050 4450 +Wire Wire Line + 2050 4450 2050 5000 +Wire Wire Line + 2200 6150 2050 6150 +Connection ~ 2050 6150 +Wire Wire Line + 2050 6150 2050 6350 +Wire Wire Line + 2200 5550 2050 5550 +Connection ~ 2050 5550 +Wire Wire Line + 2050 5550 2050 6150 +Wire Wire Line + 2200 5000 2050 5000 +Connection ~ 2050 5000 +Wire Wire Line + 2050 5000 2050 5550 +$Comp +L Device:R R2 +U 1 1 62820564 +P 1700 4800 +F 0 "R2" V 1493 4800 50 0000 C CNN +F 1 "100" V 1584 4800 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 1630 4800 50 0001 C CNN +F 3 "~" H 1700 4800 50 0001 C CNN + 1 1700 4800 + 0 1 1 0 +$EndComp +$Comp +L Device:R R5 +U 1 1 62820D6D +P 1700 5350 +F 0 "R5" V 1493 5350 50 0000 C CNN +F 1 "100" V 1584 5350 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 1630 5350 50 0001 C CNN +F 3 "~" H 1700 5350 50 0001 C CNN + 1 1700 5350 + 0 1 1 0 +$EndComp +$Comp +L Device:R R6 +U 1 1 62821633 +P 1700 5950 +F 0 "R6" V 1493 5950 50 0000 C CNN +F 1 "100" V 1584 5950 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 1630 5950 50 0001 C CNN +F 3 "~" H 1700 5950 50 0001 C CNN + 1 1700 5950 + 0 1 1 0 +$EndComp +Wire Wire Line + 2200 4250 1850 4250 +Wire Wire Line + 2200 4800 1850 4800 +Wire Wire Line + 2200 5350 1850 5350 +Wire Wire Line + 2200 5950 1850 5950 +Wire Wire Line + 1550 4250 1350 4250 +Wire Wire Line + 1550 4800 1350 4800 +Wire Wire Line + 1550 5350 1350 5350 +Wire Wire Line + 1550 5950 1350 5950 +Text GLabel 1350 4800 0 50 Input ~ 0 +ESP_TRIG2 +Text GLabel 1350 5350 0 50 Input ~ 0 +ESP_TRIG3 +Text GLabel 1350 5950 0 50 Input ~ 0 +ESP_TRIG4 +Wire Wire Line + 2800 4250 3100 4250 +Wire Wire Line + 2800 4450 3100 4450 +Wire Wire Line + 2800 4800 3100 4800 +Wire Wire Line + 2800 5000 3100 5000 +Wire Wire Line + 2800 5350 3100 5350 +Wire Wire Line + 2800 5550 3100 5550 +Wire Wire Line + 3100 6150 2800 6150 +Wire Wire Line + 6400 4500 6250 4500 +Wire Wire Line + 6250 4400 6400 4400 +Wire Wire Line + 6400 4300 6250 4300 +Text GLabel 6400 4500 2 50 Input ~ 0 +ESP_RXD0 +Text GLabel 6400 4400 2 50 Input ~ 0 +ESP_TXD0 +$Comp +L power:GND #PWR0106 +U 1 1 62908F7E +P 6400 4300 +F 0 "#PWR0106" H 6400 4050 50 0001 C CNN +F 1 "GND" H 6405 4127 50 0000 C CNN +F 2 "" H 6400 4300 50 0001 C CNN +F 3 "" H 6400 4300 50 0001 C CNN + 1 6400 4300 + -1 0 0 1 +$EndComp +$Comp +L Connector_Generic:Conn_01x03 J4 +U 1 1 628EA355 +P 6050 4400 +F 0 "J4" H 5968 4075 50 0000 C CNN +F 1 "UART" H 5968 4166 50 0000 C CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 6050 4400 50 0001 C CNN +F 3 "~" H 6050 4400 50 0001 C CNN + 1 6050 4400 + -1 0 0 1 +$EndComp +$Comp +L Connector_Generic:Conn_01x02 J2 +U 1 1 625717F1 +P 3300 4250 +F 0 "J2" H 3380 4242 50 0000 L CNN +F 1 "TRIG1_IO" H 3380 4151 50 0000 L CNN +F 2 "TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm" H 3300 4250 50 0001 C CNN +F 3 "~" H 3300 4250 50 0001 C CNN + 1 3300 4250 + 1 0 0 -1 +$EndComp +$Comp +L Connector_Generic:Conn_01x02 J3 +U 1 1 625B6037 +P 3300 4800 +F 0 "J3" H 3380 4792 50 0000 L CNN +F 1 "TRIG2_IO" H 3380 4701 50 0000 L CNN +F 2 "TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm" H 3300 4800 50 0001 C CNN +F 3 "~" H 3300 4800 50 0001 C CNN + 1 3300 4800 + 1 0 0 -1 +$EndComp +$Comp +L Connector_Generic:Conn_01x02 J5 +U 1 1 625CAE0A +P 3300 5350 +F 0 "J5" H 3380 5342 50 0000 L CNN +F 1 "TRIG3_IO" H 3380 5251 50 0000 L CNN +F 2 "TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm" H 3300 5350 50 0001 C CNN +F 3 "~" H 3300 5350 50 0001 C CNN + 1 3300 5350 + 1 0 0 -1 +$EndComp +$Comp +L Connector_Generic:Conn_01x02 J6 +U 1 1 625CB285 +P 3300 5950 +F 0 "J6" H 3380 5942 50 0000 L CNN +F 1 "TRIG4_IO" H 3380 5851 50 0000 L CNN +F 2 "TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm" H 3300 5950 50 0001 C CNN +F 3 "~" H 3300 5950 50 0001 C CNN + 1 3300 5950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3100 4450 3100 4350 +Wire Wire Line + 3100 5000 3100 4900 +Wire Wire Line + 3100 5550 3100 5450 +Wire Wire Line + 3100 6150 3100 6050 +Text GLabel 1350 4250 0 50 Input ~ 0 +ESP_TRIG1 +Wire Wire Line + 4550 4100 4500 4100 +$Comp +L Device:R R1 +U 1 1 628B9440 +P 4800 5250 +F 0 "R1" V 5007 5250 50 0000 C CNN +F 1 "3.3k" V 4916 5250 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 4730 5250 50 0001 C CNN +F 3 "~" H 4800 5250 50 0001 C CNN + 1 4800 5250 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 4100 5600 4200 5600 +$Comp +L power:GND #PWR0103 +U 1 1 62749C9A +P 4100 5600 +F 0 "#PWR0103" H 4100 5350 50 0001 C CNN +F 1 "GND" H 4105 5427 50 0000 C CNN +F 2 "" H 4100 5600 50 0001 C CNN +F 3 "" H 4100 5600 50 0001 C CNN + 1 4100 5600 + 1 0 0 -1 +$EndComp +$Comp +L Device:R R7 +U 1 1 628EAE57 +P 4800 5600 +F 0 "R7" V 5007 5600 50 0000 C CNN +F 1 "3.3k" V 4916 5600 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 4730 5600 50 0001 C CNN +F 3 "~" H 4800 5600 50 0001 C CNN + 1 4800 5600 + 0 -1 -1 0 +$EndComp +$Comp +L Device:R R8 +U 1 1 628EB367 +P 4800 5950 +F 0 "R8" V 5007 5950 50 0000 C CNN +F 1 "3.3k" V 4916 5950 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 4730 5950 50 0001 C CNN +F 3 "~" H 4800 5950 50 0001 C CNN + 1 4800 5950 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 5050 5250 4950 5250 +Wire Wire Line + 4950 5600 5050 5600 +Wire Wire Line + 5050 5950 4950 5950 +Text GLabel 5050 5950 2 50 Input ~ 0 +ESP_LEDB +Text GLabel 5050 5600 2 50 Input ~ 0 +ESP_LEDG +Text GLabel 5050 5250 2 50 Input ~ 0 +ESP_LEDR +$Comp +L power:+3.3V #PWR010 +U 1 1 62643D07 +P 8600 1800 +F 0 "#PWR010" H 8600 1650 50 0001 C CNN +F 1 "+3.3V" H 8615 1973 50 0000 C CNN +F 2 "" H 8600 1800 50 0001 C CNN +F 3 "" H 8600 1800 50 0001 C CNN + 1 8600 1800 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8600 1850 8600 1800 +$Comp +L power:GND #PWR011 +U 1 1 62645D3A +P 8600 4750 +F 0 "#PWR011" H 8600 4500 50 0001 C CNN +F 1 "GND" H 8605 4577 50 0000 C CNN +F 2 "" H 8600 4750 50 0001 C CNN +F 3 "" H 8600 4750 50 0001 C CNN + 1 8600 4750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 8600 4650 8600 4750 +Text GLabel 7900 2050 0 50 Input ~ 0 +ESP_EN +Wire Wire Line + 7900 2050 8000 2050 +Text GLabel 9350 2050 2 50 Input ~ 0 +ESP_BOOT +Wire Wire Line + 9350 2050 9200 2050 +Text GLabel 9350 2950 2 50 Input ~ 0 +ESP_SERVICE +Wire Wire Line + 9200 2950 9350 2950 +Wire Wire Line + 9350 2750 9200 2750 +Wire Wire Line + 9200 2850 9350 2850 +Wire Wire Line + 9350 4150 9200 4150 +Wire Wire Line + 9350 3750 9200 3750 +Text GLabel 9350 2350 2 50 Input ~ 0 +ESP_RXD0 +Wire Wire Line + 9350 2350 9200 2350 +Wire Wire Line + 9350 2150 9200 2150 +Text GLabel 9350 2150 2 50 Input ~ 0 +ESP_TXD0 +Text GLabel 9350 3750 2 50 Input ~ 0 +ESP_TRIG3 +Wire Wire Line + 9350 3850 9200 3850 +Text GLabel 9350 4150 2 50 Input ~ 0 +ESP_TRIG4 +Wire Wire Line + 9350 3950 9200 3950 +Text GLabel 9350 3950 2 50 Input ~ 0 +ESP_TRIG1 +Text GLabel 9350 3850 2 50 Input ~ 0 +ESP_TRIG2 +Wire Wire Line + 9200 2650 9350 2650 +Text GLabel 9350 2750 2 50 Input ~ 0 +ESP_LEDB +Text GLabel 9350 2650 2 50 Input ~ 0 +ESP_LEDG +Text GLabel 9350 2850 2 50 Input ~ 0 +ESP_LEDR +$Comp +L Connector_Generic:Conn_01x03 J1 +U 1 1 62570FCE +P 1500 1900 +F 0 "J1" H 1580 1942 50 0000 L CNN +F 1 "DC 2.5/5" H 1580 1851 50 0000 L CNN +F 2 "Connector_BarrelJack:BarrelJack_Horizontal" H 1500 1900 50 0001 C CNN +F 3 "~" H 1500 1900 50 0001 C CNN + 1 1500 1900 + 1 0 0 -1 +$EndComp +$Comp +L power:+12V #PWR03 +U 1 1 625951EA +P 1150 1800 +F 0 "#PWR03" H 1150 1650 50 0001 C CNN +F 1 "+12V" V 1165 1928 50 0000 L CNN +F 2 "" H 1150 1800 50 0001 C CNN +F 3 "" H 1150 1800 50 0001 C CNN + 1 1150 1800 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR04 +U 1 1 62595965 +P 1150 2000 +F 0 "#PWR04" H 1150 1750 50 0001 C CNN +F 1 "GND" H 1155 1827 50 0000 C CNN +F 2 "" H 1150 2000 50 0001 C CNN +F 3 "" H 1150 2000 50 0001 C CNN + 1 1150 2000 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1300 1800 1150 1800 +Wire Wire Line + 1300 2000 1300 1900 +Wire Wire Line + 1300 2000 1150 2000 +Connection ~ 1300 2000 +$Comp +L power:PWR_FLAG #FLG01 +U 1 1 62597835 +P 1400 1250 +F 0 "#FLG01" H 1400 1325 50 0001 C CNN +F 1 "PWR_FLAG" V 1400 1378 50 0000 L CNN +F 2 "" H 1400 1250 50 0001 C CNN +F 3 "~" H 1400 1250 50 0001 C CNN + 1 1400 1250 + 0 1 1 0 +$EndComp +Wire Wire Line + 1150 1250 1400 1250 +$Comp +L power:PWR_FLAG #FLG02 +U 1 1 62599DD6 +P 1400 1400 +F 0 "#FLG02" H 1400 1475 50 0001 C CNN +F 1 "PWR_FLAG" V 1400 1528 50 0000 L CNN +F 2 "" H 1400 1400 50 0001 C CNN +F 3 "~" H 1400 1400 50 0001 C CNN + 1 1400 1400 + 0 1 1 0 +$EndComp +Wire Wire Line + 1400 1400 1150 1400 +Connection ~ 5750 2100 +Wire Wire Line + 5950 2100 5750 2100 +$Comp +L power:GND #PWR08 +U 1 1 6261E58D +P 5950 2100 +F 0 "#PWR08" H 5950 1850 50 0001 C CNN +F 1 "GND" V 5955 1972 50 0000 R CNN +F 2 "" H 5950 2100 50 0001 C CNN +F 3 "" H 5950 2100 50 0001 C CNN + 1 5950 2100 + 0 -1 -1 0 +$EndComp +Connection ~ 2850 2100 +Wire Wire Line + 2500 2100 2850 2100 +$Comp +L power:GND #PWR06 +U 1 1 6261BF3F +P 2500 2100 +F 0 "#PWR06" H 2500 1850 50 0001 C CNN +F 1 "GND" V 2505 1972 50 0000 R CNN +F 2 "" H 2500 2100 50 0001 C CNN +F 3 "" H 2500 2100 50 0001 C CNN + 1 2500 2100 + 0 1 1 0 +$EndComp +Connection ~ 3250 2100 +Wire Wire Line + 2850 2100 3250 2100 +Wire Wire Line + 2850 1850 2850 2100 +Connection ~ 2850 1300 +Wire Wire Line + 2850 1300 2850 1550 +Connection ~ 3250 1300 +Wire Wire Line + 2850 1300 3250 1300 +Wire Wire Line + 2500 1300 2550 1300 +Wire Wire Line + 5950 1500 5750 1500 +$Comp +L power:+3.3V #PWR07 +U 1 1 625FADB8 +P 5950 1500 +F 0 "#PWR07" H 5950 1350 50 0001 C CNN +F 1 "+3.3V" V 5965 1628 50 0000 L CNN +F 2 "" H 5950 1500 50 0001 C CNN +F 3 "" H 5950 1500 50 0001 C CNN + 1 5950 1500 + 0 1 1 0 +$EndComp +$Comp +L power:+12V #PWR05 +U 1 1 625F9BE5 +P 2500 1300 +F 0 "#PWR05" H 2500 1150 50 0001 C CNN +F 1 "+12V" V 2515 1428 50 0000 L CNN +F 2 "" H 2500 1300 50 0001 C CNN +F 3 "" H 2500 1300 50 0001 C CNN + 1 2500 1300 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 4600 1500 4850 1500 +Connection ~ 4600 1500 +Wire Wire Line + 4600 1650 4600 1500 +Wire Wire Line + 4600 2100 4100 2100 +Connection ~ 4600 2100 +Wire Wire Line + 4600 1950 4600 2100 +Wire Wire Line + 5750 1500 5750 1600 +Connection ~ 5750 1500 +Wire Wire Line + 5350 1500 5750 1500 +$Comp +L pspice:C C3 +U 1 1 6255137B +P 5750 1850 +F 0 "C3" H 5928 1896 50 0000 L CNN +F 1 "10uF" H 5928 1805 50 0000 L CNN +F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" H 5750 1850 50 0001 C CNN +F 3 "~" H 5750 1850 50 0001 C CNN + 1 5750 1850 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4500 1300 5750 1300 +Wire Wire Line + 3700 2100 3250 2100 +Connection ~ 3700 2100 +Wire Wire Line + 3700 1500 3700 2100 +Wire Wire Line + 4100 2100 3700 2100 +Connection ~ 4100 2100 +Wire Wire Line + 4100 1700 4100 2100 +Wire Wire Line + 3250 1300 3250 1450 +Wire Wire Line + 3700 1300 3250 1300 +Wire Wire Line + 3250 2100 3250 1950 +Wire Wire Line + 5750 2100 4600 2100 +Wire Wire Line + 4500 1500 4600 1500 +$Comp +L Device:D D1 +U 1 1 6256B9D7 +P 2850 1700 +F 0 "D1" V 2804 1780 50 0000 L CNN +F 1 "S1A" V 2895 1780 50 0000 L CNN +F 2 "Diode_SMD:D_2010_5025Metric_Pad1.52x2.65mm_HandSolder" H 2850 1700 50 0001 C CNN +F 3 "~" H 2850 1700 50 0001 C CNN + 1 2850 1700 + 0 1 1 0 +$EndComp +$Comp +L Device:Fuse F1 +U 1 1 6256A671 +P 2700 1300 +F 0 "F1" V 2503 1300 50 0000 C CNN +F 1 "2A/32V" V 2594 1300 50 0000 C CNN +F 2 "Fuse:Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder" V 2630 1300 50 0001 C CNN +F 3 "~" H 2700 1300 50 0001 C CNN + 1 2700 1300 + 0 1 1 0 +$EndComp +$Comp +L pspice:C C1 +U 1 1 6255418D +P 3250 1700 +F 0 "C1" H 3428 1746 50 0000 L CNN +F 1 "4.7uF" H 3428 1655 50 0000 L CNN +F 2 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" H 3250 1700 50 0001 C CNN +F 3 "~" H 3250 1700 50 0001 C CNN + 1 3250 1700 + 1 0 0 -1 +$EndComp +$Comp +L pspice:INDUCTOR L1 +U 1 1 6254EE90 +P 5100 1500 +F 0 "L1" H 5100 1715 50 0000 C CNN +F 1 "DJNR6045-470-S" H 5100 1624 50 0000 C CNN +F 2 "Inductor_SMD:L_Bourns_SRN6045TA" H 5100 1500 50 0001 C CNN +F 3 "~" H 5100 1500 50 0001 C CNN + 1 5100 1500 + 1 0 0 -1 +$EndComp +$Comp +L ap1509:AP1509 U1 +U 1 1 62543E69 +P 4100 1400 +F 0 "U1" H 4100 1742 50 0000 C CNN +F 1 "AP1509-33SG-13" H 4100 1651 50 0000 C CNN +F 2 "Package_SO:SOP-8_3.9x4.9mm_P1.27mm" H 4125 1150 50 0001 L CIN +F 3 "https://www.tme.eu/Document/7fdb23bb64ab89e0668906be83b8b7e3/AP1509x-DTE.pdf" H 4100 1400 50 0001 C CNN + 1 4100 1400 + 1 0 0 -1 +$EndComp +$Comp +L Device:D_Schottky D2 +U 1 1 6254D8E2 +P 4600 1800 +F 0 "D2" V 4554 1880 50 0000 L CNN +F 1 "STPS0530Z" V 4645 1880 50 0000 L CNN +F 2 "Diode_SMD:D_SOD-123" H 4600 1800 50 0001 C CNN +F 3 "~" H 4600 1800 50 0001 C CNN + 1 4600 1800 + 0 1 1 0 +$EndComp +$Comp +L Switch:SW_Push SW1 +U 1 1 625614CB +P 2350 3200 +F 0 "SW1" H 2350 3485 50 0000 C CNN +F 1 "RESET" H 2350 3394 50 0000 C CNN +F 2 "Button_Switch_SMD:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin" H 2350 3400 50 0001 C CNN +F 3 "~" H 2350 3400 50 0001 C CNN + 1 2350 3200 + 1 0 0 -1 +$EndComp +$Comp +L Switch:SW_Push SW3 +U 1 1 626217FC +P 5650 2800 +F 0 "SW3" H 5650 3085 50 0000 C CNN +F 1 "SERVICE" H 5650 2994 50 0000 C CNN +F 2 "Button_Switch_SMD:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin" H 5650 3000 50 0001 C CNN +F 3 "~" H 5650 3000 50 0001 C CNN + 1 5650 2800 + 1 0 0 -1 +$EndComp +$Comp +L Device:R R4 +U 1 1 62648324 +P 1450 2800 +F 0 "R4" V 1243 2800 50 0000 C CNN +F 1 "10k" V 1334 2800 50 0000 C CNN +F 2 "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" V 1380 2800 50 0001 C CNN +F 3 "~" H 1450 2800 50 0001 C CNN + 1 1450 2800 + 0 1 1 0 +$EndComp +$Comp +L pspice:C C4 +U 1 1 6264F2B7 +P 1650 3150 +F 0 "C4" H 1828 3196 50 0000 L CNN +F 1 "0.1uF" H 1828 3105 50 0000 L CNN +F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" H 1650 3150 50 0001 C CNN +F 3 "~" H 1650 3150 50 0001 C CNN + 1 1650 3150 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V #PWR09 +U 1 1 6265944B +P 1200 2800 +F 0 "#PWR09" H 1200 2650 50 0001 C CNN +F 1 "+3.3V" V 1215 2928 50 0000 L CNN +F 2 "" H 1200 2800 50 0001 C CNN +F 3 "" H 1200 2800 50 0001 C CNN + 1 1200 2800 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 1200 2800 1300 2800 +Text GLabel 2900 2800 2 50 Input ~ 0 +ESP_EN +Wire Wire Line + 1600 2800 1650 2800 +Wire Wire Line + 1650 2900 1650 2800 +Connection ~ 1650 2800 +Wire Wire Line + 1650 2800 2550 2800 +Wire Wire Line + 1650 3400 1200 3400 +Wire Wire Line + 2150 3200 2150 3400 +Wire Wire Line + 2150 3400 1650 3400 +Connection ~ 1650 3400 +Wire Wire Line + 2550 3200 2550 2800 +Connection ~ 2550 2800 +Wire Wire Line + 2550 2800 2750 2800 +$Comp +L pspice:C C5 +U 1 1 6269D8D2 +P 2750 3150 +F 0 "C5" H 2928 3196 50 0000 L CNN +F 1 "0.1uF" H 2928 3105 50 0000 L CNN +F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" H 2750 3150 50 0001 C CNN +F 3 "~" H 2750 3150 50 0001 C CNN + 1 2750 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 2750 3400 2150 3400 +Connection ~ 2150 3400 +Wire Wire Line + 2750 2900 2750 2800 +Connection ~ 2750 2800 +Wire Wire Line + 2750 2800 2900 2800 +Text GLabel 4650 2800 2 50 Input ~ 0 +ESP_BOOT +$Comp +L Switch:SW_Push SW2 +U 1 1 626BA194 +P 4100 2800 +F 0 "SW2" H 4100 3085 50 0000 C CNN +F 1 "BOOT" H 4100 2994 50 0000 C CNN +F 2 "Button_Switch_SMD:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin" H 4100 3000 50 0001 C CNN +F 3 "~" H 4100 3000 50 0001 C CNN + 1 4100 2800 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR0101 +U 1 1 626BA1B1 +P 3700 3400 +F 0 "#PWR0101" H 3700 3150 50 0001 C CNN +F 1 "GND" H 3705 3227 50 0000 C CNN +F 2 "" H 3700 3400 50 0001 C CNN +F 3 "" H 3700 3400 50 0001 C CNN + 1 3700 3400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3900 2800 3900 3400 +Wire Wire Line + 4300 2800 4500 2800 +$Comp +L pspice:C C2 +U 1 1 626BA1BE +P 4500 3150 +F 0 "C2" H 4678 3196 50 0000 L CNN +F 1 "0.1uF" H 4678 3105 50 0000 L CNN +F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" H 4500 3150 50 0001 C CNN +F 3 "~" H 4500 3150 50 0001 C CNN + 1 4500 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4500 2900 4500 2800 +Wire Wire Line + 4650 2800 4500 2800 +Connection ~ 4500 2800 +Wire Wire Line + 3700 3400 3900 3400 +Connection ~ 3900 3400 +Wire Wire Line + 3900 3400 4500 3400 +$Comp +L power:GND #PWR0102 +U 1 1 626FA93D +P 5250 3400 +F 0 "#PWR0102" H 5250 3150 50 0001 C CNN +F 1 "GND" H 5255 3227 50 0000 C CNN +F 2 "" H 5250 3400 50 0001 C CNN +F 3 "" H 5250 3400 50 0001 C CNN + 1 5250 3400 + 1 0 0 -1 +$EndComp +Wire Wire Line + 5450 2800 5450 3400 +Wire Wire Line + 5850 2800 6050 2800 +$Comp +L pspice:C C6 +U 1 1 626FA945 +P 6050 3150 +F 0 "C6" H 6228 3196 50 0000 L CNN +F 1 "0.1uF" H 6228 3105 50 0000 L CNN +F 2 "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" H 6050 3150 50 0001 C CNN +F 3 "~" H 6050 3150 50 0001 C CNN + 1 6050 3150 + 1 0 0 -1 +$EndComp +Wire Wire Line + 6050 2900 6050 2800 +Wire Wire Line + 6200 2800 6050 2800 +Connection ~ 6050 2800 +Wire Wire Line + 5250 3400 5450 3400 +Connection ~ 5450 3400 +Wire Wire Line + 5450 3400 6050 3400 +Text GLabel 6200 2800 2 50 Input ~ 0 +ESP_SERVICE +$Comp +L power:GND #PWR0104 +U 1 1 62685328 +P 1200 3400 +F 0 "#PWR0104" H 1200 3150 50 0001 C CNN +F 1 "GND" V 1205 3272 50 0000 R CNN +F 2 "" H 1200 3400 50 0001 C CNN +F 3 "" H 1200 3400 50 0001 C CNN + 1 1200 3400 + 0 1 1 0 +$EndComp +$Comp +L Connector_Generic:Conn_01x02 J8 +U 1 1 62B8DF20 +P 4750 4500 +F 0 "J8" H 4830 4492 50 0000 L CNN +F 1 "TRIG1_IO" H 4830 4401 50 0000 L CNN +F 2 "TerminalBlock:TerminalBlock_Altech_AK300-2_P5.00mm" H 4750 4500 50 0001 C CNN +F 3 "~" H 4750 4500 50 0001 C CNN + 1 4750 4500 + 1 0 0 -1 +$EndComp +$Comp +L Connector_Generic:Conn_01x03 J7 +U 1 1 62BB545F +P 4750 4200 +F 0 "J7" H 4830 4242 50 0000 L CNN +F 1 "Conn_01x03" H 4830 4151 50 0000 L CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 4750 4200 50 0001 C CNN +F 3 "~" H 4750 4200 50 0001 C CNN + 1 4750 4200 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR013 +U 1 1 62BB70FC +P 4450 4600 +F 0 "#PWR013" H 4450 4350 50 0001 C CNN +F 1 "GND" H 4455 4427 50 0000 C CNN +F 2 "" H 4450 4600 50 0001 C CNN +F 3 "" H 4450 4600 50 0001 C CNN + 1 4450 4600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4550 4600 4450 4600 +$Comp +L power:+3.3V #PWR014 +U 1 1 62BCDE4F +P 4500 4300 +F 0 "#PWR014" H 4500 4150 50 0001 C CNN +F 1 "+3.3V" V 4400 4200 50 0000 L CNN +F 2 "" H 4500 4300 50 0001 C CNN +F 3 "" H 4500 4300 50 0001 C CNN + 1 4500 4300 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 4500 4300 4550 4300 +Wire Wire Line + 4350 4500 4550 4500 +Wire Wire Line + 4550 4200 4350 4200 +Wire Wire Line + 4350 4200 4350 4500 +Text GLabel 3250 1050 0 50 Input ~ 0 +F12V +Wire Wire Line + 3250 1050 3250 1300 +Text GLabel 4500 4100 0 50 Input ~ 0 +F12V +Text Label 1900 4250 0 50 ~ 0 +T1_CTL +Text Label 1900 4800 0 50 ~ 0 +T2_CTL +Text Label 1900 5350 0 50 ~ 0 +T3_CTL +Text Label 1900 5950 0 50 ~ 0 +T4_CTL +Text Label 2850 5950 0 50 ~ 0 +T4C +Wire Wire Line + 2800 5950 3100 5950 +Text Label 2850 5350 0 50 ~ 0 +T3C +Text Label 2850 4800 0 50 ~ 0 +T2C +Text Label 2850 4250 0 50 ~ 0 +T1C +Text Label 2850 6150 0 50 ~ 0 +T4E +Text Label 2850 5550 0 50 ~ 0 +T3E +Text Label 2850 5000 0 50 ~ 0 +T2E +Text Label 2850 4450 0 50 ~ 0 +T1E +Text Label 4350 4350 2 50 ~ 0 +VCC_CUSTOM +$Comp +L RF_Module:ESP32-WROOM-32 U3 +U 1 1 6254C792 +P 8600 3250 +F 0 "U3" H 8950 4700 50 0000 C CNN +F 1 "ESP32-WROOM-32" H 9050 4600 50 0000 C CNN +F 2 "RF_Module:ESP32-WROOM-32" H 8600 1750 50 0001 C CNN +F 3 "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf" H 8300 3300 50 0001 C CNN + 1 8600 3250 + 1 0 0 -1 +$EndComp +NoConn ~ 8000 2250 +NoConn ~ 8000 2350 +NoConn ~ 9200 2250 +NoConn ~ 9200 2450 +NoConn ~ 9200 2550 +NoConn ~ 9200 3050 +NoConn ~ 9200 3150 +NoConn ~ 9200 3250 +NoConn ~ 9200 3350 +NoConn ~ 9200 3450 +NoConn ~ 9200 3550 +NoConn ~ 9200 3650 +NoConn ~ 9200 4050 +NoConn ~ 9200 4250 +NoConn ~ 9200 4350 +NoConn ~ 8000 3750 +NoConn ~ 8000 3650 +NoConn ~ 8000 3550 +NoConn ~ 8000 3450 +NoConn ~ 8000 3350 +NoConn ~ 8000 3250 +Wire Wire Line + 5750 1300 5750 1500 +$Comp +L power:PWR_FLAG #FLG0101 +U 1 1 62D98EE3 +P 2850 950 +F 0 "#FLG0101" H 2850 1025 50 0001 C CNN +F 1 "PWR_FLAG" V 2850 1078 50 0000 L CNN +F 2 "" H 2850 950 50 0001 C CNN +F 3 "~" H 2850 950 50 0001 C CNN + 1 2850 950 + 0 -1 -1 0 +$EndComp +Wire Wire Line + 2850 1300 2850 950 +$Comp +L power:PWR_FLAG #FLG0102 +U 1 1 62D9D8AD +P 5750 1200 +F 0 "#FLG0102" H 5750 1275 50 0001 C CNN +F 1 "PWR_FLAG" V 5750 1328 50 0000 L CNN +F 2 "" H 5750 1200 50 0001 C CNN +F 3 "~" H 5750 1200 50 0001 C CNN + 1 5750 1200 + 0 1 1 0 +$EndComp +Wire Wire Line + 5750 1300 5750 1200 +Connection ~ 5750 1300 +$EndSCHEMATC diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..05b6f70 --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,8 @@ +# Edit following two lines to set component requirements (see docs) +set(COMPONENT_REQUIRES firmware software) +set(COMPONENT_PRIV_REQUIRES ) + +set(COMPONENT_SRCS "main.c") +set(COMPONENT_ADD_INCLUDEDIRS "") + +register_component() diff --git a/main/Kconfig.projbuild b/main/Kconfig.projbuild new file mode 100644 index 0000000..7e23439 --- /dev/null +++ b/main/Kconfig.projbuild @@ -0,0 +1,14 @@ +# put here your custom config value +menu "Example Configuration" +config ESP_WIFI_SSID + string "WiFi SSID" + default "myssid" + help + SSID (network name) for the example to connect to. + +config ESP_WIFI_PASSWORD + string "WiFi Password" + default "mypassword" + help + WiFi password (WPA or WPA2) for the example to use. +endmenu diff --git a/main/index.html b/main/index.html new file mode 100644 index 0000000..a0cc2b1 --- /dev/null +++ b/main/index.html @@ -0,0 +1,14 @@ + + + + + + +

PB LED MATRIX

+ + + diff --git a/main/main.c b/main/main.c new file mode 100644 index 0000000..78db920 --- /dev/null +++ b/main/main.c @@ -0,0 +1,48 @@ +#include "freertos/FreeRTOS.h" +#include "esp_system.h" + +#include "nx/firmware/Storage.h" +#include "nx/firmware/Wifi.h" +#include "nx/firmware/MqTriggerHttpServer.h" +#include "nx/software/nxSystemSettings.h" + +#include "esp_log.h" + +#include + +#define TAG "MAIN" + +static const char* DEVICE_NAME_PREFIX = "mqtrigger-"; + +static SystemSettings* systemSettings = NULL; +static WifiSettings wifiSettings; + +void app_main(void) +{ + nxInitStorage(); + + nxInitSystemSettings(nxStorageWrite, nxStorageRead, esp_restart); + ESP_LOGI(TAG, "System settings initialized"); + systemSettings = nxGetSystemSettings(); + + strcpy(systemSettings->wifiSsid, "cintra"); + strcpy(systemSettings->wifiPassword, "fffefdfcfb"); + systemSettings->useStaticAddr = true; + systemSettings->ip4addr[3] = 91; + + wifiSettings = (struct WifiSettings){ + .wname = systemSettings->wifiSsid, + .wpass = systemSettings->wifiPassword, + .devicePrefix = DEVICE_NAME_PREFIX, + .usePowerSave = &(systemSettings->wifiPowerSave), + .useStaticAddr = &(systemSettings->useStaticAddr), + .ip4addr = systemSettings->ip4addr, + .ip4gw = systemSettings->ip4gw, + .ip4mask = systemSettings->ip4mask + }; + + ESP_LOGI(TAG, "Initializing WiFi"); + nxInitWifi(&wifiSettings); + nxStartMqTriggerHttpServer(); +} + diff --git a/sdkconfig b/sdkconfig new file mode 100644 index 0000000..746f1c1 --- /dev/null +++ b/sdkconfig @@ -0,0 +1,1168 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Project Configuration +# +CONFIG_IDF_CMAKE=y +CONFIG_IDF_TARGET="esp32" +CONFIG_IDF_TARGET_ESP32=y +CONFIG_IDF_FIRMWARE_CHIP_ID=0x0000 + +# +# SDK tool configuration +# +CONFIG_SDK_TOOLPREFIX="xtensa-esp32-elf-" +# CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS is not set +# end of SDK tool configuration + +# +# Build type +# +CONFIG_APP_BUILD_TYPE_APP_2NDBOOT=y +# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set +CONFIG_APP_BUILD_GENERATE_BINARIES=y +CONFIG_APP_BUILD_BOOTLOADER=y +CONFIG_APP_BUILD_USE_FLASH_SECTIONS=y +# end of Build type + +# +# Application manager +# +CONFIG_APP_COMPILE_TIME_DATE=y +# CONFIG_APP_EXCLUDE_PROJECT_VER_VAR is not set +# CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR is not set +# CONFIG_APP_PROJECT_VER_FROM_CONFIG is not set +CONFIG_APP_RETRIEVE_LEN_ELF_SHA=16 +# end of Application manager + +# +# Bootloader config +# +CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE=y +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_NONE is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_ERROR is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_WARN is not set +CONFIG_BOOTLOADER_LOG_LEVEL_INFO=y +# CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG is not set +# CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE is not set +CONFIG_BOOTLOADER_LOG_LEVEL=3 +# CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V is not set +CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V=y +# CONFIG_BOOTLOADER_FACTORY_RESET is not set +# CONFIG_BOOTLOADER_APP_TEST is not set +CONFIG_BOOTLOADER_WDT_ENABLE=y +# CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE is not set +CONFIG_BOOTLOADER_WDT_TIME_MS=9000 +# CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE is not set +# CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP is not set +CONFIG_BOOTLOADER_RESERVE_RTC_SIZE=0 +# CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC is not set +# end of Bootloader config + +# +# Security features +# +# CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT is not set +# CONFIG_SECURE_BOOT is not set +# CONFIG_SECURE_FLASH_ENC_ENABLED is not set +# end of Security features + +# +# Serial flasher config +# +CONFIG_ESPTOOLPY_BAUD_OTHER_VAL=115200 +CONFIG_ESPTOOLPY_WITH_STUB=y +# CONFIG_ESPTOOLPY_FLASHMODE_QIO is not set +# CONFIG_ESPTOOLPY_FLASHMODE_QOUT is not set +CONFIG_ESPTOOLPY_FLASHMODE_DIO=y +# CONFIG_ESPTOOLPY_FLASHMODE_DOUT is not set +CONFIG_ESPTOOLPY_FLASHMODE="dio" +# CONFIG_ESPTOOLPY_FLASHFREQ_80M is not set +CONFIG_ESPTOOLPY_FLASHFREQ_40M=y +# CONFIG_ESPTOOLPY_FLASHFREQ_26M is not set +# CONFIG_ESPTOOLPY_FLASHFREQ_20M is not set +CONFIG_ESPTOOLPY_FLASHFREQ="40m" +# CONFIG_ESPTOOLPY_FLASHSIZE_1MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y +# CONFIG_ESPTOOLPY_FLASHSIZE_4MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_8MB is not set +# CONFIG_ESPTOOLPY_FLASHSIZE_16MB is not set +CONFIG_ESPTOOLPY_FLASHSIZE="2MB" +CONFIG_ESPTOOLPY_FLASHSIZE_DETECT=y +CONFIG_ESPTOOLPY_BEFORE_RESET=y +# CONFIG_ESPTOOLPY_BEFORE_NORESET is not set +CONFIG_ESPTOOLPY_BEFORE="default_reset" +CONFIG_ESPTOOLPY_AFTER_RESET=y +# CONFIG_ESPTOOLPY_AFTER_NORESET is not set +CONFIG_ESPTOOLPY_AFTER="hard_reset" +# CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B is not set +# CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B is not set +CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B=y +# CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B is not set +# CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B is not set +# CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB is not set +# CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER is not set +CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL=115200 +CONFIG_ESPTOOLPY_MONITOR_BAUD=115200 +# end of Serial flasher config + +# +# Partition Table +# +CONFIG_PARTITION_TABLE_SINGLE_APP=y +# CONFIG_PARTITION_TABLE_TWO_OTA is not set +# CONFIG_PARTITION_TABLE_CUSTOM is not set +CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv" +CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp.csv" +CONFIG_PARTITION_TABLE_OFFSET=0x8000 +CONFIG_PARTITION_TABLE_MD5=y +# end of Partition Table + +# +# Example Configuration +# +CONFIG_ESP_WIFI_SSID="myssid" +CONFIG_ESP_WIFI_PASSWORD="mypassword" +# end of Example Configuration + +# +# Compiler options +# +CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y +# CONFIG_COMPILER_OPTIMIZATION_SIZE is not set +# CONFIG_COMPILER_OPTIMIZATION_PERF is not set +# CONFIG_COMPILER_OPTIMIZATION_NONE is not set +CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE is not set +# CONFIG_COMPILER_CXX_EXCEPTIONS is not set +# CONFIG_COMPILER_CXX_RTTI is not set +CONFIG_COMPILER_STACK_CHECK_MODE_NONE=y +# CONFIG_COMPILER_STACK_CHECK_MODE_NORM is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_STRONG is not set +# CONFIG_COMPILER_STACK_CHECK_MODE_ALL is not set +# CONFIG_COMPILER_WARN_WRITE_STRINGS is not set +# CONFIG_COMPILER_DISABLE_GCC8_WARNINGS is not set +# end of Compiler options + +# +# Component config +# + +# +# Application Level Tracing +# +# CONFIG_APPTRACE_DEST_TRAX is not set +CONFIG_APPTRACE_DEST_NONE=y +CONFIG_APPTRACE_LOCK_ENABLE=y +# end of Application Level Tracing + +# +# Bluetooth +# +# CONFIG_BT_ENABLED is not set +CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF=0 +CONFIG_BTDM_CTRL_PCM_ROLE_EFF=0 +CONFIG_BTDM_CTRL_PCM_POLAR_EFF=0 +CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF=0 +CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF=0 +CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF=0 +CONFIG_BTDM_CTRL_PINNED_TO_CORE=0 +CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF=1 +CONFIG_BT_RESERVE_DRAM=0 +# end of Bluetooth + +# +# CoAP Configuration +# +CONFIG_COAP_MBEDTLS_PSK=y +# CONFIG_COAP_MBEDTLS_PKI is not set +# CONFIG_COAP_MBEDTLS_DEBUG is not set +CONFIG_COAP_LOG_DEFAULT_LEVEL=0 +# end of CoAP Configuration + +# +# Driver configurations +# + +# +# ADC configuration +# +# CONFIG_ADC_FORCE_XPD_FSM is not set +CONFIG_ADC_DISABLE_DAC=y +# end of ADC configuration + +# +# SPI configuration +# +# CONFIG_SPI_MASTER_IN_IRAM is not set +CONFIG_SPI_MASTER_ISR_IN_IRAM=y +# CONFIG_SPI_SLAVE_IN_IRAM is not set +CONFIG_SPI_SLAVE_ISR_IN_IRAM=y +# end of SPI configuration + +# +# UART configuration +# +# CONFIG_UART_ISR_IN_IRAM is not set +# end of UART configuration + +# +# RTCIO configuration +# +# CONFIG_RTCIO_SUPPORT_RTC_GPIO_DESC is not set +# end of RTCIO configuration +# end of Driver configurations + +# +# eFuse Bit Manager +# +# CONFIG_EFUSE_CUSTOM_TABLE is not set +# CONFIG_EFUSE_VIRTUAL is not set +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE is not set +CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4=y +# CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT is not set +CONFIG_EFUSE_MAX_BLK_LEN=192 +# end of eFuse Bit Manager + +# +# ESP-TLS +# +CONFIG_ESP_TLS_USING_MBEDTLS=y +# CONFIG_ESP_TLS_USE_SECURE_ELEMENT is not set +# CONFIG_ESP_TLS_SERVER is not set +# CONFIG_ESP_TLS_PSK_VERIFICATION is not set +# end of ESP-TLS + +# +# ESP32-specific +# +CONFIG_ESP32_REV_MIN_0=y +# CONFIG_ESP32_REV_MIN_1 is not set +# CONFIG_ESP32_REV_MIN_2 is not set +# CONFIG_ESP32_REV_MIN_3 is not set +CONFIG_ESP32_REV_MIN=0 +CONFIG_ESP32_DPORT_WORKAROUND=y +# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y +# CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set +CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160 +# CONFIG_ESP32_SPIRAM_SUPPORT is not set +# CONFIG_ESP32_TRAX is not set +CONFIG_ESP32_TRACEMEM_RESERVE_DRAM=0x0 +# CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO is not set +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR=y +CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES=4 +# CONFIG_ESP32_ULP_COPROC_ENABLED is not set +CONFIG_ESP32_ULP_COPROC_RESERVE_MEM=0 +CONFIG_ESP32_DEBUG_OCDAWARE=y +CONFIG_ESP32_BROWNOUT_DET=y +CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0=y +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 is not set +CONFIG_ESP32_BROWNOUT_DET_LVL=0 +CONFIG_ESP32_REDUCE_PHY_TX_POWER=y +CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y +# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set +# CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set +CONFIG_ESP32_RTC_CLK_SRC_INT_RC=y +# CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS is not set +# CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC is not set +# CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 is not set +CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024 +CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=2000 +CONFIG_ESP32_XTAL_FREQ_40=y +# CONFIG_ESP32_XTAL_FREQ_26 is not set +# CONFIG_ESP32_XTAL_FREQ_AUTO is not set +CONFIG_ESP32_XTAL_FREQ=40 +# CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE is not set +# CONFIG_ESP32_NO_BLOBS is not set +# CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +# CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE is not set +CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL=5 +# end of ESP32-specific + +# +# Power Management +# +# CONFIG_PM_ENABLE is not set +# end of Power Management + +# +# ADC-Calibration +# +CONFIG_ADC_CAL_EFUSE_TP_ENABLE=y +CONFIG_ADC_CAL_EFUSE_VREF_ENABLE=y +CONFIG_ADC_CAL_LUT_ENABLE=y +# end of ADC-Calibration + +# +# Common ESP-related +# +CONFIG_ESP_ERR_TO_NAME_LOOKUP=y +CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_ESP_MAIN_TASK_STACK_SIZE=3584 +CONFIG_ESP_IPC_TASK_STACK_SIZE=1024 +CONFIG_ESP_IPC_USES_CALLERS_PRIORITY=y +CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048 +CONFIG_ESP_CONSOLE_UART_DEFAULT=y +# CONFIG_ESP_CONSOLE_UART_CUSTOM is not set +# CONFIG_ESP_CONSOLE_UART_NONE is not set +CONFIG_ESP_CONSOLE_UART_NUM=0 +CONFIG_ESP_CONSOLE_UART_TX_GPIO=1 +CONFIG_ESP_CONSOLE_UART_RX_GPIO=3 +CONFIG_ESP_CONSOLE_UART_BAUDRATE=115200 +CONFIG_ESP_INT_WDT=y +CONFIG_ESP_INT_WDT_TIMEOUT_MS=300 +CONFIG_ESP_INT_WDT_CHECK_CPU1=y +CONFIG_ESP_TASK_WDT=y +# CONFIG_ESP_TASK_WDT_PANIC is not set +CONFIG_ESP_TASK_WDT_TIMEOUT_S=5 +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_ESP_PANIC_HANDLER_IRAM is not set +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT=y +CONFIG_ESP_MAC_ADDR_UNIVERSE_BT_OFFSET=2 +CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH=y +# end of Common ESP-related + +# +# Ethernet +# +CONFIG_ETH_ENABLED=y +CONFIG_ETH_USE_ESP32_EMAC=y +CONFIG_ETH_PHY_INTERFACE_RMII=y +# CONFIG_ETH_PHY_INTERFACE_MII is not set +CONFIG_ETH_RMII_CLK_INPUT=y +# CONFIG_ETH_RMII_CLK_OUTPUT is not set +CONFIG_ETH_RMII_CLK_IN_GPIO=0 +CONFIG_ETH_DMA_BUFFER_SIZE=512 +CONFIG_ETH_DMA_RX_BUFFER_NUM=10 +CONFIG_ETH_DMA_TX_BUFFER_NUM=10 +CONFIG_ETH_USE_SPI_ETHERNET=y +# CONFIG_ETH_SPI_ETHERNET_DM9051 is not set +# CONFIG_ETH_USE_OPENETH is not set +# end of Ethernet + +# +# Event Loop Library +# +# CONFIG_ESP_EVENT_LOOP_PROFILING is not set +CONFIG_ESP_EVENT_POST_FROM_ISR=y +CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y +# end of Event Loop Library + +# +# GDB Stub +# +# end of GDB Stub + +# +# ESP HTTP client +# +CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y +# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set +# end of ESP HTTP client + +# +# HTTP Server +# +CONFIG_HTTPD_MAX_REQ_HDR_LEN=512 +CONFIG_HTTPD_MAX_URI_LEN=512 +CONFIG_HTTPD_ERR_RESP_NO_DELAY=y +CONFIG_HTTPD_PURGE_BUF_LEN=32 +# CONFIG_HTTPD_LOG_PURGE_DATA is not set +# CONFIG_HTTPD_WS_SUPPORT is not set +# end of HTTP Server + +# +# ESP HTTPS OTA +# +# CONFIG_OTA_ALLOW_HTTP is not set +# end of ESP HTTPS OTA + +# +# ESP HTTPS server +# +# CONFIG_ESP_HTTPS_SERVER_ENABLE is not set +# end of ESP HTTPS server + +# +# ESP NETIF Adapter +# +CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL=120 +CONFIG_ESP_NETIF_TCPIP_LWIP=y +# CONFIG_ESP_NETIF_LOOPBACK is not set +CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER=y +# end of ESP NETIF Adapter + +# +# ESP System Settings +# +# CONFIG_ESP_SYSTEM_PANIC_PRINT_HALT is not set +CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y +# CONFIG_ESP_SYSTEM_PANIC_SILENT_REBOOT is not set +# CONFIG_ESP_SYSTEM_PANIC_GDBSTUB is not set +# end of ESP System Settings + +# +# High resolution timer (esp_timer) +# +# CONFIG_ESP_TIMER_PROFILING is not set +CONFIG_ESP_TIMER_TASK_STACK_SIZE=3584 +# CONFIG_ESP_TIMER_IMPL_FRC2 is not set +CONFIG_ESP_TIMER_IMPL_TG0_LAC=y +# end of High resolution timer (esp_timer) + +# +# Wi-Fi +# +CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10 +CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y +CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1 +CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32 +# CONFIG_ESP32_WIFI_CSI_ENABLED is not set +CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y +CONFIG_ESP32_WIFI_TX_BA_WIN=6 +CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y +CONFIG_ESP32_WIFI_RX_BA_WIN=6 +CONFIG_ESP32_WIFI_NVS_ENABLED=y +CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y +# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set +CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752 +CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32 +# CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE is not set +CONFIG_ESP32_WIFI_IRAM_OPT=y +CONFIG_ESP32_WIFI_RX_IRAM_OPT=y +CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y +# end of Wi-Fi + +# +# PHY +# +CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y +# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set +CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20 +CONFIG_ESP32_PHY_MAX_TX_POWER=20 +# end of PHY + +# +# Core dump +# +# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set +# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set +CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y +# end of Core dump + +# +# FAT Filesystem support +# +# CONFIG_FATFS_CODEPAGE_DYNAMIC is not set +CONFIG_FATFS_CODEPAGE_437=y +# CONFIG_FATFS_CODEPAGE_720 is not set +# CONFIG_FATFS_CODEPAGE_737 is not set +# CONFIG_FATFS_CODEPAGE_771 is not set +# CONFIG_FATFS_CODEPAGE_775 is not set +# CONFIG_FATFS_CODEPAGE_850 is not set +# CONFIG_FATFS_CODEPAGE_852 is not set +# CONFIG_FATFS_CODEPAGE_855 is not set +# CONFIG_FATFS_CODEPAGE_857 is not set +# CONFIG_FATFS_CODEPAGE_860 is not set +# CONFIG_FATFS_CODEPAGE_861 is not set +# CONFIG_FATFS_CODEPAGE_862 is not set +# CONFIG_FATFS_CODEPAGE_863 is not set +# CONFIG_FATFS_CODEPAGE_864 is not set +# CONFIG_FATFS_CODEPAGE_865 is not set +# CONFIG_FATFS_CODEPAGE_866 is not set +# CONFIG_FATFS_CODEPAGE_869 is not set +# CONFIG_FATFS_CODEPAGE_932 is not set +# CONFIG_FATFS_CODEPAGE_936 is not set +# CONFIG_FATFS_CODEPAGE_949 is not set +# CONFIG_FATFS_CODEPAGE_950 is not set +CONFIG_FATFS_CODEPAGE=437 +CONFIG_FATFS_LFN_NONE=y +# CONFIG_FATFS_LFN_HEAP is not set +# CONFIG_FATFS_LFN_STACK is not set +CONFIG_FATFS_FS_LOCK=0 +CONFIG_FATFS_TIMEOUT_MS=10000 +CONFIG_FATFS_PER_FILE_CACHE=y +# end of FAT Filesystem support + +# +# Modbus configuration +# +CONFIG_FMB_COMM_MODE_RTU_EN=y +CONFIG_FMB_COMM_MODE_ASCII_EN=y +CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND=150 +CONFIG_FMB_MASTER_DELAY_MS_CONVERT=200 +CONFIG_FMB_QUEUE_LENGTH=20 +CONFIG_FMB_SERIAL_TASK_STACK_SIZE=2048 +CONFIG_FMB_SERIAL_BUF_SIZE=256 +CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB=8 +CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS=1000 +CONFIG_FMB_SERIAL_TASK_PRIO=10 +# CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT is not set +CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT=20 +CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE=20 +CONFIG_FMB_CONTROLLER_STACK_SIZE=4096 +CONFIG_FMB_EVENT_QUEUE_TIMEOUT=20 +CONFIG_FMB_TIMER_PORT_ENABLED=y +CONFIG_FMB_TIMER_GROUP=0 +CONFIG_FMB_TIMER_INDEX=0 +# CONFIG_FMB_TIMER_ISR_IN_IRAM is not set +# end of Modbus configuration + +# +# FreeRTOS +# +# CONFIG_FREERTOS_UNICORE is not set +CONFIG_FREERTOS_NO_AFFINITY=0x7FFFFFFF +CONFIG_FREERTOS_CORETIMER_0=y +# CONFIG_FREERTOS_CORETIMER_1 is not set +CONFIG_FREERTOS_HZ=100 +CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION=y +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE is not set +# CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL is not set +CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y +# CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK is not set +CONFIG_FREERTOS_INTERRUPT_BACKTRACE=y +CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1 +CONFIG_FREERTOS_ASSERT_FAIL_ABORT=y +# CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE is not set +# CONFIG_FREERTOS_ASSERT_DISABLE is not set +CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536 +CONFIG_FREERTOS_ISR_STACKSIZE=1536 +# CONFIG_FREERTOS_LEGACY_HOOKS is not set +CONFIG_FREERTOS_MAX_TASK_NAME_LEN=16 +# CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION is not set +CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 +CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 +CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set +CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER=y +CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y +# CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set +CONFIG_FREERTOS_DEBUG_OCDAWARE=y +# CONFIG_FREERTOS_FPU_IN_ISR is not set +# end of FreeRTOS + +# +# Heap memory debugging +# +CONFIG_HEAP_POISONING_DISABLED=y +# CONFIG_HEAP_POISONING_LIGHT is not set +# CONFIG_HEAP_POISONING_COMPREHENSIVE is not set +CONFIG_HEAP_TRACING_OFF=y +# CONFIG_HEAP_TRACING_STANDALONE is not set +# CONFIG_HEAP_TRACING_TOHOST is not set +# CONFIG_HEAP_ABORT_WHEN_ALLOCATION_FAILS is not set +# end of Heap memory debugging + +# +# jsmn +# +# CONFIG_JSMN_PARENT_LINKS is not set +# CONFIG_JSMN_STRICT is not set +# end of jsmn + +# +# libsodium +# +# end of libsodium + +# +# Log output +# +# CONFIG_LOG_DEFAULT_LEVEL_NONE is not set +# CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y +# CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set +# CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set +CONFIG_LOG_DEFAULT_LEVEL=3 +CONFIG_LOG_COLORS=y +CONFIG_LOG_TIMESTAMP_SOURCE_RTOS=y +# CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM is not set +# end of Log output + +# +# LWIP +# +CONFIG_LWIP_LOCAL_HOSTNAME="espressif" +CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES=y +# CONFIG_LWIP_L2_TO_L3_COPY is not set +# CONFIG_LWIP_IRAM_OPTIMIZATION is not set +CONFIG_LWIP_TIMERS_ONDEMAND=y +CONFIG_LWIP_MAX_SOCKETS=10 +# CONFIG_LWIP_USE_ONLY_LWIP_SELECT is not set +# CONFIG_LWIP_SO_LINGER is not set +CONFIG_LWIP_SO_REUSE=y +CONFIG_LWIP_SO_REUSE_RXTOALL=y +# CONFIG_LWIP_SO_RCVBUF is not set +# CONFIG_LWIP_NETBUF_RECVINFO is not set +CONFIG_LWIP_IP4_FRAG=y +CONFIG_LWIP_IP6_FRAG=y +# CONFIG_LWIP_IP4_REASSEMBLY is not set +# CONFIG_LWIP_IP6_REASSEMBLY is not set +# CONFIG_LWIP_IP_FORWARD is not set +# CONFIG_LWIP_STATS is not set +# CONFIG_LWIP_ETHARP_TRUST_IP_MAC is not set +CONFIG_LWIP_ESP_GRATUITOUS_ARP=y +CONFIG_LWIP_GARP_TMR_INTERVAL=60 +CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=32 +CONFIG_LWIP_DHCP_DOES_ARP_CHECK=y +# CONFIG_LWIP_DHCP_RESTORE_LAST_IP is not set + +# +# DHCP server +# +CONFIG_LWIP_DHCPS_LEASE_UNIT=60 +CONFIG_LWIP_DHCPS_MAX_STATION_NUM=8 +# end of DHCP server + +# CONFIG_LWIP_AUTOIP is not set +# CONFIG_LWIP_IPV6_AUTOCONFIG is not set +CONFIG_LWIP_NETIF_LOOPBACK=y +CONFIG_LWIP_LOOPBACK_MAX_PBUFS=8 + +# +# TCP +# +CONFIG_LWIP_MAX_ACTIVE_TCP=16 +CONFIG_LWIP_MAX_LISTENING_TCP=16 +CONFIG_LWIP_TCP_HIGH_SPEED_RETRANSMISSION=y +CONFIG_LWIP_TCP_MAXRTX=12 +CONFIG_LWIP_TCP_SYNMAXRTX=12 +CONFIG_LWIP_TCP_MSS=1440 +CONFIG_LWIP_TCP_TMR_INTERVAL=250 +CONFIG_LWIP_TCP_MSL=60000 +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=5744 +CONFIG_LWIP_TCP_WND_DEFAULT=5744 +CONFIG_LWIP_TCP_RECVMBOX_SIZE=6 +CONFIG_LWIP_TCP_QUEUE_OOSEQ=y +# CONFIG_LWIP_TCP_SACK_OUT is not set +# CONFIG_LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES is not set +CONFIG_LWIP_TCP_OVERSIZE_MSS=y +# CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_LWIP_TCP_OVERSIZE_DISABLE is not set +CONFIG_LWIP_TCP_RTO_TIME=1500 +# end of TCP + +# +# UDP +# +CONFIG_LWIP_MAX_UDP_PCBS=16 +CONFIG_LWIP_UDP_RECVMBOX_SIZE=6 +# end of UDP + +CONFIG_LWIP_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_LWIP_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_LWIP_PPP_SUPPORT is not set +CONFIG_LWIP_IPV6_MEMP_NUM_ND6_QUEUE=3 +CONFIG_LWIP_IPV6_ND6_NUM_NEIGHBORS=5 + +# +# ICMP +# +# CONFIG_LWIP_MULTICAST_PING is not set +# CONFIG_LWIP_BROADCAST_PING is not set +# end of ICMP + +# +# LWIP RAW API +# +CONFIG_LWIP_MAX_RAW_PCBS=16 +# end of LWIP RAW API + +# +# SNTP +# +CONFIG_LWIP_DHCP_MAX_NTP_SERVERS=1 +CONFIG_LWIP_SNTP_UPDATE_DELAY=3600000 +# end of SNTP + +CONFIG_LWIP_ESP_LWIP_ASSERT=y +# end of LWIP + +# +# mbedTLS +# +CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC=y +# CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC is not set +# CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC is not set +CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN=y +CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN=16384 +CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN=4096 +# CONFIG_MBEDTLS_DYNAMIC_BUFFER is not set +# CONFIG_MBEDTLS_DEBUG is not set + +# +# Certificate Bundle +# +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE=y +CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL=y +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN is not set +# CONFIG_MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE is not set +# CONFIG_MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE is not set +# end of Certificate Bundle + +# CONFIG_MBEDTLS_ECP_RESTARTABLE is not set +# CONFIG_MBEDTLS_CMAC_C is not set +CONFIG_MBEDTLS_HARDWARE_AES=y +CONFIG_MBEDTLS_HARDWARE_MPI=y +CONFIG_MBEDTLS_HARDWARE_SHA=y +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_SIGN is not set +# CONFIG_MBEDTLS_ATCA_HW_ECDSA_VERIFY is not set +CONFIG_MBEDTLS_HAVE_TIME=y +# CONFIG_MBEDTLS_HAVE_TIME_DATE is not set +CONFIG_MBEDTLS_ECDSA_DETERMINISTIC=y +CONFIG_MBEDTLS_SHA512_C=y +CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT=y +# CONFIG_MBEDTLS_TLS_SERVER_ONLY is not set +# CONFIG_MBEDTLS_TLS_CLIENT_ONLY is not set +# CONFIG_MBEDTLS_TLS_DISABLED is not set +CONFIG_MBEDTLS_TLS_SERVER=y +CONFIG_MBEDTLS_TLS_CLIENT=y +CONFIG_MBEDTLS_TLS_ENABLED=y + +# +# TLS Key Exchange Methods +# +# CONFIG_MBEDTLS_PSK_MODES is not set +CONFIG_MBEDTLS_KEY_EXCHANGE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA=y +CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA=y +# end of TLS Key Exchange Methods + +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y +# CONFIG_MBEDTLS_SSL_PROTO_SSL3 is not set +CONFIG_MBEDTLS_SSL_PROTO_TLS1=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_1=y +CONFIG_MBEDTLS_SSL_PROTO_TLS1_2=y +# CONFIG_MBEDTLS_SSL_PROTO_DTLS is not set +CONFIG_MBEDTLS_SSL_ALPN=y +CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS=y +CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS=y + +# +# Symmetric Ciphers +# +CONFIG_MBEDTLS_AES_C=y +# CONFIG_MBEDTLS_CAMELLIA_C is not set +# CONFIG_MBEDTLS_DES_C is not set +CONFIG_MBEDTLS_RC4_DISABLED=y +# CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT is not set +# CONFIG_MBEDTLS_RC4_ENABLED is not set +# CONFIG_MBEDTLS_BLOWFISH_C is not set +# CONFIG_MBEDTLS_XTEA_C is not set +CONFIG_MBEDTLS_CCM_C=y +CONFIG_MBEDTLS_GCM_C=y +# end of Symmetric Ciphers + +# CONFIG_MBEDTLS_RIPEMD160_C is not set + +# +# Certificates +# +CONFIG_MBEDTLS_PEM_PARSE_C=y +CONFIG_MBEDTLS_PEM_WRITE_C=y +CONFIG_MBEDTLS_X509_CRL_PARSE_C=y +CONFIG_MBEDTLS_X509_CSR_PARSE_C=y +# end of Certificates + +CONFIG_MBEDTLS_ECP_C=y +CONFIG_MBEDTLS_ECDH_C=y +CONFIG_MBEDTLS_ECDSA_C=y +# CONFIG_MBEDTLS_ECJPAKE_C is not set +CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED=y +CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED=y +CONFIG_MBEDTLS_ECP_NIST_OPTIM=y +# CONFIG_MBEDTLS_POLY1305_C is not set +# CONFIG_MBEDTLS_CHACHA20_C is not set +# CONFIG_MBEDTLS_HKDF_C is not set +# CONFIG_MBEDTLS_THREADING_C is not set +# CONFIG_MBEDTLS_SECURITY_RISKS is not set +# end of mbedTLS + +# +# mDNS +# +CONFIG_MDNS_MAX_SERVICES=10 +CONFIG_MDNS_TASK_PRIORITY=1 +CONFIG_MDNS_TASK_STACK_SIZE=4096 +# CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY is not set +CONFIG_MDNS_TASK_AFFINITY_CPU0=y +# CONFIG_MDNS_TASK_AFFINITY_CPU1 is not set +CONFIG_MDNS_TASK_AFFINITY=0x0 +CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS=2000 +CONFIG_MDNS_TIMER_PERIOD_MS=100 +# end of mDNS + +# +# ESP-MQTT Configurations +# +CONFIG_MQTT_PROTOCOL_311=y +CONFIG_MQTT_TRANSPORT_SSL=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET=y +CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE=y +# CONFIG_MQTT_USE_CUSTOM_CONFIG is not set +# CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED is not set +# CONFIG_MQTT_CUSTOM_OUTBOX is not set +# end of ESP-MQTT Configurations + +# +# Newlib +# +CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF=y +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF is not set +# CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF is not set +# CONFIG_NEWLIB_STDIN_LINE_ENDING_LF is not set +CONFIG_NEWLIB_STDIN_LINE_ENDING_CR=y +# CONFIG_NEWLIB_NANO_FORMAT is not set +# end of Newlib + +# +# NVS +# +# end of NVS + +# +# OpenSSL +# +# CONFIG_OPENSSL_DEBUG is not set +# CONFIG_OPENSSL_ASSERT_DO_NOTHING is not set +CONFIG_OPENSSL_ASSERT_EXIT=y +# end of OpenSSL + +# +# PThreads +# +CONFIG_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_PTHREAD_STACK_MIN=768 +CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY=y +# CONFIG_PTHREAD_DEFAULT_CORE_0 is not set +# CONFIG_PTHREAD_DEFAULT_CORE_1 is not set +CONFIG_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_PTHREAD_TASK_NAME_DEFAULT="pthread" +# end of PThreads + +# +# SPI Flash driver +# +# CONFIG_SPI_FLASH_VERIFY_WRITE is not set +# CONFIG_SPI_FLASH_ENABLE_COUNTERS is not set +CONFIG_SPI_FLASH_ROM_DRIVER_PATCH=y +CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS=y +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS is not set +# CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED is not set +# CONFIG_SPI_FLASH_USE_LEGACY_IMPL is not set +# CONFIG_SPI_FLASH_SHARE_SPI1_BUS is not set +# CONFIG_SPI_FLASH_BYPASS_BLOCK_ERASE is not set +CONFIG_SPI_FLASH_YIELD_DURING_ERASE=y +CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS=20 +CONFIG_SPI_FLASH_ERASE_YIELD_TICKS=1 + +# +# Auto-detect flash chips +# +CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP=y +CONFIG_SPI_FLASH_SUPPORT_GD_CHIP=y +# end of Auto-detect flash chips +# end of SPI Flash driver + +# +# SPIFFS Configuration +# +CONFIG_SPIFFS_MAX_PARTITIONS=3 + +# +# SPIFFS Cache Configuration +# +CONFIG_SPIFFS_CACHE=y +CONFIG_SPIFFS_CACHE_WR=y +# CONFIG_SPIFFS_CACHE_STATS is not set +# end of SPIFFS Cache Configuration + +CONFIG_SPIFFS_PAGE_CHECK=y +CONFIG_SPIFFS_GC_MAX_RUNS=10 +# CONFIG_SPIFFS_GC_STATS is not set +CONFIG_SPIFFS_PAGE_SIZE=256 +CONFIG_SPIFFS_OBJ_NAME_LEN=32 +# CONFIG_SPIFFS_FOLLOW_SYMLINKS is not set +CONFIG_SPIFFS_USE_MAGIC=y +CONFIG_SPIFFS_USE_MAGIC_LENGTH=y +CONFIG_SPIFFS_META_LENGTH=4 +CONFIG_SPIFFS_USE_MTIME=y + +# +# Debug Configuration +# +# CONFIG_SPIFFS_DBG is not set +# CONFIG_SPIFFS_API_DBG is not set +# CONFIG_SPIFFS_GC_DBG is not set +# CONFIG_SPIFFS_CACHE_DBG is not set +# CONFIG_SPIFFS_CHECK_DBG is not set +# CONFIG_SPIFFS_TEST_VISUALISATION is not set +# end of Debug Configuration +# end of SPIFFS Configuration + +# +# TinyUSB +# + +# +# Descriptor configuration +# +CONFIG_USB_DESC_CUSTOM_VID=0x1234 +CONFIG_USB_DESC_CUSTOM_PID=0x5678 +# end of Descriptor configuration +# end of TinyUSB + +# +# Unity unit testing library +# +CONFIG_UNITY_ENABLE_FLOAT=y +CONFIG_UNITY_ENABLE_DOUBLE=y +# CONFIG_UNITY_ENABLE_COLOR is not set +CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER=y +# CONFIG_UNITY_ENABLE_FIXTURE is not set +# CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL is not set +# end of Unity unit testing library + +# +# Virtual file system +# +CONFIG_VFS_SUPPORT_IO=y +CONFIG_VFS_SUPPORT_DIR=y +CONFIG_VFS_SUPPORT_SELECT=y +CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_VFS_SUPPORT_TERMIOS=y + +# +# Host File System I/O (Semihosting) +# +CONFIG_VFS_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +CONFIG_VFS_SEMIHOSTFS_HOST_PATH_MAX_LEN=128 +# end of Host File System I/O (Semihosting) +# end of Virtual file system + +# +# Wear Levelling +# +# CONFIG_WL_SECTOR_SIZE_512 is not set +CONFIG_WL_SECTOR_SIZE_4096=y +CONFIG_WL_SECTOR_SIZE=4096 +# end of Wear Levelling + +# +# Wi-Fi Provisioning Manager +# +CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES=16 +CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT=30 +# end of Wi-Fi Provisioning Manager + +# +# Supplicant +# +CONFIG_WPA_MBEDTLS_CRYPTO=y +# CONFIG_WPA_DEBUG_PRINT is not set +# CONFIG_WPA_TESTING_OPTIONS is not set +# CONFIG_WPA_WPS_WARS is not set +# end of Supplicant +# end of Component config + +# +# Compatibility options +# +# CONFIG_LEGACY_INCLUDE_COMMON_HEADERS is not set +# end of Compatibility options + +# Deprecated options for backward compatibility +CONFIG_TOOLPREFIX="xtensa-esp32-elf-" +# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set +CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y +# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set +# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set +CONFIG_LOG_BOOTLOADER_LEVEL=3 +# CONFIG_APP_ROLLBACK_ENABLE is not set +# CONFIG_FLASH_ENCRYPTION_ENABLED is not set +# CONFIG_FLASHMODE_QIO is not set +# CONFIG_FLASHMODE_QOUT is not set +CONFIG_FLASHMODE_DIO=y +# CONFIG_FLASHMODE_DOUT is not set +# CONFIG_MONITOR_BAUD_9600B is not set +# CONFIG_MONITOR_BAUD_57600B is not set +CONFIG_MONITOR_BAUD_115200B=y +# CONFIG_MONITOR_BAUD_230400B is not set +# CONFIG_MONITOR_BAUD_921600B is not set +# CONFIG_MONITOR_BAUD_2MB is not set +# CONFIG_MONITOR_BAUD_OTHER is not set +CONFIG_MONITOR_BAUD_OTHER_VAL=115200 +CONFIG_MONITOR_BAUD=115200 +CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y +# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set +CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y +# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set +# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set +# CONFIG_CXX_EXCEPTIONS is not set +CONFIG_STACK_CHECK_NONE=y +# CONFIG_STACK_CHECK_NORM is not set +# CONFIG_STACK_CHECK_STRONG is not set +# CONFIG_STACK_CHECK_ALL is not set +# CONFIG_WARN_WRITE_STRINGS is not set +# CONFIG_DISABLE_GCC8_WARNINGS is not set +# CONFIG_ESP32_APPTRACE_DEST_TRAX is not set +CONFIG_ESP32_APPTRACE_DEST_NONE=y +CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y +CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF=0 +CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF=0 +CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF=0 +CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE=0 +CONFIG_ADC2_DISABLE_DAC=y +# CONFIG_SPIRAM_SUPPORT is not set +CONFIG_TRACEMEM_RESERVE_DRAM=0x0 +# CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set +CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y +CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4 +# CONFIG_ULP_COPROC_ENABLED is not set +CONFIG_ULP_COPROC_RESERVE_MEM=0 +CONFIG_BROWNOUT_DET=y +CONFIG_BROWNOUT_DET_LVL_SEL_0=y +# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set +# CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set +CONFIG_BROWNOUT_DET_LVL=0 +CONFIG_REDUCE_PHY_TX_POWER=y +CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y +# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set +# CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set +# CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set +# CONFIG_NO_BLOBS is not set +# CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set +CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32 +CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304 +CONFIG_MAIN_TASK_STACK_SIZE=3584 +CONFIG_IPC_TASK_STACK_SIZE=1024 +CONFIG_CONSOLE_UART_DEFAULT=y +# CONFIG_CONSOLE_UART_CUSTOM is not set +# CONFIG_CONSOLE_UART_NONE is not set +CONFIG_CONSOLE_UART_NUM=0 +CONFIG_CONSOLE_UART_TX_GPIO=1 +CONFIG_CONSOLE_UART_RX_GPIO=3 +CONFIG_CONSOLE_UART_BAUDRATE=115200 +CONFIG_INT_WDT=y +CONFIG_INT_WDT_TIMEOUT_MS=300 +CONFIG_INT_WDT_CHECK_CPU1=y +CONFIG_TASK_WDT=y +# CONFIG_TASK_WDT_PANIC is not set +CONFIG_TASK_WDT_TIMEOUT_S=5 +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y +CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y +# CONFIG_EVENT_LOOP_PROFILING is not set +CONFIG_POST_EVENTS_FROM_ISR=y +CONFIG_POST_EVENTS_FROM_IRAM_ISR=y +# CONFIG_ESP32S2_PANIC_PRINT_HALT is not set +CONFIG_ESP32S2_PANIC_PRINT_REBOOT=y +# CONFIG_ESP32S2_PANIC_SILENT_REBOOT is not set +# CONFIG_ESP32S2_PANIC_GDBSTUB is not set +CONFIG_TIMER_TASK_STACK_SIZE=3584 +CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND=150 +CONFIG_MB_MASTER_DELAY_MS_CONVERT=200 +CONFIG_MB_QUEUE_LENGTH=20 +CONFIG_MB_SERIAL_TASK_STACK_SIZE=2048 +CONFIG_MB_SERIAL_BUF_SIZE=256 +CONFIG_MB_SERIAL_TASK_PRIO=10 +# CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT is not set +CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT=20 +CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE=20 +CONFIG_MB_CONTROLLER_STACK_SIZE=4096 +CONFIG_MB_EVENT_QUEUE_TIMEOUT=20 +CONFIG_MB_TIMER_PORT_ENABLED=y +CONFIG_MB_TIMER_GROUP=0 +CONFIG_MB_TIMER_INDEX=0 +# CONFIG_SUPPORT_STATIC_ALLOCATION is not set +CONFIG_TIMER_TASK_PRIORITY=1 +CONFIG_TIMER_TASK_STACK_DEPTH=2048 +CONFIG_TIMER_QUEUE_LENGTH=10 +# CONFIG_L2_TO_L3_COPY is not set +# CONFIG_USE_ONLY_LWIP_SELECT is not set +CONFIG_ESP_GRATUITOUS_ARP=y +CONFIG_GARP_TMR_INTERVAL=60 +CONFIG_TCPIP_RECVMBOX_SIZE=32 +CONFIG_TCP_MAXRTX=12 +CONFIG_TCP_SYNMAXRTX=12 +CONFIG_TCP_MSS=1440 +CONFIG_TCP_MSL=60000 +CONFIG_TCP_SND_BUF_DEFAULT=5744 +CONFIG_TCP_WND_DEFAULT=5744 +CONFIG_TCP_RECVMBOX_SIZE=6 +CONFIG_TCP_QUEUE_OOSEQ=y +# CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES is not set +CONFIG_TCP_OVERSIZE_MSS=y +# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set +# CONFIG_TCP_OVERSIZE_DISABLE is not set +CONFIG_UDP_RECVMBOX_SIZE=6 +CONFIG_TCPIP_TASK_STACK_SIZE=3072 +CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y +# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set +# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set +CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF +# CONFIG_PPP_SUPPORT is not set +CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5 +CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072 +CONFIG_ESP32_PTHREAD_STACK_MIN=768 +CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set +# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set +CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1 +CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread" +CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set +# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set +CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y +CONFIG_SUPPORT_TERMIOS=y +CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1 +CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN=128 +# End of deprecated options