Фонарь налобный светодиодный на аккумуляторе 18650. Встроенная зарядка и 2 мощных но экономных светодиода позволяют получить долгую автономность без зарядки от 1 аккумулятора. Так же фонарь очень легкий и практически не чувствуется на голове.
https://ali.pub/6io3z6
доставили очень быстро, не смотря на то что опоздали на один день заявленного срока(курьером). фонарик норм. две разные лампы, одна пучком, другая рассеивает. свет не мощный, но для обыденного пользования достаточно за глаза. три режима на каждой лампе.если поставить аккум помощнее думаю будет в разы круче. продавцу спасибо и удачи. рекомендую однозначно
https://ali.pub/6io3z6
https://ali.pub/6io3z6
доставили очень быстро, не смотря на то что опоздали на один день заявленного срока(курьером). фонарик норм. две разные лампы, одна пучком, другая рассеивает. свет не мощный, но для обыденного пользования достаточно за глаза. три режима на каждой лампе.если поставить аккум помощнее думаю будет в разы круче. продавцу спасибо и удачи. рекомендую однозначно
https://ali.pub/6io3z6
Платки и шилды под базу WeMos D1 Mini ESP8266 ESP-12. Несколько разновидностей платы контроллера Вемос, плата шилд с драйвером для управления мотором, плата с кнопкой, плата на которой есть слот под карту microsd, температурные шилды на DHT 22 и dallas 18b20. С такими работать намного удобнее и приятнее, если нужно что-то простое собрать.
US $0.41 - 3.70
https://aliclick.shop/r/c/1r37apttsh2c6kr3?product_id=32643142716
https://aliclick.shop/r/c/1r37apttsh2c6kr3?product_id=32643142716&from_content=wall_-43363264_566101&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
US $0.41 - 3.70
https://aliclick.shop/r/c/1r37apttsh2c6kr3?product_id=32643142716
https://aliclick.shop/r/c/1r37apttsh2c6kr3?product_id=32643142716&from_content=wall_-43363264_566101&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
👍1
Тензометрические датчики на 1-10 кг , а так же плата преобразователь АЦП HX711 AD для сборки весов.
US $4.18
https://aliclick.shop/r/c/1r394cm6octwuus9?product_id=4000272063976
Весы на ардуино :
#include "HX711.h"
HX711 scale;
void setup() {
Serial.begin(38400);
Serial.println("HX711 Demo");
Serial.println("Initializing the scale");
// parameter "gain" is ommited; the default value 128 is used by the library
// HX711.DOUT - pin #A1
// HX711.PD_SCK - pin #A0
scale.begin(3, 2);
Serial.println("Before setting up the scale:");
Serial.print("read: \t\t");
Serial.println(scale.read()); // print a raw reading from the ADC
Serial.print("read average: \t\t");
Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC
Serial.print("get value: \t\t");
Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight (not set yet)
Serial.print("get units: \t\t");
Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight (not set) divided
// by the SCALE parameter (not set yet)
scale.set_scale(994.68); // this value is obtained by calibrating the scale with known weights; see the README for details
scale.tare(); // reset the scale to 0
Serial.println("After setting up the scale:");
Serial.print("read: \t\t");
Serial.println(scale.read()); // print a raw reading from the ADC
Serial.print("read average: \t\t");
Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC
Serial.print("get value: \t\t");
Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight, set with tare()
Serial.print("get units: \t\t");
Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight, divided
// by the SCALE parameter set with set_scale
Serial.println("Readings:");
}
void loop() {
Serial.print("one reading:\t");
Serial.print(scale.get_units(), 1);
Serial.print("\t| average:\t");
Serial.println(scale.get_units(10), 1);
scale.power_down(); // put the ADC in sleep mode
delay(5000);
scale.power_up();
}
https://aliclick.shop/r/c/1r394cm6octwuus9?product_id=4000272063976&from_content=wall_-43363264_566104&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
US $4.18
https://aliclick.shop/r/c/1r394cm6octwuus9?product_id=4000272063976
Весы на ардуино :
#include "HX711.h"
HX711 scale;
void setup() {
Serial.begin(38400);
Serial.println("HX711 Demo");
Serial.println("Initializing the scale");
// parameter "gain" is ommited; the default value 128 is used by the library
// HX711.DOUT - pin #A1
// HX711.PD_SCK - pin #A0
scale.begin(3, 2);
Serial.println("Before setting up the scale:");
Serial.print("read: \t\t");
Serial.println(scale.read()); // print a raw reading from the ADC
Serial.print("read average: \t\t");
Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC
Serial.print("get value: \t\t");
Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight (not set yet)
Serial.print("get units: \t\t");
Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight (not set) divided
// by the SCALE parameter (not set yet)
scale.set_scale(994.68); // this value is obtained by calibrating the scale with known weights; see the README for details
scale.tare(); // reset the scale to 0
Serial.println("After setting up the scale:");
Serial.print("read: \t\t");
Serial.println(scale.read()); // print a raw reading from the ADC
Serial.print("read average: \t\t");
Serial.println(scale.read_average(20)); // print the average of 20 readings from the ADC
Serial.print("get value: \t\t");
Serial.println(scale.get_value(5)); // print the average of 5 readings from the ADC minus the tare weight, set with tare()
Serial.print("get units: \t\t");
Serial.println(scale.get_units(5), 1); // print the average of 5 readings from the ADC minus tare weight, divided
// by the SCALE parameter set with set_scale
Serial.println("Readings:");
}
void loop() {
Serial.print("one reading:\t");
Serial.print(scale.get_units(), 1);
Serial.print("\t| average:\t");
Serial.println(scale.get_units(10), 1);
scale.power_down(); // put the ADC in sleep mode
delay(5000);
scale.power_up();
}
https://aliclick.shop/r/c/1r394cm6octwuus9?product_id=4000272063976&from_content=wall_-43363264_566104&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
Не дорогая сетевая зарядка на 4 USB порта USLION 48 Вт, один порт может выдавать быструю зарядку.
US $3.83
https://aliclick.shop/r/c/1r37axlogw9z7dl8?product_id=1005001895245817
разъем юсб на 3.1А выдает 1А, разъем быстрой зарядки выдает 1.6А на телефоне ми а1.
https://aliclick.shop/r/c/1r37axlogw9z7dl8?product_id=1005001895245817&from_content=wall_-43363264_566106&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
US $3.83
https://aliclick.shop/r/c/1r37axlogw9z7dl8?product_id=1005001895245817
разъем юсб на 3.1А выдает 1А, разъем быстрой зарядки выдает 1.6А на телефоне ми а1.
https://aliclick.shop/r/c/1r37axlogw9z7dl8?product_id=1005001895245817&from_content=wall_-43363264_566106&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
This media is not supported in your browser
VIEW IN TELEGRAM
Обжимной инструмент для оконечников на провода HSC8 6-4A/6-4 0,25-10 мм² 23-7AWG 6-6 0,25-6 мм²
US $11.81 - 20.54
https://aliclick.shop/r/c/1r37a4s9ldgygtam?product_id=32845981687
https://aliclick.shop/r/c/1r37a4s9ldgygtam?product_id=32845981687&from_content=wall_-43363264_566107&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
US $11.81 - 20.54
https://aliclick.shop/r/c/1r37a4s9ldgygtam?product_id=32845981687
https://aliclick.shop/r/c/1r37a4s9ldgygtam?product_id=32845981687&from_content=wall_-43363264_566107&gaid=bfc0fd12-544f-4bc8-96c7-c6e5f5a06353&sns_params=%7B%22vk_id%22%3A10943591%2C%22exps%22%3A%5B%5D%7D
👍1
Мини портативный принтер чеков с поддержкой Bluetooth печати с устройств IOS Android
https://ali.pub/6io3zr
https://ali.pub/6io3zr
https://ali.pub/6io3zr
https://ali.pub/6io3zr
👍1