-
Datei
Kurz_und_knapp_copy_20251111A.ino
// Dateiname: Kurz_und_knapp_Jahr_Monat_Tag_lfd Buchstabe // // Arduino UNO SMD R3 und QHV5160 Version 1.0 E (TMC5160) über Spi-Schnittstelle // Letzte Änderung: 11.11.25 22:25 Uhr // Strom fliesst; keine Drehzahl //#include <arduino.h> #include <SPI.h> // Konstanten definieren // SPI Pins #define sck 13 //SPI clock #define mosi 11 //master transmit out slave receive input #define miso 12 //master receive input slave transmit out const int PIN_CS = 10; // Chip Select const int PIN_EN = 9; // Drive-Enable Lowaktiv // Variablen definieren uint32_t result; // Funktion: 32-Bit Register schreiben void
in „Arduino Uno mit QHV5160 über SPI keine Drehzahl“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MSP3400_ATMEGA32_ADC_2.ino
#include <IRremote.hpp> #include <Wire.h> // --------------------------------------------------------- // PIN‑MAPPING (ELECTRONICFOX 2026(c), PORT‑BASIERT, ATmega32) // --------------------------------------------------------- // IR‑Empfänger: PB2 // Tasten: PB0, PD3, PD4, PD5 // Display‑Bus: CLK=PD2, DLEN=PB6, DATA=PB1 // Test/Power: TEST=PB5 // SC‑Out: SC=PD6 // Statusports: LED1=PC3=SUCHLAUF, LED2=PB4=MEMORY // PWM-DAC: PB3 (Timer0), PD7 (Timer2) // ADC: ADC2 (PA2), ADC3 (PA3) // --------------------------------------------------------- #define IR_RECEIVE_PIN PIN_PB2 // PB2 IR-Eingang // Display
in „Zeigt her eure Kunstwerke (ab 2023)“ · Projekte & Code ·
-
Datei
MSP3400_ATMEGA32_ADC_2.ino
#include <IRremote.hpp> #include <Wire.h> // --------------------------------------------------------- // PIN‑MAPPING (ELECTRONICFOX 2026(c), PORT‑BASIERT, ATmega32) // --------------------------------------------------------- // IR‑Empfänger: PB2 // Tasten: PB0, PD3, PD4, PD5 // Display‑Bus: CLK=PD2, DLEN=PB6, DATA=PB1 // Test/Power: TEST=PB5 // SC‑Out: SC=PD6 // Statusports: LED1=PC3=SUCHLAUF, LED2=PB4=MEMORY // PWM-DAC: PB3 (Timer0), PD7 (Timer2) // ADC: ADC2 (PA2), ADC3 (PA3) // --------------------------------------------------------- #define IR_RECEIVE_PIN PIN_PB2 // PB2 IR-Eingang // Display
in „AUDIOCONTROLLER MSP3400C einfach mit ATMEGA32 ansteuern“ · Projekte & Code ·
-
Datei
This_example_code_is_in_the_public.ino
This example code is in the public domain. https://docs.arduino.cc/built-in-examples/basics/Blink/ */ // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(50); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(400); // wait for a second }
in „Spannung an Ausgangs-Pin Arduino UNO“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ESP32_32E_Tasten_ok.ino
/* 2.8" ESP32-32E ILI9341 20-Tasten Touch Keyboard 16 normale Tasten + 4 Sondertasten Touch: XPT2046 / TFT_Touch Ausgabe: Display + Serial Basis: funktionierender Hersteller-Demo-Code */ #include <Arduino.h> #include "TFT_eSPI.h" #include <TFT_Touch.h> // ------------------------------------------------------------ // TOUCH-PINS – aus der funktionierenden Hersteller-Demo // ------------------------------------------------------------ #define RTP_DOUT 39 #define RTP_DIN 32 #define RTP_SCK 25 #define RTP_CS 33 #define RTP_IRQ 36 // ------------------------------------------------------------ //
-
Datei
ESP32_BMP280_espNowDeepSleep3.ino
/* ESP32 BMP280 sender with DEEP SLEEP (3 seconds) BMP280 and BME280 sensor can be used: Enable it with the #define in the code You have also to adapt the receiver MAC in the code. external libraries: Temperature and Pressure Sensor https://github.com/mahfuz195/BMP280-arduino-library or Temperature, Pressure and Humidty Sensor https://github.com/hasenradball/Bosch_BME280_Arduino.git 2026-01-30 mchris */ #include "BMP280.h" #include "Wire.h" #include <esp_now.h> #include <WiFi.h> //#define USE_BMP280 #define USE_BME280 #ifdef USE_BME280 #include <Bosch_BME280_Arduino.h> // global instance BME::
-
Datei
ESP32_BMP280_espNowDeepSleep4.ino
/* ESP32 BMP280 sender with DEEP SLEEP (3 seconds) BMP280 and BME280 sensor can be used: Enable it with the #define in the code You have also to adapt the receiver MAC in the code. external libraries: Temperature and Pressure Sensor https://github.com/mahfuz195/BMP280-arduino-library or Temperature, Pressure and Humidty Sensor https://github.com/hasenradball/Bosch_BME280_Arduino.git 2026-01-30 mchris V3: first usable version 2026-01-31 mchris V4: Battery measurement added */ #include "BMP280.h" #include "Wire.h" #include <esp_now.h> #include <WiFi.h> #include "esp_adc_cal.h" //#define USE_BMP280
-
Datei
Uno_PWM_poti_ta_v_R_E_A___-_Mon.ino
// ================================ // Motorsteuerung mit // Poti + Taster + Serieller Steuerung // PWM: Pin 5 // Richtung: Pin 4 // Poti: A1 // Richtungstaster: Pin 6 // Ein/Aus: Pin 7 // Geschwindigkeit + : Pin 8 // Geschwindigkeit - : Pin 9 // ================================ const int pwmPin = 5; const int dirPin = 4; const int potiPin = A1; const int richtungsTaster = 6; const int einAusTaster = 7; const int plusTaster = 8; const int minusTaster = 9; bool motorEin = false; bool richtung = true; // true = Vorwärts bool altRichtung = HIGH; bool altEinAus = HIGH; bool potiModus = true; int pwm
-
PDF
CY7C65642-28LTXC__4x_HUB__Infineon.pdf
IssueaPort-Resetfromhost recognized properly ifa disconnect followed by a CY7C65642 Rev.** USB applicationor driver iNo fix connect eventhappen theUSBdevicecommands planned during hub suspend STALLed 1.USBdeviceisnotrecognizedproperlyifadisconnectfollowedbyaconnecteventhappenduringhubsuspend •Problemdefinition EZ-USB
in „USB-Hub funktioniert nicht.“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
ADC0801_05.pdf
As shown, the risers are ideal and have A perfect A/D transfer characteristic (staircase waveform) ino width. Correct digital output codes will be provided for a shown in Figure 1. The horizontal scale is analog input voltrange of analog input voltages that ext2nLSB from the age and the particular points
in „Verständnisfrage zum ADC080x (VIN-MIN/DC-Offset)“ · Analoge Elektronik und Schaltungstechnik ·