Scale Snap 3D
3D Camera Module is a scalable SPI enabled 4 camera array pinout for 3D photogrammetry reconstruction which uses I2C to connect between each module to expand camera capacity while keeping capture sequences in sync. It uses ATMega32U4 with its built in USB 2.0 for data transfer and camera array adjustments and capture as well as a micro SD card slot for local image storage. An interrupt logic pinout should be used on the SPI master module as capture command. Each module is powered via USB-C (5V) or barrel jack (12V regulated to 5V).... show more96 Comments
6 Stars
LED Array Driver
Development of LED array driver for medical imaging research. Adjustable intensity, frequency, and LED wavelength. Ramp times <100us.... show more1 Star
pundit.ai
1. Overview: The Pundit pendant is a wearable AI transcription assistant. An innovative device designed to seamlessly integrate into daily activities, providing real-time transcription and note-taking capabilities. Combining advanced AI algorithms with state-of-the-art hardware components, the device offers crystal clear audio recording, durable construction, and convenient features such as cloud synchronization, weatherproofing, and a vibrant display for animations and expressions. 2. Hardware Specifications: * Rechargeable Battery: Lithium-ion battery providing up to 150 hours of continuous operation. * Construction: Durable aluminum body ensuring longevity and protection against wear and tear. * Audio Quality: High-fidelity microphone array for clear and accurate transcription, with noise cancellation technology. * Weatherproofing: Sealed construction to withstand various weather conditions, making it suitable for outdoor use. * Versatile Mounting: Equipped with a magnetic clasp for easy attachment to clothing or accessories. * Connectivity: Wi-Fi and Bluetooth connectivity for seamless data transfer and integration with other devices. * Charging: USB-C port for fast and convenient charging, with support for various power sources. * Input Microphone Array: Multiple microphones strategically placed for optimal audio capture and transcription accuracy. * Display: Colorful screen for displaying animations, expressions, and status indicators, enhancing user interaction and personalization. 3. Software Features: * Real-time Transcription: Utilizes AI algorithms for instant transcription of spoken words into text, with high accuracy. * Note-taking: Automatically creates and organizes notes based on conversations, timestamps, and contextual cues. * Audio Recording: One-touch button for initiating audio recording, with options for manual or automatic saving. * Cloud Synchronization: Syncs transcription data to the cloud for easy access and retrieval from any device. * Speech Recognition: Advanced speech recognition technology for identifying speakers and distinguishing between multiple voices. * Language Support: Multilingual support for transcription and note-taking in various languages. * Customization: User-configurable settings for adjusting transcription preferences, language models, and display animations. * Security: Encryption and authentication protocols to ensure the privacy and security of transcription data. 4. Dimensions and Weight: * Dimensions: Compact and lightweight design for comfortable wearability. * Weight: Minimal weight to prevent discomfort during prolonged use. 5. Compatibility: * Operating Systems: Compatible with iOS, Android, and other major operating systems. * Applications: Integration with popular productivity and communication apps for seamless workflow management. 6. Warranty and Support: * Warranty: Manufacturer's warranty covering defects in materials and workmanship. * Support: Dedicated customer support for technical assistance, troubleshooting, and software updates. 7. Target Market: * Professionals: Ideal for professionals in various industries, including journalists, researchers, students, and business professionals. * Outdoor Enthusiasts: Suitable for outdoor activities such as hiking, camping, and fieldwork where reliable transcription and note-taking are essential. * Everyday Users: Provides convenience and efficiency for everyday tasks, such as meetings, lectures, and personal reminders. 8. Conclusion: The Wearable AI Transcription Assistant sets a new standard for wearable technology, offering unmatched transcription and note-taking capabilities in a compact and durable package. With its advanced features, seamless connectivity, vibrant display, and user-friendly design, it is poised to revolutionize how we capture and manage information in our daily lives while adding a touch of personality and fun with customizable animations and expressions.... show more26 Comments
1 Star
CPU-RT-4C-2G
The Ariel AI Chip, an innovative component designed for high-performance computing applications, integrates a sophisticated array of electronic parts to deliver unparalleled processing capabilities. At the heart of this system is a CPU with a radical transistor architecture, featuring a core count of 4 and a clock speed of 2GHz, identified by its part number CPU-RT-4C-2G. Power management within the chip is efficiently handled by a DC Power Supply, rated at 5V, with the part number DCPS-5V, ensuring stable and reliable operation. The chip's signal processing and amplification needs are addressed through the inclusion of two NPN transistors, with part numbers NPN-TRANS-001 and a similar variant, providing the necessary gain and switching capabilities for complex computational tasks. Signal conditioning is further enhanced by a pair of 1kΩ resistors, RES-1K and RES-1K-002, and a 10µF capacitor, CAP-10UF, which work together to filter and stabilize the power supply and signal pathways, ensuring clean and noise-free operation. This integration of components within the Ariel AI Chip offers electrical engineers a robust platform for developing advanced AI systems, combining high processing power with efficient power management and signal integrity, suitable for a wide range of applications in the field of artificial intelligence.... show more1 Comment
1 Star
Magic Ring
A board with an array of LEDs that are controlled via STM32, and there is also an accelerometer and a temperature sensor! #stm32 #iot #magic #led... show more1 Comment
1 Star
Frantic Plum Pip boy
como puedo corregir este codigo para que funcione en flux.io import time import random import matplotlib.pyplot as plt import io import base64 from fluxio import Flow flow = Flow() @flow.task def linear_search(arr, target): for i in range(len(arr)): if arr[i] == target: return i return -1 @flow.task def binary_search(arr, target): low = 0 high = len(arr) - 1 while low <= high: mid = (low + high) // 2 if arr[mid] == target: return mid elif arr[mid] < target: low = mid + 1 else: high = mid - 1 return -1 @flow.task def measure_time(func, arr, target): start_time = time.time() func(arr, target) end_time = time.time() return end_time - start_time @flow.task def generate_data_and_measure(): sizes = [100, 1000, 5000, 10000, 50000, 100000] linear_times = [] binary_times = [] for size in sizes: arr = random.sample(range(size * 2), size) target = random.choice(arr) sorted_arr = sorted(arr) linear_time = measure_time(linear_search, arr, target) binary_time = measure_time(binary_search, sorted_arr, target) linear_times.append(linear_time) binary_times.append(binary_time) return sizes, linear_times, binary_times @flow.task def plot_results(sizes, linear_times, binary_times): plt.plot(sizes, linear_times, label='Búsqueda Lineal') plt.plot(sizes, binary_times, label='Búsqueda Binaria') plt.xlabel('Tamaño del Array') plt.ylabel('Tiempo de Ejecución (segundos)') plt.title('Análisis de Complejidad Temporal') plt.legend() plt.grid(True) buf = io.BytesIO() plt.savefig(buf, format='png') buf.seek(0) img_str = base64.b64encode(buf.read()).decode('utf-8') plt.close() return img_str @flow.task def main(): sizes, linear_times, binary_times = generate_data_and_measure() img_str = plot_results(sizes, linear_times, binary_times) return img_str if __name__ == "__main__": flow.run(main)... show more1 Comment
1 Star
InterconnectA
This project aims to design and develop a modular monitoring system for a LiC supercapacitor array, incorporating PCBs A and B for voltage sensing on either side of the array, and PCB C for central control. PCBs A and B will measure cell voltages, communicate data via I2C, and feature activity/status LEDs, powered directly from the array. PCB C will aggregate data, managing over/under voltage, overcurrent, and balancing. The goal is a compact, efficient solution to ensure the array's safety and longevity.... show more55 Comments
Playground: Biskuit AI
1. Overview: The Biskuit pendant is a wearable AI transcription assistant. An innovative device designed to seamlessly integrate into daily activities, providing real-time transcription and note-taking capabilities. Combining advanced AI algorithms with state-of-the-art hardware components, the device offers crystal clear audio recording, durable construction, and convenient features such as cloud synchronization, weatherproofing, and a vibrant display for animations and expressions. 2. Hardware Specifications: * Rechargeable Battery: Lithium-ion battery providing up to 150 hours of continuous operation. * Construction: Durable aluminum body ensuring longevity and protection against wear and tear. * Audio Quality: High-fidelity microphone array for clear and accurate transcription, with noise cancellation technology. * Weatherproofing: Sealed construction to withstand various weather conditions, making it suitable for outdoor use. * Versatile Mounting: Equipped with a magnetic clasp for easy attachment to clothing or accessories. * Connectivity: Wi-Fi and Bluetooth connectivity for seamless data transfer and integration with other devices. * Charging: USB-C port for fast and convenient charging, with support for various power sources. * Input Microphone Array: Multiple microphones strategically placed for optimal audio capture and transcription accuracy. * Display: Colorful screen for displaying animations, expressions, and status indicators, enhancing user interaction and personalization. 3. Software Features: * Real-time Transcription: Utilizes AI algorithms for instant transcription of spoken words into text, with high accuracy. * Note-taking: Automatically creates and organizes notes based on conversations, timestamps, and contextual cues. * Audio Recording: One-touch button for initiating audio recording, with options for manual or automatic saving. * Cloud Synchronization: Syncs transcription data to the cloud for easy access and retrieval from any device. * Speech Recognition: Advanced speech recognition technology for identifying speakers and distinguishing between multiple voices. * Language Support: Multilingual support for transcription and note-taking in various languages. * Customization: User-configurable settings for adjusting transcription preferences, language models, and display animations. * Security: Encryption and authentication protocols to ensure the privacy and security of transcription data. 4. Dimensions and Weight: * Dimensions: Compact and lightweight design for comfortable wearability. * Weight: Minimal weight to prevent discomfort during prolonged use. 5. Compatibility: * Operating Systems: Compatible with iOS, Android, and other major operating systems. * Applications: Integration with popular productivity and communication apps for seamless workflow management. 6. Warranty and Support: * Warranty: Manufacturer's warranty covering defects in materials and workmanship. * Support: Dedicated customer support for technical assistance, troubleshooting, and software updates. 7. Target Market: * Professionals: Ideal for professionals in various industries, including journalists, researchers, students, and business professionals. * Outdoor Enthusiasts: Suitable for outdoor activities such as hiking, camping, and fieldwork where reliable transcription and note-taking are essential. * Everyday Users: Provides convenience and efficiency for everyday tasks, such as meetings, lectures, and personal reminders. 8. Conclusion: The Wearable AI Transcription Assistant sets a new standard for wearable technology, offering unmatched transcription and note-taking capabilities in a compact and durable package. With its advanced features, seamless connectivity, vibrant display, and user-friendly design, it is poised to revolutionize how we capture and manage information in our daily lives while adding a touch of personality and fun with customizable animations and expressions.... show more20 Comments
Biskuit AI: Project Showcase
Biskuit is a compact, ESP32-S3-powered wearable device designed for real-time transcription and effortless note-taking. Featuring a 3-microphone array and wireless communication to sync to to the cloud instantly.... show more5 Comments
Biskuit AI 6254
1. Overview: The Biskuit pendant is a wearable AI transcription assistant. An innovative device designed to seamlessly integrate into daily activities, providing real-time transcription and note-taking capabilities. Combining advanced AI algorithms with state-of-the-art hardware components, the device offers crystal clear audio recording, durable construction, and convenient features such as cloud synchronization, weatherproofing, and a vibrant display for animations and expressions. 2. Hardware Specifications: * Rechargeable Battery: Lithium-ion battery providing up to 150 hours of continuous operation. * Construction: Durable aluminum body ensuring longevity and protection against wear and tear. * Audio Quality: High-fidelity microphone array for clear and accurate transcription, with noise cancellation technology. * Weatherproofing: Sealed construction to withstand various weather conditions, making it suitable for outdoor use. * Versatile Mounting: Equipped with a magnetic clasp for easy attachment to clothing or accessories. * Connectivity: Wi-Fi and Bluetooth connectivity for seamless data transfer and integration with other devices. * Charging: USB-C port for fast and convenient charging, with support for various power sources. * Input Microphone Array: Multiple microphones strategically placed for optimal audio capture and transcription accuracy. * Display: Colorful screen for displaying animations, expressions, and status indicators, enhancing user interaction and personalization. 3. Software Features: * Real-time Transcription: Utilizes AI algorithms for instant transcription of spoken words into text, with high accuracy. * Note-taking: Automatically creates and organizes notes based on conversations, timestamps, and contextual cues. * Audio Recording: One-touch button for initiating audio recording, with options for manual or automatic saving. * Cloud Synchronization: Syncs transcription data to the cloud for easy access and retrieval from any device. * Speech Recognition: Advanced speech recognition technology for identifying speakers and distinguishing between multiple voices. * Language Support: Multilingual support for transcription and note-taking in various languages. * Customization: User-configurable settings for adjusting transcription preferences, language models, and display animations. * Security: Encryption and authentication protocols to ensure the privacy and security of transcription data. 4. Dimensions and Weight: * Dimensions: Compact and lightweight design for comfortable wearability. * Weight: Minimal weight to prevent discomfort during prolonged use. 5. Compatibility: * Operating Systems: Compatible with iOS, Android, and other major operating systems. * Applications: Integration with popular productivity and communication apps for seamless workflow management. 6. Warranty and Support: * Warranty: Manufacturer's warranty covering defects in materials and workmanship. * Support: Dedicated customer support for technical assistance, troubleshooting, and software updates. 7. Target Market: * Professionals: Ideal for professionals in various industries, including journalists, researchers, students, and business professionals. * Outdoor Enthusiasts: Suitable for outdoor activities such as hiking, camping, and fieldwork where reliable transcription and note-taking are essential. * Everyday Users: Provides convenience and efficiency for everyday tasks, such as meetings, lectures, and personal reminders. 8. Conclusion: The Wearable AI Transcription Assistant sets a new standard for wearable technology, offering unmatched transcription and note-taking capabilities in a compact and durable package. With its advanced features, seamless connectivity, vibrant display, and user-friendly design, it is poised to revolutionize how we capture and manage information in our daily lives while adding a touch of personality and fun with customizable animations and expressions.... show more4 Comments
Biskuit AI: Project Showcase
Biskuit is a compact, ESP32-S3-powered wearable device designed for real-time transcription and effortless note-taking. Featuring a 3-microphone array and wireless communication to sync to to the cloud instantly.... show more1 Comment
Scale Snap 3D
3D Camera Module is a scalable SPI enabled 4 camera array pinout for 3D photogrammetry reconstruction which uses I2C to connect between each module to expand camera capacity while keeping capture sequences in sync. It uses ATMega32U4 with its built in USB 2.0 for data transfer and camera array adjustments and capture as well as a micro SD card slot for local image storage. An interrupt logic pinout should be used on the SPI master module as capture command. Each module is powered via USB-C (5V) or barrel jack (12V regulated to 5V).... show more1 Comment
BCV62BE6327HTSA1 df56
Bipolar (BJT) Transistor Array 2 PNP (Dual) 30V 100mA 250MHz 300mW Surface Mount PG-SOT-143 #CommonPartsLibrary #TransistorBJT #BCV62... show more1 Comment
BCV62 43dc
Bipolar (BJT) Transistor Array 2 PNP (Dual) 30V 100mA 250MHz 300mW Surface Mount PG-SOT-143 #CommonPartsLibrary #TransistorBJT #BCV62... show more1 Comment
Scale Snap 3D
3D Camera Module is a scalable SPI enabled 4 camera array pinout for 3D photogrammetry reconstruction which uses I2C to connect between each module to expand camera capacity while keeping capture sequences in sync. It uses ATMega32U4 with its built in USB 2.0 for data transfer and camera array adjustments and capture as well as a micro SD card slot for local image storage. An interrupt logic pinout should be used on the SPI master module as capture command. Each module is powered via USB-C (5V) or barrel jack (12V regulated to 5V).... show more1 Comment
smart-speaker-project
Radxa Zero 100mm Circular Audio Board: 4-Channel Mic Array & 3W Class-D Amplifier with USB-C Power... show moreSole Aqua Matter Compiler
Radxa Zero 100mm Circular Audio Board: 4-Channel Mic Array & 3W Class-D Amplifier with USB-C Power... show more
FPGA LED Matrix [Staging_V1_9-15]
This is a FPGA controller for RGB LED matrix based on ICE40 Field-programmable gate array chip #RGB #FPGA #ICE40HX1K #ICE40 #controller #referenceDesign #project #template #LED #video... show moreFPGA LED Matrix Template mYyS 08da b3a5
This is a FPGA controller for RGB LED matrix based on ICE40 Field-programmable gate array chip #RGB #FPGA #ICE40HX1K #ICE40 #controller #referenceDesign #project #template #LED #video... show moreFPGA VGA Controller Template
This is a VGA signal generation based on ICE40 Field-programmable gate array chip #VGA #FPGA #ICE40HX1K #ICE40 #controller #referenceDesign #project #template #SRAM #video #display... show moreMagic Ring
A board with an array of LEDs that are controlled via STM32, and there is also an accelerometer and a temperature sensor! #stm32 #iot #magic #led... show moreFPGA LED Matrix Template mYyS
This is a FPGA controller for RGB LED matrix based on ICE40 Field-programmable gate array chip #RGB #FPGA #ICE40HX1K #ICE40 #controller #referenceDesign #project #template #LED #video... show moreBiskuit AI: Project Showcase xuSd
Biskuit is a compact, ESP32-S3-powered wearable device designed for real-time transcription and effortless note-taking. Featuring a 3-microphone array and wireless communication to sync to to the cloud instantly.... show moreBiskuit AI: Project Showcase xuSd
Biskuit is a compact, ESP32-S3-powered wearable device designed for real-time transcription and effortless note-taking. Featuring a 3-microphone array and wireless communication to sync to to the cloud instantly.... show moreDYI Stopwatch clock (Arduino nano)
Project featuring stopwatch based on Arduino nano and DYI 7 segment clock with max7219 and ULN2803A transistor array. For comunication project uses nRF24L01. #Arduino #Nano #Shield #project #nRF24 #max7219 #ULN2803A #Stopwatch #Firefighting_sport... show moreFPGA LED Matrix Template
This is a FPGA controller for RGB LED matrix based on ICE40 Field-programmable gate array chip #RGB #FPGA #ICE40HX1K #ICE40 #controller #referenceDesign #project #template #LED #video... show moreFPGA VGA Controller Template
This is a VGA signal generation based on ICE40 Field-programmable gate array chip #VGA #FPGA #ICE40HX1K #ICE40 #controller #referenceDesign #project #template #SRAM #video #display... show moreBC807DS,115
Bipolar (BJT) Transistor Array 2 PNP (Dual) 45V 500mA 80MHz 600mW Surface Mount 6-TSOP #CommonPartsLibrary #Transistors #Bipolar(BJT) #Dual-PNP #Transistor-Arrays #BC807... show moreL293DNE 9DiE
The L293 and L293D, manufactured by Texas Instruments, are quadruple high-current half-H drivers designed to drive inductive loads such as relays, solenoids, DC, and bipolar stepping motors, among other high-current/high-voltage loads in positive-supply applications. These components cater to a wide supply-voltage range from 4.5 V to 36 V. The L293 can provide bidirectional drive currents of up to 1 A, whereas the L293D variant supports up to 600 mA, incorporating output clamp diodes for inductive transient suppression. With separate input-logic supply, their internal architecture enables high noise immunity and low power dissipation. These drivers are enabled in pairs, with the enable input controlling the state of the drivers, which are designed to work in high-impedance states when disabled. Markedly, the L293D is distinctively packaged with internal ESD protection and a thermal shutdown feature to safeguard against excessive heat and electric static discharge, ensuring reliability and stability in operation. Collectively, the L293 and L293D are functionally similar to SGS L293 and L293D and are characterized for operation from 0℃ to 70°C, structured to meet a broad array of motor driving requirements with their robust design and advanced features.... show moreOPA2863DR wBM3
The Texas Instruments OPA863, OPA2863, and OPA4863 are low-power, voltage-feedback operational amplifiers designed to offer a unity-gain stable, rail-to-rail input and output with a 110-MHz bandwidth. These amplifiers are optimized for a broad power supply range from 2.7 V to 12.6 V, catering to a variety of portable and battery-powered applications. Key features include a quiescent current of 700-uA/ch (typical), a gain-bandwidth product of 50 MHZ, input voltage noise of 5.9-nV/VHz, and a slew rate of 105-V/us. The series also highlights specialized versions including the OPAx863A for high precision requirements, and all models integrate features like overload power limit and output short-circuit protection for ruggedized environments. The devices’ applicability spans across multiple domains including low-power SAR and ΔΣ ADC drivers, ADC reference buffers, photodiode transimpedance amplifiers, and more. The comprehensive array of packages available (including SOT-23, VSSOP, WQFN, and TSSOP options) ensures flexibility in hardware design, making these operational amplifiers from Texas Instruments suitable for high-performance, space-conscious, and power-sensitive electronic circuits.... show more3DCameraModule
A scalable 4x camera array for 3D photogrammetry reconstruction which uses I2C to connect between each module.... show moreDF40C-120DS-0.4V(51)
100 Position Connector Receptacle, Center Strip Contacts Surface Mount Gold #CommonPartsLibrary #Connector #Rectangular-Connector #Array #Edge-Type #Mezzanine #DF40C... show moreScale Snap 3D
3D Camera Module is a scalable SPI enabled 4 camera array pinout for 3D photogrammetry reconstruction which uses I2C to connect between each module to expand camera capacity while keeping capture sequences in sync. It uses ATMega32U4 with its built in USB 2.0 for data transfer and camera array adjustments and capture as well as a micro SD card slot for local image storage. An interrupt logic pinout should be used on the SPI master module as capture command. Each module is powered via USB-C (5V) or barrel jack (12V regulated to 5V).... show moreBiskuit AI 6254
1. Overview: The Biskuit pendant is a wearable AI transcription assistant. An innovative device designed to seamlessly integrate into daily activities, providing real-time transcription and note-taking capabilities. Combining advanced AI algorithms with state-of-the-art hardware components, the device offers crystal clear audio recording, durable construction, and convenient features such as cloud synchronization, weatherproofing, and a vibrant display for animations and expressions. 2. Hardware Specifications: * Rechargeable Battery: Lithium-ion battery providing up to 150 hours of continuous operation. * Construction: Durable aluminum body ensuring longevity and protection against wear and tear. * Audio Quality: High-fidelity microphone array for clear and accurate transcription, with noise cancellation technology. * Weatherproofing: Sealed construction to withstand various weather conditions, making it suitable for outdoor use. * Versatile Mounting: Equipped with a magnetic clasp for easy attachment to clothing or accessories. * Connectivity: Wi-Fi and Bluetooth connectivity for seamless data transfer and integration with other devices. * Charging: USB-C port for fast and convenient charging, with support for various power sources. * Input Microphone Array: Multiple microphones strategically placed for optimal audio capture and transcription accuracy. * Display: Colorful screen for displaying animations, expressions, and status indicators, enhancing user interaction and personalization. 3. Software Features: * Real-time Transcription: Utilizes AI algorithms for instant transcription of spoken words into text, with high accuracy. * Note-taking: Automatically creates and organizes notes based on conversations, timestamps, and contextual cues. * Audio Recording: One-touch button for initiating audio recording, with options for manual or automatic saving. * Cloud Synchronization: Syncs transcription data to the cloud for easy access and retrieval from any device. * Speech Recognition: Advanced speech recognition technology for identifying speakers and distinguishing between multiple voices. * Language Support: Multilingual support for transcription and note-taking in various languages. * Customization: User-configurable settings for adjusting transcription preferences, language models, and display animations. * Security: Encryption and authentication protocols to ensure the privacy and security of transcription data. 4. Dimensions and Weight: * Dimensions: Compact and lightweight design for comfortable wearability. * Weight: Minimal weight to prevent discomfort during prolonged use. 5. Compatibility: * Operating Systems: Compatible with iOS, Android, and other major operating systems. * Applications: Integration with popular productivity and communication apps for seamless workflow management. 6. Warranty and Support: * Warranty: Manufacturer's warranty covering defects in materials and workmanship. * Support: Dedicated customer support for technical assistance, troubleshooting, and software updates. 7. Target Market: * Professionals: Ideal for professionals in various industries, including journalists, researchers, students, and business professionals. * Outdoor Enthusiasts: Suitable for outdoor activities such as hiking, camping, and fieldwork where reliable transcription and note-taking are essential. * Everyday Users: Provides convenience and efficiency for everyday tasks, such as meetings, lectures, and personal reminders. 8. Conclusion: The Wearable AI Transcription Assistant sets a new standard for wearable technology, offering unmatched transcription and note-taking capabilities in a compact and durable package. With its advanced features, seamless connectivity, vibrant display, and user-friendly design, it is poised to revolutionize how we capture and manage information in our daily lives while adding a touch of personality and fun with customizable animations and expressions.... show more