• Scale Snap 3D

    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).

    &

    96 Comments

    6 Stars


  • LED Array Driver

    LED Array Driver

    Development of LED array driver for medical imaging research. Adjustable intensity, frequency, and LED wavelength. Ramp times <100us.

    1 Star


  • LED Array

    LED Array

    &

    1 Comment

    1 Star


  • Phased Array Controller

    Phased Array Controller

    Welcome to your new project. Imagine what you can build here.

    1 Star


  • pundit.ai

    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.

    26 Comments

    1 Star


  • CPU-RT-4C-2G

    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.

    1 Comment

    1 Star


  • Magic Ring

    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

    1 Comment

    1 Star


  • Frantic Plum Pip boy

    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)

    1 Comment

    1 Star


  • uppser console led array

    uppser console led array

    Welcome to your new project. Imagine what you can build here.


  • Phased Array Controller Remote

    Phased Array Controller Remote

    Welcome to your new project. Imagine what you can build here.


  • LED Tie Clip shift array 2

    LED Tie Clip shift array 2

    Welcome to your new project. Imagine what you can build here.


  • tie clip array 3 mouse bite

    tie clip array 3 mouse bite

    Welcome to your new project. Imagine what you can build here.


  • LED Array alignment test

    LED Array alignment test

    Welcome to your new project. Imagine what you can build here.


  • Multi RJ45 ARRAY

    Multi RJ45 ARRAY

    Welcome to your new project. Imagine what you can build here.


  • InterconnectA

    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.

    55 Comments


  • Playground: Biskuit AI

    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.

    20 Comments


  • Biskuit AI: Project Showcase

    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.

    5 Comments


  • Biskuit AI 6254

    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.

    &

    4 Comments


  • Biskuit AI: Project Showcase

    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.

    1 Comment


  • Scale Snap 3D

    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).

    &

    1 Comment


  • BCV62BE6327HTSA1 df56

    BCV62BE6327HTSA1 df56

    Bipolar (BJT) Transistor Array 2 PNP (Dual) 30V 100mA 250MHz 300mW Surface Mount PG-SOT-143 #CommonPartsLibrary #TransistorBJT #BCV62

    &

    1 Comment


  • BCV62 43dc

    BCV62 43dc

    Bipolar (BJT) Transistor Array 2 PNP (Dual) 30V 100mA 250MHz 300mW Surface Mount PG-SOT-143 #CommonPartsLibrary #TransistorBJT #BCV62

    &

    1 Comment


  • Scale Snap 3D

    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).

    1 Comment


  • smart-speaker-project

    smart-speaker-project

    Radxa Zero 100mm Circular Audio Board: 4-Channel Mic Array & 3W Class-D Amplifier with USB-C Power


  • Sole Aqua Matter Compiler

    Sole Aqua Matter Compiler

    Radxa Zero 100mm Circular Audio Board: 4-Channel Mic Array & 3W Class-D Amplifier with USB-C Power