-
Datei
main.c
printbyte(data >> 8); printbyte(data); } #endif static void timer1_init (void) { #if defined (__AVR_ATtiny45__) || defined (__AVR_ATtiny85__) // ATtiny45 / ATtiny85: #if F_CPU >= 16000000L OCR1C = (F_CPU / F_INTERRUPTS / 8) - 1; // compare value: 1/15000 of CPU frequency, presc = 8 TCCR1 = (1 << CTC1) | (1 << CS12); // switch CTC Mode on, set prescaler to 8 #else OCR1C = (F_CPU / F_INTERRUPTS / 4) - 1; // compare value: 1/15000 of CPU frequency, presc = 4 TCCR1 = (1 << CTC1) | (1 << CS11) | (1 << CS10); // switch
in „IRMP-Anwendung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
USI_TWI_Master.h
* * Supported devices : All device with USI module can be used. * The example is written for the ATtiny2313 * * AppNote : AVR310 - Using the USI module as a TWI Master * * This is modified to just do I2C communication on ATtiny2313 running at * 1MHz. Fast mode is probably possible, but would need a faster clock * and has not been tested. * * 12/15/08 Added declaration of USI_TWI_Start_Memory_Read -jkl ****************************************************************************/ //********** Defines **********// // Defines controlling timing
in „USI TWI ATtiny84a Master Daten aus Sensor auslesen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
doc8005.pdf
AVR442: PC Fan Control using ATtiny13 Features 8-bit • Variable speed based on: Microcontrollers - Temperature sensor (NTC). - External PWM input. • Stall detection with alarm output. • Implementation in C code to ease modification.
in „BLCD Motor via PWM steuern“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AVR442_PC_Fan_Control_using_ATtiny13.pdf
AVR442: PC Fan Control using ATtiny13 Features 8-bit • Variable speed based on: Microcontrollers - Temperature sensor (NTC). - External PWM input. • Stall detection with alarm output. • Implementation in C code to ease modification.
-
Datei
RFID-Reader-Modul.c
/* / Projektname : RFID-Reader-Modul / Dateiname : RFID-Reader-Modul.c / Version : 1.0.0 - ATtiny2313 / Datum : 28.12.2013 / Compiler : WinAVR 20100110 libc 1_7_1 / Autor : Johannes Kretzmann / Copyright : johannes.kretzmann@projektsammlung.de / www.projektsammlung.de / / / / Mikrocontroller: ATtiny2313
in „Attiny2313 eeprom Fragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsndconfig.h
Copyright (c) 2010-2011 Frank Meyer - frank(at)fli4l.de * * $Id: irsndconfig.h,v 1.43 2012/10/26 08:12:17 fm Exp $ * * ATMEGA88 @ 8 MHz * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation
in „IR Signal falsch“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tiny.txt
2*(x-1) ; Schaltung : SPI: MOSI, SCK - ATMega8 zu ATTinys lt. Datenblatt (ohne MISO) ; ATMega8 - ATTiny2313 ; C1 - B0 ; C2 - B0 ; C3 - B1 ; ATtiny2313 auf Steckboard verbunden mit ATMega8 auf MYAVR-Board ; verbunden über SPI, ATMega als Master, ATTiny als Slave ; ATtiny mit Servos an D1 bis D6 ; Verbindung Steckboard - MYAVR-Board: +,-,MOSI, SCK, Software-SS, Bereit (2313 Pins 20,10,17,19,12,13) ;------------------------------------------------------------------------------------------------------------------------------ ; Prozessor : ATtiny2313 ; Takt : 1.000.000 Hz ; Sprache : Assembler
in „SPI Kopplung von ATmega8 und ATtiny 2313“ · Projekte & Code ·
-
PDF
Minimalistischer_GPS_Logger.pdf
allerdings nur von der Größe her – 16 mm x 16 mm x 6,45mm. Das Gehäuse mit integrierter Antenne hat 12-pin 2.54mm pitch SMT Anschlüsse, die entweder direkt ohne Draht auf typische durchkontaktierte Experimental-Leiterplatten mit gleichem Rastermaß gelötet oder mit angelöteten Pfostensteckern in eine entsprechende
in „Minimalistischer GPS-Logger ohne µC und SD-Karte“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
V1.5_Slave_6.12..txt
2*(x-1) ; Schaltung : SPI: MOSI, SCK - ATMega8 zu ATTinys lt. Datenblatt (ohne MISO) ; ATMega8 - ATTiny2313 ; C1 - B0 (Slave 1) ; C2 - B0 (Slave 2) ; C3 - B1 ; ATtiny2313 auf Steckboard verbunden mit ATMega8 auf MYAVR-Board ; verbunden über SPI, ATMega als Master, ATTinys als Slave ; ATtiny mit Servos
in „SPI Kopplung von ATmega8 und ATtiny 2313“ · Projekte & Code ·
-
PDF
Inkontinenzsensor_Beschreibung.pdf
Daten • Umgebaute handelsübliche Nachttischlampe „GLOBO 54341-1T“ mit zusätzlichem externen Netzteil 12V/3A und Inkontinenz-Sensormatte (Eigenbau). • Grundlage für die Inkontinenz-Sensormatte ist ein Matratzenschoner „Matress Protector“ von blumtal (Blumtal 2er Set Wasserdichter Matratzenschoner 90 x 200
-
Datei
Values.txt
250 13 22uF 13 16Mhz 13 10 13 0.1u 13 0 12 TLC5940-PWPOTV 12 SR104 12 IRFP460 12 IRF540 12 HD-H103 12 BL 12 BD140 12 AMP 12 7-SEG_SA10-21 12 74LS08N 12 47µ 12 4052D 12 35701331 12 27pF 12 27k 12 2,2n 12 22µ 12 1N4446 12 1,8k 12 1.2 12 10 µF 11
in „[KiCad] Bibliotheksaufbau - Konzeptideen gesucht“ · Platinen ·
-
Datei
rainbow.c
------------------------------------------------ */ void timer1_init (void) { #if defined (__AVR_ATtiny45__) || defined (__AVR_ATtiny85__) // ATtiny45 / ATtiny85: #if F_CPU >= 16000000L OCR1C = (F_CPU / F_INTERRUPTS / 8) - 1; // compare value: 1/15000 of CPU frequency, presc = 8 TCCR1 = (1 << CTC1) | (1 << CS12); // switch CTC Mode on, set prescaler to 8 #else OCR1C = (F_CPU / F_INTERRUPTS / 4) - 1; // compare value: 1/15000 of CPU frequency, presc = 4 TCCR1 = (1 << CTC1) | (1 << CS11) | (1 << CS10); // switch
in „Lightweight WS2811/WS2812 Library“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
attiny2313.c
/******************************************************* Projekt: DP Lüftersteuerung Version : ATTiny2313A - 1 Erstellt: 22.10.2016 Letze Änderung: 24.10.2016 Chip: Attiny2313A mit internen 8.0 MHz *******************************************************/ /// Header-Dateien /// #include <io.h> #include
in „Attiny2313A - Timer Interrupt wird nicht aufgerufen (C)“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Inkontinenzsensor_Beschreibung.pdf
Daten • Umgebaute handelsübliche Nachttischlampe „GLOBO 54341-1T“ mit zusätzlichem externen Netzteil 12V (Schutzklasse II) und Inkontinenz-Sensormatte (Eigenbau). • Grundlage für die Inkontinenz-Sensormatte ist ein Matratzenschoner „Matress Protector“ von blumtal (Blumtal 2er Set Wasserdichter Matratzenschoner
-
Datei
sleep.h
lines of table 13 with the wrong SM0/SM1 values. */ #define SLEEP_MODE_IDLE 0 #if !defined(__AVR_ATtiny2313__) && !defined(__AVR_AT94K__) /* no ADC in ATtiny2313, SM0 is alternative powerdown mode */ /* no ADC in AT94K, setting SM0 only is reserved */ # define SLEEP_MODE_ADC _BV(SM0) #endif /* !defined(__AVR_ATtiny2313__) && !defined(__AVR_AT94K__) */ #define SLEEP_MODE_PWR_DOWN _BV(SM1) #if defined(__AVR_ATtiny2313__) || defined(__AVR_ATtiny26__) /* tiny2313 and tiny26 have standby rather than powersave */ #
in „Power Down Mode über Taster“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
fuse.c
programmable attinys * . reset hi-low fuses to factory default on target devices * . layout to drop-on attiny13, attiny25/45/85 8 pin devices targets * . attiny24/44/84 targets needs additional breadboard and jumper wires * . standalone operations, fuses show on 7 segment display * * . project fuse setting
in „Attiny85 neu verfust?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
fuse.c
programmable attinys * . reset hi-low fuses to factory default on target devices * . layout to drop-on attiny13, attiny25/45/85 8 pin devices targets * . attiny24/44/84 targets needs additional breadboard and jumper wires * . standalone operations, fuses show on 7 segment display * * . project fuse setting
in „Attiny85 neu verfust?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#ifndef __AVR_ATtiny2313A__ #define __AVR_ATtiny2313A__ #endif #include <avr/io.h> #include <avr/interrupt.h> #include <avr/sleep.h> #include <avr/wdt.h> //#define F_CPU 8000000UL // ATtiny2312A internal clock (CKDIV8
in „Ablufthaubensteuerung, Schaltung entstören“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
SermultiChip.pdf
Pinbelegung A HV 4 3 2 F 1 B G E C BAT D Backplane 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 Pinbelegung am Chip D3 E2 F2 A2 B2 C2 D2 E1 G1 F1 A1 16 17 19 20 21 22 23 24 25 26 27 B3 15 28 B1 F3 14 29 C1 E3 13 30 D1 B/C4 12 + G4 11 Back1,2,3 G3 9 A3 8 C3 7 G2
in „Multimeter mit serieller Schnittstelle für unter 10€“ · Projekte & Code ·
-
PDF
Arduino.pdf
AVR_ATmega2560__) ADMUX = _BV(REFS0) | _BV(MUX4) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1); #elif defined (__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__) ADMUX = _BV(MUX5) | _BV(MUX0); #elif defined (__AVR_ATtiny25__) || defined(__AVR_ATtiny45__) || defined(__AVR_ATtiny85__) ADMUX = _BV(
in „Aref Spannung, was ist besser?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Fernbedienung_FB9_Tiny4313.c
irsnd.h" #ifndef F_CPU # error F_CPU unknown #endif void timer1_init (void) { #if defined (__AVR_ATtiny45__) || defined (__AVR_ATtiny85__) // ATtiny45 / ATtiny85: OCR1C = (F_CPU / F_INTERRUPTS / 4) - 1; // compare value: 1/15000 of CPU frequency, presc = 4 TCCR1 = (1 << CTC1) | (1 << CS11) | (1 << CS10
in „IR Fernbedienung mit IRSND“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
iotnx61.h
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* $Id: iotnx61.h,v 1.6 2007/12/12 14:00:49 arcanum Exp $ */ /* avr/iotnx61.h - definitions for ATtiny261, ATtiny461 and ATtiny861 */ /* This file should only be included from <avr/io.h>, never directly. */ #ifndef _AVR_IO_H_ # error
in „Fehler in ATtiny461 Definitions-Header“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dude5.4arduino_avr910.txt
0x52 = (unknown) Device code: 0x53 = (unknown) Device code: 0x54 = (unknown) Device code: 0x55 = ATtiny12 Device code: 0x56 = ATtiny15 Device code: 0x57 = (unknown) Device code: 0x58 = (unknown) Device code: 0x59 = (unknown) Device code: 0x5a = (unknown) Device code: 0x5b = (unknown) Device code: 0x5c = (unknown) Device code: 0x5d = (unknown) Device code: 0x5e = ATtiny2313 Device code: 0x5f = (unknown) Device code: 0x60 = ATMEGA161 Device code: 0x61 = (unknown) Device code: 0x62 = (unknown) Device code: 0x63 = ATMEGA162 Device code: 0x64 = ATMEGA163 Device code:
in „avrdude - Probleme unter Mac OS X 10.7 (Lion)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dude5.6_avr910.txt
0x52 = (unknown) Device code: 0x53 = (unknown) Device code: 0x54 = (unknown) Device code: 0x55 = ATtiny12 Device code: 0x56 = ATtiny15 Device code: 0x57 = (unknown) Device code: 0x58 = (unknown) Device code: 0x59 = (unknown) Device code: 0x5a = (unknown) Device code: 0x5b = (unknown) Device code: 0x5c = (unknown) Device code: 0x5d = (unknown) Device code: 0x5e = ATtiny2313 Device code: 0x5f = (unknown) Device code: 0x60 = ATMEGA161 Device code: 0x61 = (unknown) Device code: 0x62 = (unknown) Device code: 0x63 = ATMEGA162 Device code: 0x64 = ATMEGA163 Device code:
in „avrdude - Probleme unter Mac OS X 10.7 (Lion)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dude54arduino.txt
0x52 = (unknown) Device code: 0x53 = (unknown) Device code: 0x54 = (unknown) Device code: 0x55 = ATtiny12 Device code: 0x56 = ATtiny15 Device code: 0x57 = (unknown) Device code: 0x58 = (unknown) Device code: 0x59 = (unknown) Device code: 0x5a = (unknown) Device code: 0x5b = (unknown) Device code: 0x5c = (unknown) Device code: 0x5d = (unknown) Device code: 0x5e = ATtiny2313 Device code: 0x5f = (unknown) Device code: 0x60 = ATMEGA161 Device code: 0x61 = (unknown) Device code: 0x62 = (unknown) Device code: 0x63 = ATMEGA162 Device code: 0x64 = ATMEGA163 Device code:
in „avrdude - Probleme unter Mac OS X 10.7 (Lion)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
neighboorhod search. * This algorithm may also be used to calibrate the RC oscillator directly to * 12 MHz (no PLL involved, can therefore be used on almost ALL AVRs), but this * is wide outside the spec for the OSCCAL value and the required precision for * the 12 MHz clock! Use the RC oscillator calibrated
in „Problem mit libUSB - wie Gerät ansprechen?“ · Softwareentwicklung ·
-
PDF
cdc-2313.pdf
TXD PB6 17 R1 5 XTAL2 PB5 16 1 1K5 6 XTAL1 PB4 15 C3 2 7 INT0 PB3 14 104 3 8 PD3 PB2 13 4 9 PD4 PB1 12 R2 PD5 PB0 2 68 10 GND PD6 11 2 CN1 R3 XM7B-0442 68 X1 U1 To MCU 12MHz ATTINY2313 or RS-232C Driver C1 C2 18p 18p Title: AVR-CDC (ATtiny2313) 3 3 Design: Osamu Tamura Date: 2008-08-22 Sheet: 1 of 1 A
in „Soft-USB AVR“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
AVRDUDE-doc-5.5.pdf
ATmega644 m649 ATmega649 m6490 ATmega6490 m8 ATmega8 m8515 ATmega8515 m8535 ATmega8535 m88 ATmega88 t12 ATtiny12 t13 ATtiny13 t15 ATtiny15 t2313 ATtiny2313 t25 ATtiny25 t26 ATtiny26 t45 ATtiny45 t85 ATtiny85 (*) The AT90S2323 and ATtiny22 use the same algorithm. (**) Flash addressing above 128 KB is not
in „USB-ISP PRogrammer unter Ubuntu“ · PC Hard- und Software ·
-
Bild
Sortiment an elektronischen Bauteilen in Kunststoffboxen
0603, 220R 0603, 240R 0603, 470R 0603, 820R 0603, 1k 0603, 4k7 0603, 5k1 0603, 6k34 0603, 10k 0603, 12k 0603, 20k 0603, 22k 0603, 40k2 0603, 47k 0603, 100k 0603, 1k8 0805, 4k7 0805, 47p 25V 0603, 100n 25V 0603, 1u 6V3 0603, 10u 25V 0603, 22u 0805, 15n2 3V2, 12n2 3T2, LED rd, LED vi, LED bgn, side-LED
in „Dieses Aufbewahrungssystem für SMT Teile“ · Offtopic · · Fotos
-
Datei
lcd.c
> 0x00, 0x02, 0x01, 0x51, 0x09, 0x06, // ? 0x00, 0x32, 0x49, 0x59, 0x51, 0x3E, // @ 0x00, 0x7C, 0x12, 0x11, 0x12, 0x7C, // A 0x00, 0x7F, 0x49, 0x49, 0x49, 0x36, // B 0x00, 0x3E, 0x41, 0x41, 0x41, 0x22, // C 0x00, 0x7F, 0x41, 0x41, 0x22, 0x1C, // D 0x00, 0x7F, 0x49, 0x49, 0x49, 0x41, // E 0x00, 0x7F,
in „RS485 von ms - immer noch Einschaltprobleme“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tiny_printf.c
aufgerufen /* -------------------------------------------------- Registernamen fuer ATMega8 und ATtiny2313 -------------------------------------------------- */ #if defined (__AVR_ATmega8__) || defined (__AVR_ATtiny2313__) #define UBRR0 UBRR #define UBRR0L UBRRL #define UBRR0H UBRRH #define UCSR0A UCSRA
in „"Berechnungsfunktion" liefert immer 0“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
sammelbestellung.pdf
Instruments Beschr.: Instrumentenverstärker Single Supply MicroPower RoHS: RoHS-konform Mouser-Nr.: 817-MZ-12HS-K 3 1,94 € 5,82 € Verfügbarkeit Herst.- Nr.: MZ-12HS-K-U 3 Versand sofort Hersteller: Fujitsu Beschr.: Kleinsignal-Relais - Leiterplatte MiniSignal12VDC RoHS: RoHS-konform 13,10 € 13,10 € Mouser-Nr
-
Datei
telefonadapter.c
47, 45, 43, 42, 40, 39, 37, 35, 34, 32, 31, 30, 28, 27, 25, 24, 23, 21, 20, 19, 18, 17, 15, 14, 13, 12, 11, 10, 9, 9, 8, 7, 6, 6, 5, 4, 4, 3, 3, 2, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 6, 6, 7, 8, 9, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28
in „HEX-File passt nicht in Attiny 25“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Pinbelegung ATtiny26 und ATtiny2313
(ADC8/XTAL2) PB5 8 13 PA5 (ADC4) (ADC9/INT0/T0) PB6 9 12 PA6 (ADC5/AIN0) (ADC10/RESET) PB7 10 11 PA7 (ADC6/AIN1) ATtiny2313 (RESET/dW) PA2 1 20 VCC (RXD) PD0 2 19 PB7 (UCSK/SCL/PCINT7) (TXD) PD1 3 18 PB6 (MISO/DO/PCINT6) (XTAL2) PA1 4 17 PB5 (MOSI/DI/SDA/
in „Suche Attiny26L-8SU (NOS)“ · Markt · · Screenshots
-
Datei
readme.txt
Verwendung des Softwaremoduls kann somit mit: Compiler : avr-gcc (ab Version 4.8.1 getestet) MCU : ATtiny44 (sollte jedoch auch mit ATtiny24 und ATtiny84 funktionieren) Taktfrequenz MCU : 8MHz intern Fuses : Lo:0xE2 Hi:0xDF LEDs : WS2812b Betriebssystem : Linux IDE : Make betrieben werden. ____________
-
Datei
AVR_Tiny_Bootloader.c
BYTEADRESSE!!!! //Folgende ATTinys können unterstützt werden by Hardware UART (mind. 256byte SRAM): //ATtiny167/87 - Start @ WORD/WORD //ATtiny4313 - Start @ 0x4A0 WORD //ATtiny441/841 - Start @ WORD/WORD //ATtiny828 - Start @ WORD //ATtiny1634 - Start @ WORD - HouseBasic (0) */ #define F_CPU 16000000UL /
in „ATTiny1634 Bootloader C nimmt nicht alles korrekt an“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
AVR_Tiny_Bootloader.c
BYTEADRESSE!!!! //Folgende ATTinys können unterstützt werden by Hardware UART (mind. 256byte SRAM): //ATtiny167/87 - Start @ WORD/WORD //ATtiny4313 - Start @ 0x4A0 WORD //ATtiny441/841 - Start @ WORD/WORD //ATtiny828 - Start @ WORD //ATtiny1634 - Start @ WORD - HouseBasic (0) */ #define F_CPU 16000000UL /
in „ATtiny Bootloader C füllt FF's in Flash“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Fernbedienung_FB9_Tiny4313.c
sleep.h" #ifndef F_CPU # error F_CPU unknown #endif void timer1_init (void) { #if defined (__AVR_ATtiny45__) || defined (__AVR_ATtiny85__) // ATtiny45 / ATtiny85: OCR1C = (F_CPU / F_INTERRUPTS / 4) - 1; // compare value: 1/15000 of CPU frequency, presc = 4 TCCR1 = (1 << CTC1) | (1 << CS11) | (1 << CS10
in „IR Fernbedienung mit IRSND“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Pluggit_Drucksensorboard_V4.ino
V3: PWM nun auf Pins 9&10 mit 12bit Auflösung // neu V3: Nachbildung auch von der neueren SDP1000-L05-Platine wenn Pin2 auf GND gesetzt ist // neu V4: Umstellung auf ATTINY85 const int PWM10VS1 = 3960; //PWM(0...4095) für Justage 10V-Ausgangsspannung
in „Eigenentwicklung Ersatzplatine Drucksensorboard für Pluggit“ · Haus & Smart Home ·
-
Datei
fernbedienung.bas
*********** 'Aufgabe : RC5-Empfänger 'Compiler : BASCOM-AVR 'Hardware : TSOP1736 an PB.0 'Chip : ATTiny 2313 '******************************************************************* $regfile = "m8def.dat" 'bzw. Attiny2313.dat $crystal = 4000000 'internal clock 4MHz $hwstack = 32 $swstack = 10 $framesize
in „rc5 mit attiny 2313“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.c
Copyright (c) 2010-2019 Frank Meyer - frank(at)fli4l.de * * Supported AVR mikrocontrollers: * * ATtiny87, ATtiny167 * ATtiny45, ATtiny85 * ATtiny44 ATtiny84 * ATtiny2313 ATtiny4313 * ATmega8, ATmega16, ATmega32 * ATmega162 * ATmega164, ATmega324, ATmega644, ATmega644P, ATmega1284, ATmega1284P * ATmega88
in „IR Fernbedienung mit IRSND“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
txlcd_i2c_demo.c
static const unsigned char charbmp0[8] PROGMEM = // hochgestelltes "o" (fuer Gradangaben) { 0x0c, 0x12, 0x12, 0x0c, 0x00, 0x00, 0x00, 0x00 }; static const unsigned char charbmp1[8] PROGMEM = // Pfeil nach links { 0x08, 0x0c, 0x0e, 0x0f, 0x0e, 0x0c, 0x08, 0x00 }; static const unsigned char ohmbmp[8] PROGMEM
in „(sehr) kleines "FrameWork" für ATtiny44“ · Projekte & Code ·
-
Datei
Empfaenger.c
RXEN0); UCSR0C = (1<<UCSZ00) | (1<<UCSZ01); } static void timer1_init (void) { #if defined (__AVR_ATtiny45__) || defined (__AVR_ATtiny85__) #if F_CPU >= 16000000L OCR1C = (F_CPU / F_INTERRUPTS / 8) - 1; TCCR1 = (1 << CTC1) | (1 << CS12); #else OCR1C = (F_CPU / F_INTERRUPTS / 4) - 1; TCCR1 = (1 << CTC1) | (1 << CS11) | (1 << CS10); #endif #else OCR1A = (F_CPU / F_INTERRUPTS) - 1; TCCR1B = (1 << WGM12) | (1 << CS10); #endif #ifdef TIMSK1 TIMSK1 = 1 << OCIE1A; #else TIMSK = 1 << OCIE1A; #endif } #ifdef TIM1_COMPA_vect #define COMPA_VECT TIM1_COMPA_vect #else #define COMPA_VECT TIMER1_COMPA_vect #endif
in „IR-Emfänger TSOP 4838 an ATmega328P“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
OLED_Test2_Attiny2313.asm
************************************************* ; OLED Test I2C via USI-Interface ; MCU: ATMEL ATtiny2313 (ATtiny4313) ; Clock: 4 MHz ; I2C-PortB PB7=SCL; PB5=SDA ; ; Device slave address: $3C OLED ;ATtiny4313 memory use summary [bytes]: ;Segment Begin End Code Data Used Size Use% ;[cseg] 0x000000
in „I2C Display einfache Frage“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tn4313def.inc
" ;* Title : Register/Bit Definitions for the ATtiny4313 ;* Date : 2010-08-20 ;* Version : 2.35 ;* Support E-mail : avr@atmel.com ;* Target MCU : ATtiny4313 ;* ;* DESCRIPTION ;* When including this file in the assembly program file, all I/O register
in „Woher kriege ich die Datei t4313def.inc?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
irsnd.c
Copyright (c) 2010-2015 Frank Meyer - frank(at)fli4l.de * * Supported AVR mikrocontrollers: * * ATtiny87, ATtiny167 * ATtiny45, ATtiny85 * ATtiny44 ATtiny84 * ATmega8, ATmega16, ATmega32 * ATmega162 * ATmega164, ATmega324, ATmega644, ATmega644P, ATmega1284, ATmega1284P * ATmega88, ATmega88P, ATmega168
in „IRMP - Infrared Multi Protocol Decoder“ · Projekte & Code ·
-
Datei
ATtiny804_814_824.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ATtiny 804 - 814 - 824</title> <style type="text/css"> body {background:#f5f6f7} article {margin:10px auto 300px auto;width:1200px;font:15px arial} div {padding:5px 0} table {border-collapse:collapse;background
in „ATtiny Typenchaos bei Microchip“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
14_4_T13_I2C_PCF_LCD_MC.asm
R E I N F O R M A T I O N E N ; ============================================; ; ____________ ; / ATtiny13 | ; | | ; RESET o--|1_S VCC_8|--o +5V VCC ; | | ; o--|2_PB3 PB2_7|--o SCK ; | | ; o--|3_PB4 PB1_6|--o MISO/OC0B//SCL ; | | ; 0 V o--|4_GND PB0_5|--o MOSI/OC0A//SDA ; |_____________| ; ; ATtiny Leitungsverbindungen
in „AVR ATtiny13 I2C PCF8574 LCD Display Ansteuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
definition_tn2313.txt
" ;* Title : Register/Bit Definitions for the ATtiny2313 ;* Date : 2005-01-11 ;* Version : 2.14 ;* Support E-mail : avr@atmel.com ;* Target MCU : ATtiny2313 ;* ;* DESCRIPTION ;* When including this file in the assembly program file, all I/O register
in „Attiny2313 programmieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tn85def.inc
;***** THIS IS A MACHINE GENERATED FILE - DO NOT EDIT ******************** ;***** Created: 2009-12-11 15:36 ******* Source: ATtiny85.xml ************ ;************************************************************************* ;* A P P L I C A T I O N N O T E F O R T H E A V R F A M I L Y ;* ;* Number : AVR000 ;* File Name : "tn85def.inc" ;* Title : Register/Bit Definitions for the ATtiny85 ;* Date : 2009-12-11 ;* Version : 2.35 ;* Support E-mail : avr@atmel.com ;* Target MCU : ATtiny85 ;* ;* DESCRIPTION ;* When including this file in the assembly program file, all I/O register ;* names
in „LCD über nur einen IO-Pin ansteuern“ · Projekte & Code ·