-
PDF
-
Datei
E4B.txt
(Intro) (Instrumental build up) Verse 1 We've known each other for so long Your heart's been aching but You're too shy to say it And we both know what's been going on We know the game and where we're gonna play it And if you ask me how I feel Don't tell me or too But to see Pre-Chorus Never gonna give you up Never gonna let you down Never gonna run around and desert you Never gonna make you cry Never gonna say goodbye Never gonna tell a lie and hurt you Chorus Never gonna give you up Never gonna let you down Never gonna run around and desert you Never gonna make you cry Never gonna say goodbye Never
in „KI Modell mit Spracherkennung“ · PC Hard- und Software ·
-
PDF
-
Datei
dmx-demux4.ino
DMXSerial.h> #include <Adafruit_NeoPixel.h> #include "TimerOne.h" #define PIN 12 #define NUMPIXELS 4 Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_RGB + NEO_KHZ800); const int Pin[] = {6,9,10,11}; int DMX_Values[] = {0,0,0,0}; unsigned int CH[] = {0,0,0,0}; unsigned int buf_CH[] =
in „Probem mit Arduino DMXSerial und WS2812 / Triac Steuerung“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
dip204-4.pdf
2.2010 EADIP204-4 LCD- MODUL4x20 - 3,73mm e INKL. KONTROLLER KS0073 ontag ineM rlc EADIP204J-4NLW ke rforde e Abmessungen 75 x 27 mm TECHNISCHE DATEN Abmessungen 68 x 27 mm * KONTRASTREICHE LCD-SUPERTWIST ANZEIGE * KONTROLLER
in „LCD an ATmega8 mit C ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sketch_4leds.ino
a pair of pins as active outputs around // to drive a LED. LEDs can be connected to D2/D6, D3/D7, D4/D8, D5/D9. #include <EveryTimer.h> #include <avr/sleep.h> EveryTimer tmr; void setup() { tmr.Every(1, multiplex); } void loop() { // all work is done by timers / interrupts tmr.Update(); sleep_mode(); } void multiplex() { static int led_no; constexpr int num_leds = 4; constexpr int offset = 2; // Arduino Nano pins start at #2 // turn off old pins pinMode(led_no + offset, INPUT); pinMode(led_no + offset + num_leds, INPUT); if (++led_no == num_leds) led_no = 0; //
in „LED Steckspiel“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
clock_divider_4.vhd
Xilinx leaf cells in this code. --library UNISIM; --use UNISIM.VComponents.all; entity clock_divider_4 is port( CLK_IN : IN STD_LOGIC; RESET : IN STD_LOGIC; CLK_OUT : OUT STD_LOGIC ); end clock_divider_4; architecture Behavioral of clock_divider_4 is begin process(CLK_IN,RESET) VARIABLE COUNT : integer
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
clk_divider_4.vhd
Xilinx leaf cells in this code. --library UNISIM; --use UNISIM.VComponents.all; entity clock_divider_4 is port( CLK_IN : IN STD_LOGIC; RESET : IN STD_LOGIC; CLK_OUT : OUT STD_LOGIC ); end clock_divider_4; architecture Behavioral of clock_divider_4 is begin process(CLK_IN,RESET) VARIABLE COUNT : integer
in „Genesys 2 (Xilinx Kintex 7): Audio-Codec Implementierung und Filteranbindung“ · FPGA, VHDL & Co. ·
-
Datei
Settings-COM4.txt
4,4800,N,8,1, 0, 0, 0, 0, 2
in „UART kommunikation macht keinen Sinn“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
USB Device Viewer Fenster mit USB-Geräteinformationen
USB Device Viewer My Computer Intel(R) 8 Series C220 Series USB EHCI #1 - BC26 USB-Verbundgerät UNO R4 Minima Arduino, LLC Endpoint Descriptor Bulk Transfer
in „Arduino UNO R4 in Win10 nicht erkannt“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
PDF
Nahfeld_FD4.pdf
Fritzel FD4 80, 40 und 20m Die Verhältnisse im Nahfeld wurden soweit das reaktive Nahfeld den Sicherheitsbereich Übertrifft mit nec2.d von Arie Voors untersucht. Der Schnitt bei X=0m beinhaltet stets den kritischsten Punkt bei Y = 13,5m und Z = 12m, hier ist die FD4 mit dem kurzen Ende der Gebäudehaut des Nachbarn am nächsten.
in „Herzschrittmacher Grenzwerte EMVU > AFU“ · HF, Funk und Felder ·
-
PDF
dip204-4.pdf
Stand 4.2011 LCD- MODUL 4x20 - 3,73mm INKL. KONTROLLER KS0073 ü nchtf lungen ntwik EADIP204J-4NLW Nue EADIP204B-4NLW: EADIP204-4HNLED: Abmessungen 75 x 27 mm Abmessungen 68 x 27 mm TECHNISCHE DATEN * KONTRASTREICHE
in „LCD Display: Adressen doppelt vergeben?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
4-Kanal-ATmega.ino
int MAX_ERROR = 10; const int SWITCH_STEP = 25; //Schaltlevel für Kanäle -Ch1/3 Nullpunkt+Level -Ch2/4 Nullpunkt-Level int zeroPoint, i, error, counter; //Hilfsvariable bool initZP; unsigned long counter1 = 0; unsigned long counter2 = 0; bool prevStateRight = NOT_PRESSED; bool prevStateLeft = NOT_PRESSED
in „Umschreiben von ATmega328 auf ATtiny“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
4-Kanal-ATtiny.ino
NOT_PRESSED HIGH #define SHORTLEFT PB0 #define LONGLEFT PB1 #define SHORTRIGHT PB3 #define LONGRIGHT PB4 //Variablen //RC-bezogen int cnt_CH_1 = 0; //Zähler Channel 1 für Interruptroutine volatile int value_CH_1 = 0; //Übergabewert Channel 1 aus Interruptroutine //Programmbezogen const unsigned long SHORT_PRESS
in „Umschreiben von ATmega328 auf ATtiny“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
4-Kanal-ATtiny.ino
NOT_PRESSED HIGH #define SHORTLEFT PB0 #define LONGLEFT PB1 #define SHORTRIGHT PB3 #define LONGRIGHT PB4 //Variablen //RC-bezogen int cnt_CH_1 = 0; //Zähler Channel 1 für Interruptroutine volatile int value_CH_1 = 0; //Übergabewert Channel 1 aus Interruptroutine //Programmbezogen const unsigned long SHORT_PRESS
in „Umschreiben von ATmega328 auf ATtiny“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SchemaV4.pdf
K0 0 2 C 1 1 1 1 C * R1 * 180R A R R R R4 5 J4 A +12V 1 2 L1 2 3 J5 3 VCC VCC 4 U2 DCDC 3.3V +3.3V 5 TRST GND 6 F 6.4uH 1 +Vin C C +Vout 11 7 TDI GND 8 0 24 +Vin N N +Vout 14 Connector PCB - Test Point LED1 9 TMS GND 10 4 TCLK GND 12 10 11 RTCK
in „Probleme mit LPC2103 (NXP)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Serial_Test_4.ino
// // Serial-Test 01.10.2025 // void setup() { Serial.begin(19200); delay(1000); Serial.println("Test serielle Übertragung"); } bool rxStart = 0; bool data = 1; int contBytes = 0; int bufferMax = 0; int serData = 0; int count = 0; int bytes = 0; long timeout = 0; long baud = 0; unsigned long startMicros = 0; unsigned long contMicros = 0; unsigned long totalMicros = 0; unsigned long duration = 0; void loop() { while (Serial.available() || timeout) { if (!rxStart) { startMicros = micros(); } if (Serial.available()) { timeout = 10000; } byte y = Serial.available(); if (y > bufferMax) { bufferMax = y;
in „Arduino Uno R4: Besonderheiten und Abhilfen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
6800_V4.py
#!/usr/bin/env python3 class MC6800: def __init__(self, memory_size=0xFFFF): # 8-bit registers self.A = 0 # Accumulator A self.B = 0 # Accumulator B self.CCR = 0b00000000 # Condition Code Register (flags) # 16-bit registers self.X = 0 # Index register X self.PC = 0 # Program counter self.SP = 0xFF # Stack pointer (default 0xFF) # Memory (64KB) self.memory = [0] * memory_size def load_program(self, program, start_address=0x0000): for i, byte in enumerate(program): self.memory[start_address + i] = byte self.PC = start_address def fetch(self): # Fetches the next byte of data from memory byte = self.memory
in „Neues aus der KI“ · Offtopic ·
-
Datei
D4_beispiel.txt
&%1 T16 R0 A L45.209 A (20.0MM SCHRUPP) T17 R0 A L23.718 A (15 GRAD) P1 =-25.0 P2 =850.0 % (&%1/000000"100 K-SITZ40D20.0+15GRAD) N1 G90 G64 N5 T16 G17 N10 S+1600 F1600 M3 N15 M8 N20 G1 Z100.0 N25 G1 X0.0 Y0.0 N30 G1 X= P1 F400 N35 G1 Z-20.0 N40 G1 Y-7.0 ... ... ... N185 G1 Y7.84 N190 G1 X= P1 N195 G1 Z100 F2000 N200 G1 X0 Y0 N205 M30 ? 0000
in „FreeCAD - CAM PostProcessor für Deckel FP3 mit Contour 3 bzw Dialog 4 Steuerung“ · Mechanik, Gehäuse, Werkzeug ·
-
Datei
nex_4_pwm.vhd
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use ieee.numeric_std.all; entity nex_4_pwm is Port( clk : in std_logic; -- clock led : out std_logic_vector(15 downto 0); sw : in std_logic_vector(15 downto 0); RGB1_Red : out std_logic; RGB1_Green : out std_logic; RGB1_Blue : out std_logic ); end nex_4_pwm; architecture Behavioral of nex_4_pwm is signal pwm_zaehler: unsigned(15 downto 0):=(others => '0'); begin led <= sw; RGB1_Red <= '1' when pwm_zaehler <= unsigned(sw); RGB1_Green <= '1' when pwm_zaehler
-
Datei
4BilderEinWort.cpp
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #define MAXLEN 13 FILE *dict; int words = 0; char* cleanString(char string[]){ char temp [MAXLEN]; int i = 0; for(i = 0; string[i] != '\0'; i = i + 1){ if(string[i] != '\n' && string[i] != '\r'){ temp[i] = toupper(string[i]); } } temp[i] = '\0'; return temp; } bool checkForLetters(const char letters[], const char string[]){ int i = 0; int j = 0; //Prüfe ob jeder Buchstabe in string auch in letter enthalten ist for(i = 0; i <= strlen(string); i = i + 1){ if(strchr(letters, string[i]) == NULL){ return false; } } return
-
Datei
grab4HA.py
[2]="st4" temperature3_name[3]="000 000" temperature3_name[4]="xxx" #oder 000 003 temperature3_name[10]="Stoe_str" sensors3 = [1, 2, 4] sensorsx = [1] temperature4_name=["unknown"]*10 temperature4_name[0]="072 004 in bereitschaft" temperature4_name[1]="0" temperature4_name[2]="0" temperature4_name[3]="0" temperature4_name[4]="0" temperature5_name=["unknown"]*10 temperature5_name[0]="072 000 in bereitschaft" temperature5_name[1]="0" temperature5
-
Datei
4_Relais_MCUmode.txt
from * Alexa-powered devices like the Amazon Echo or the Dot. * * 7 devices to be discovered: * * 4 Simple WeMo devices * ==> Light1 ==> Relay 1 ==> NodeMCU D5 * ==> Light2 ==> Relay 3 ==> NodeMCU D7 * ==> Outlet1 ==> Relay 2 ==> NodeMCU D6 * ==> Outlet2 ==> Relay 4 ==> NodeMCU D8 * * 3 Groups of devices
in „MCU Mode Programm mit Taster steuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
CIC4Stage.vhd
0); oNewValue : out std_logic; oCIC : out std_logic_vector (BIT_WIDTH-1 downto 0) ); end entity CIC4Stage; architecture Behaviour of CIC4Stage is type CICStateType is (idle, get_value,fill, int1, int2, int3, int4); type CombStateType is (idle, get_integrator,calc1,calc2,calc3,calc4,output); type IntCombArray
-
Datei
Pr4_Potentionmeter.txt
unsigned char digit; unsigned char AnalogWert; unsigned char WertASCII[5]; /*WertASCII[1]='.'; WertASCII[4]='V'; WertASCII[5]='\n';*/ while(1) { int digit = get_ADCvalue(); AnalogWert = (digit*500)/1023; WertASCII[4]= ' '; WertASCII[3]= 'V'; WertASCII[2]= (AnalogWert%10)+48; AnalogWert = AnalogWert/10; WertASCII
in „Spannungswerte als ASCII in serielle Monitor darstellen, UART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
nrf24_4.txt
:68:70:53:54:53:81:BA [2022-03-12 09:18:29.326] 3 11 68:43:51:70:01 15:70:51:43:68:70:53:54:53:FF:C4 [2022-03-12 09:18:29.338] 3 11 68:43:51:70:01 15:70:51:43:68:70:53:54:53:FF:C4 [2022-03-12 09:18:29.347] 3 11 68:43:51:70:01 15:70:51:43:68:70:53:54:53:FF:C4 [2022-03-12 09:18:34.534] 61 11 90:65:23:
in „Wechselrichter Hoymiles HM-xxxx 2,4 GhZ Nordic Protokoll?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
core_cm4.h
/**************************************************************************//** * @file core_cm4.h * @brief CMSIS Cortex-M4 Core Peripheral Access Layer Header File * @version V4.30 * @date 20. October 2015 ******************************************************************************/ /* Copyright
in „STM32F3 FPU Aktivieren/Benutzen in STM32CubeIDE“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
digit4_demo.c
fuehrender Nullen digit4_setdez(12345, 1); _delay_ms(3); seg7_4digit[7]= d4char_d; _delay_ms(2500); digit4_clr(); // Bsp. fuer Anzeige von 15.0 Grad Celcius digit4_setdez8bit(15,4); digit4_setdp(4); _delay_ms(3); seg7_4digit[3]= ~led7sbmp[0]; seg7_4digit[2]= d4char_oo; seg7_4digit[1]= d4char_C; _delay_ms(2500); digit4_clr(); // Ausgabe blinkender "Hallo"-Text for (i= 0; i< 3; i++) { digit4_puts(&hallo_str[0],6); _delay_ms(500); digit4_clr(); _delay_ms
in „7-Segment Anzeige“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Wii_Nunchuk_4.asm
; .include "Header_Wii_Nunchuk.h" ;Label und Werte Zuweisungen .include "Hardware_Wii_Nunchuk.h" ;Hardware Label Zuweisungen ; ;Programmstart nach RESET ( Interrupt Vektoren Tabelle ) ; .CSEG ;Was ab hier folgt kommt in den FLASH-Speicher .ORG $0000 ;Programm beginnt an der FLASH-Adresse 0x0000 rjmp _reset ;RESET-Vector .include "IRQm8_Wii_Nunchuk.inc";Restliche Interrupt Vektortabelle .ORG INT_VECTORS_SIZE ;Programmadresse nach den ganzen IRQ-Vektoren ; ;IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII ;IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII
in „AVR8ASM TWI Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Main_TWI_4.asm
entprellt unbetaetigt .equ key.actuated = 3 ;Taster entprellt betaetigt ;.equ = 4 ; ;.equ = 5 ; ;.equ = 6 ; ;.equ = 7 ; ; ;.include "Hardware.inc" ;Hardware Label Zuweisungen ;******************************************************************************* ;* Hardware Zuweisungen ;
in „AVR8ASM TWI Interrupt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
4Bit_0108.asm
*** ;* Initialisierungstest fuer LCD-Anzeige ;* mit KS0066U-(ST7066)-kompatiblem Controllerchip ;* 4-Bit-Modus ;* Daten-/Steuerbits auf PORTB, Bit D4 bis D7 ;* Enableimpuls auf PORTD, Bit D0; (bzw. PORTB, hier ausgeremt) ;* RS auf PORTD, Bit D1; (bzw. PORTB, hier ausgeremt) ;* R/WQuer auf Masse fest
in „OLED Display W204-XLG von electronic Assembly“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
count4bit.vhd
std_logic_vector (1 to 8); D9, D11: out std_logic; C: out std_logic ); end entity count4bit; architecture behavior of count4bit is signal ClkLeft : std_logic := '0'; signal ModeLeft, ModeRight: std_logic_vector (1 downto 0); signal count4: std_logic_vector(3 downto 0) := "0000"; signal dir1
-
Datei
lcd_4bit.c
LATDbits.LATD2=1; // RS auf High setzen LCD_Ausgabe(ucDaten); // High-Nibble senden LCD_Ausgabe(ucDaten<<4 ); // Low-Nibble senden, deshalb um 4 Bits links schieben __delay_us(45); // Laut LCD Datenblatt min. 40us Bearbeitungszeit } /* Ausgabe von Kommandos/Befehle an das Display Funktionsübergabe: unsigned
in „Problem mit VS1053“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_4bit.h
/* * File: i2c_lcd_4bit.h * Author: Sasch * * Created on December 25, 2018, 3:20 PM */ #ifndef I2C_LCD_4BIT_H #define I2C_LCD_4BIT_H #ifdef __cplusplus extern "C" { #endif // Portbelegung des LCD-Display`s // BTG Board Display
in „Problem mit VS1053“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
WischerN-4.txt
'********************************************* ' Scheiben wischer N° 4 '********************************************* $regfile = "2313def.dat" $crystal = 4000000 ' unkritisch $hwstack = 40 $swstack = 16 $framesize = 32 Declare Sub Rut_alt() '* Wechsel Declare Sub Rut_1(
in „Scheibenwischer mit Bascom“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
double64-4.diff
avr4 avr5 avr51 avr6 avrxmega2 avrxmega3 avrxmega4 avrxmega5 avrxmega6 avrxmega7 avrtiny tiny-stack short-calls - -MULTILIB_REQUIRED = \ - msp8 \ - mmcu=avr25 \ - mmcu=avr25/msp8 \ - mmcu=avr3 \ - mmcu=avr31 \ - mmcu=avr35 \ - mmcu=avr4 \ - mmcu=avr5 \ - mmcu=avr51 \ - mmcu=avr6 \ - mmcu=avrxmega2 \ - mmcu=avrxmega3/mshort-calls \ - mmcu=avrxmega3 \ - mmcu=avrxmega4 \ - mmcu=avrxmega5 \ - mmcu=avrxmega6 \ - mmcu=avrxmega7 \ - mmcu=avrtiny
in „64 Bit float Emulator in C, IEEE754 compatibel“ · Projekte & Code ·
-
Bild
Screenshot von Windows Geräte-Manager USB-Informationen
USB Device Tree Viewer V3.8.6 USB Port? : : :
in „Arduino UNO R4 in Win10 nicht erkannt“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
WordClock4.c
/* * WordClock4.c * * Created: 24.06.2014 22:38:59 * Author: Gockel * * Version 0.4 * noch zu Implementieren ADC Auswertung/ Faden * Änderung von Zeilenausgabe zu Spaltenausgabe weil Mosfeteinsatz * Features Verbessertes
in „Atmega16 PortD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
COM_4_Paul.txt
Beginne Messung... Gemessene Pulse in 10 Millisekunden: 36 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 35 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 36 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 35 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 35 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 36 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 36 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 35 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 35 Beginne Messung... Gemessene Pulse in 10 Millisekunden: 36 Beginne Messung
-
Datei
lorenzRK4.m
function lorenzRK4() %%%%% % Set Lorenz % parameters %%%%% a=10.0; b=8.0/3.0; c=28.0; %%%%%%%%%%% % Set initial condition, step length % and number of steps %%%%%%%%%%% y1(1)=0; y2(1)=1.000; y3(1)=0.0; h=0.01; xM=40; h2
-
Datei
absolute_beginner_4.c
Auslieferungszustand lassen! Ein- und Ausgänge PORT B 0 (14) = PORT B 1 (15) = PORT B 2 (16) = PORT B 3 (17) = PORT B 4 (18) = PORT B 5 (19) = PORT B 6 ( 9) = PORT B 7 (10) = PORT C 0 (23) = PORT C 1 (24) = PORT C 2 (25) = PORT C 3 (26) = PORT C 4 (27) = PORT C 5 (28) = PORT D 0 ( 2) = Anschluss 11 am LCD = DB4 PORT D 1 ( 3) = Anschluss 12 am LCD = DB5 PORT D 2 ( 4) = Anschluss 13 am LCD = DB6 PORT D 3 ( 5) = Anschluss 14 am LCD = DB7 PORT D 4 ( 6) = Anschluss 4 am LCD = RS PORT D 5 (11) = Anschluss 6 am LCD = E Enable PORT D 6 (12) = PORT D 7 (13) = */ // Main.c
in „[[C] LCD die 10000ste“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
4_testv24.asm
= CPUFrequenz /2 / 4800bd * 16 ; = 40 ACIA teilt nochmals durch 16 ; ; Modusregister A9h ; ; 7 6 5 4 3 2 1 0 ; I I I I I I I I ; I I I I I I I 0 = Relais 0 ; I I I I I I 0 x = Relais 1 ; 0 0 0 0 0 1 x x = Modus 2 20mA ; 0 1 0 0 1 0 x x = Modus 3 V24 ; x x 0 1 0 0 x x = Modus 4 DTR ; 1 0 1 0 0 0 x x
in „Suche MOPPEL Projekt in Heft oder .PDF“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
master-slave4.pdf
R GND GND GND C GND R7 C 51k 1 +5V 3 VO VI 1 + C5V 6 C +5V 0 R VCC 3 V IC6A R 51k V C 1 78IC5 10µ 4 1 27k 1 C+5V 2 R3 Q1 V GND 11MC33079P BS250 10k 1 10k 5 GND R 1 4 R 0 K1 GND 3 4 1JS-M1F-12V-5 GND D 1 NO NC MC3307P haben die gleiche beschaltung wie TS914 2 K1 C GND GND
in „Master-Slave-Schaltung, OpAmp stirbt ständig“ · Analoge Elektronik und Schaltungstechnik ·
-
PDF
main4_1.pdf
V + X38 + C15 1 2 6 1uF - 10uF 3 7 4 8 5 5 9 + GND GND + IC2 + 1 16 GND u C 3 14 + 1 u 1 4 13 - 1 C 5 12 u 1 u - 6 11 RX 1 C 1 u 7 10 TX - 1uF - 10uF 1 8 9 u 1 C14 + GND
in „Bitte um kurze Schaltungsansicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Test_Graphik_4.c
/* * Test_Graphik_4.c * * Created: 22.03.2015 13:15:43 * Author: AS */ /* * Copyright: Fabian Maximilian Thiele mailto:me@apetech.de * Author: Fabian Maximilian Thiele * Remarks: this Copyright must be included * known
in „Display mit Controller KS0108 - Welche Datein?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
danceswithferrets4n.ino
kPin_A0, (addr & 1)?HIGH:LOW); digitalWrite(kPin_A1, (addr & 2)?HIGH:LOW); digitalWrite(kPin_A2, (addr & 4)?HIGH:LOW); digitalWrite(kPin_A3, (addr & 8)?HIGH:LOW); digitalWrite(kPin_A4, (addr & 16)?HIGH:LOW); digitalWrite(kPin_A5, (addr & 32)?HIGH:LOW); digitalWrite(kPin_A6, (addr & 64)?HIGH:LOW); digitalWrite
in „Altes EPROM auslesen Intersil 6654A (2xCE) mit Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
UNO_R4.txt
dfu-util 0.11-arduino4 Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc. Copyright 2010-2021 Tormod Volden and Stefan Schmidt This program is Free Software and has ABSOLUTELY NO WARRANTY Please report bugs
in „Arduino UNO R4 in Win10 nicht erkannt“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ZeitmesserV4.ino
#include "heltec.h" #include <WiFi.h> #define DISPLAY_WIDTH 128 #define DISPLAY_HEIGHT 64 #define IMPULSE_DURATION 1000 // Dauer des Impulses in Millisekunden (1000ms) #define IMPULSE_OUTPUT 2 // GPIO-Pin für den Impuls #define POTI_PIN 1 // GPIO-Pin für das Poti #define MEASUREMENT_DELAY 500 // Verzögerung für die Messung von min und max RSSI in Millisekunden #define RESET_DELAY 500 // Verzögerung für das Zurücksetzen der minimalen und maximalen RSSI-Werte const char* ssid = "Mugen MBX8"; const char* password = "12345678"; int rssiValues[DISPLAY_WIDTH] = {0}; // Array für RSSI-Werte int currentIndex
in „Rundenzeitmesser auf Basis RSSI für RC Fernsteuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sql_test4.php
<!DOCTYPE html> <html lang="de-de"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart(json) { var werte = new google.visualization.DataTable(json); var style = { }; var chart = new google.visualization.LineChart(document.getElementById("linechart")); chart.draw(werte, style); setInterval(function() { $.ajax({ url: './chartarray.php
in „Werte aus MySQL für Google Charts werden nicht aktualisiert“ · Softwareentwicklung ·
-
Datei
komparator_4_bit.vhd
LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; entity KOMPARATOR_4_BIT is port ( X : in std_logic_vector(3 downto 0); Y : in std_logic_vector(3 downto 0); GROESSER : out std_logic; KLEINER : out std_logic; GLEICH : out std_logic ); end entity KOMPARATOR_4_BIT ; architecture