-
Datei
SHT11.asm
------------------------------------------------- ; Statusbyte lesen ; ; in : --- ; out : Puffer (sht11_status) mit Werten sht11_rd_status: push r18 push r19 push ZL push ZH rcall sht11_transstart ldi ZL, Low(sht11_status) ldi ZH,High(sht11_status) ld r18,Z+ rcall sht11_wr_byte ldi r19,ACK rcall sht11
in „SHT71 Assembler Code für Atmega8“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.c
#include "config.h" #include "sht11.h" static uint8_t sht11_sda; #define SHT11_CMD_TEMP 0x03 #define SHT11_CMD_HUMID 0x05 #define SHT11_CMD_WSTAT 0x06 #define SHT11_CMD_RSTAT 0x07 #define SHT11_CMD_RESET 0x1E ////////////////////////
-
Datei
sht11.c
DATA is high */ value++; } SHT11_SCK_LOW; _delay_us(IF_SPEED); } /* send ack if necessary */ SHT11_DATA_OUT; if (ack) { SHT11_DATA_LOW; _delay_us(IF_SPEED); } else { SHT11_DATA_HIGH; _delay_us(IF_SPEED); } clk_signal(); /* release
in „SHT11 an ATmega2560 Es funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.c
#include "config.h" #include "sht11.h" #define SHT11_CMD_TEMP 0x03 #define SHT11_CMD_HUMID 0x05 #define SHT11_CMD_WSTAT 0x06 #define SHT11_CMD_RSTAT 0x07 #define SHT11_CMD_RESET 0x1E #define F_CPU 16000000 ///////////////////////////
in „SHT11 an ATmega2560 Es funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.c
#include "config.h" #include "sht11.h" #define SHT11_CMD_TEMP 0x03 #define SHT11_CMD_HUMID 0x05 #define SHT11_CMD_WSTAT 0x06 #define SHT11_CMD_RSTAT 0x07 #define SHT11_CMD_RESET 0x1E #define F_CPU 16000000 ///////////////////////////
in „SHT11 an ATmega2560 Es funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHT11-1.asm
'H' Feuchte messen cpi w,84 breq temperatur ; wenn 'T' Temperatur messen rjmp loop feuchte: rcall sht11_reset rcall sht11_rf rcall sht11_rd rcall sht11_c_rf mov w,R2 rcall rs_send mov w,R1 rcall rs_send rjmp loop temperatur: rcall sht11_reset rcall sht11_t rcall sht11_rd rcall sht11_c_t mov w,R2 rcall
-
Datei
sht.asm
NOP CBI PORTB, 0 NOP SBI PORTB, 0 NOP SBI PORTB, 1 NOP CBI PORTB, 0 NOP RET SYSTEM.SHT11ConvState: IN _ACCB, PINB ANDI _ACCB, 2 BRNE SYSTEM.L0029 SER _ACCA RET SYSTEM.L0029: CLR _ACCA RET SYSTEM.SHT11startTemp: LDI _ACCB, 3 RCALL ¿SYSTEM._SHT11cmd RET SYSTEM.SHT11getHum: SYSTEM.SHT11getTemp
in „Feuchtesensor SHT1x“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht.pas
program sht; {$NOSHADOW} { $W+ Warnings} {Warnings off} Device = 90S2313, VCC=5; Import SysTick, SHT11drvr; From System Import ; Define ProcClock = 10000000; {Hertz} SysTick = 10; {msec} StackSize = $0010, iData; FrameSize = $0020, iData; SHT11drvr = polled; SHT11clk = PortB, 0; {Port, Pin#} SHT11Dat
in „Feuchtesensor SHT1x“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
humid.c
********************************************************************* * * Function name : HumiditySHT11Func * * Returns : char ST_state (to the state-machine) * * Parameters : char input (from joystick) * * Purpose : Enable or disable SHT11 humidity measurement and display * *************************
in „SHT11 falscher Rückgabewert“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.h
/* * Initialize. */ void sht11_init(void); void sht11_down(void); /* * Start measurement (humidity or temperature). * Return "device found". * Afterwards poll sht11_ready. */ uint8_t sht11_start_temp(uint8_t no); uint8_t sht11_start_humid
-
Datei
main_simple.c
%02i",uhr.tag,uhr.monat,uhr.jahr,uhr.stunde,uhr.minute,uhr.second); usart_put("\n%s\n",time_str); sht11_start_measure(); do { flag = sht11_measure_finish(); } while ( flag != 1 ); utoa(sht11_get_hum_raw(0),feuchte1_raw_str,10); itoa(sht11_get_hum(0),feuchte1_str,10); utoa(sht11_get_hum_raw(1),feuchte2_raw_str,10); itoa(sht11_get_hum(1),feuchte2_str,10); utoa(sht11_get_temp_raw(0),temp1_raw_str,10); itoa(sht11_get_temp(0),temp1_str,10); utoa(sht11_get_temp_raw(1),temp2_raw_str,10); itoa(sht11_get_temp(1),temp2_str,10);
in „MMC SD library FAT16 FAT32 read write“ · Projekte & Code ·
-
Datei
config.h
#define F_CPU 16000000 #endif #include <stdint.h> #include <avr/io.h> #include <util/delay.h> // SHT11 hum/temp sensor #define SHT11_PORT D #define SHT11_SCL (1<<PD4) #define SHT11_SDA (1<<PD7) #define SHT11_LOWRES 0 // 0: 12/14bit (SHT11), 1: 8/12bit (SHT11+FOST02) #define GLUE(a, b) a##b #define PORT
in „SHT11 an ATmega2560 Es funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
sht_value temperature; uart_puts_P("Ohne Heizung:"); error=sht_softreset(); if (error) { sprintf(buffer, "SHT11 Error (SoftReset) %i\n", error); uart_puts(buffer); } error=sht_measure(&humidity, &checksum, HUMI); if (error) { sprintf(buffer, "SHT11 Error (HUMI) %i\n", error); uart_puts(buffer); } error=sht_measure
in „SHT11 misst Mist“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dht11.c
> #include <avr/io.h> #include "lcd_select.h" static uint8_t gDHT11_data[5] = {0, 0, 0, 0}; v u16 sht11_TMP,sht11_HUM,tmp; //======================================= void dht11_messung (void){ long i; u8 xx; u8 endwhile=1; //u16 n, tmp[50]; cli(); //led_on; xx=dht11_read_data(); sht11_HUM=getHumidity(); sht11_TMP=getTemp(); sei(); lg(2,10); //li(gDHT11_data[0]);li(gDHT11_data[1]);li(gDHT11_data[2]);li(gDHT11_data[3]); lcd_int(sht11_TMP);lw("/");lcd_int(sht11_HUM); //led_off; /* lg(3,1); lcd_int4(gDHT11_
in „Temperatursensor DHT22/AM2302 // ATMega328P“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/** \file main.c \author Tomasz Ostrowski \date August 2007 Main file of SHT11 sensor library test project. Compiler: avr-gcc (WinAVR 20060421) Based on Sensirion sample code app note, rev. 2.05 MCU: ATmega8, 4MHz crystal, Vcc = 5V (important for SHT11 calculations) sensor: SHT11
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.txt
main: rcall LED0_flash ldi parameter, PD4 rcall GetTempAndHumid rcall berechne_werte rcall uart_out_sht11 _uart_out_lpm leerzeichen ;4x space ldi parameter, PD5 rcall GetTempAndHumid rcall berechne_werte rcall uart_out_sht11 _uart_out_lpm abschluss ;nächste zeile rjmp main .include "rcalls.inc" GetTempAndHumid
in „sbi und cbr bei PORTD und DDRD variabel machen ?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.c
0x80; SFIOR=0x00; // LCD module initialization lcd_init(20); // sample program that shows how to use SHT11 functions // 1. connection reset // 2. measure humidity [ticks](12 bit) and temperature [ticks](14 bit) // 3. calculate humidity [%RH] and temperature [°C] // 4. print temperature, humidity s_connectionreset
in „SHT11 Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.asm
;****************************************************************************** ; ; Activation of a Sensirion SHT71 temperature- / humiditysensor ; ; ; Clockfrequency: 12 MHz ; ;****************************************************************************** ; ; Pinsetup ; ---------------------------------- ; PORTA: RA0 - DATA ; RA1 - SCK ; ---------------------------------- ; ;****************************************************************************** LIST P=18F2550 ;processor type #include <P18F2550.INC> ;processor specific variable definitions ;*********************************************
in „Sensirion SHT71 mit PIC18F2550“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11.c
); //define DATA line as input SCK_HIGH //clk #9 for ack //check ack (DATA will be pulled down by SHT11) if(IOSET & DATA) err = 1; else err = 0; IODIR |= DATA; //define DATA line as output SCK_LOW return err; } char sht71_read_value(unsigned char ack) { unsigned char i,val=0; DATA_HIGH //release DATA-line
in „LPC2148 und SHT11“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
/** \file main.c \author Tomasz Ostrowski \date August 2007 Main file of SHT11 sensor library test project. Compiler: avr-gcc (WinAVR 20060421) Based on Sensirion sample code app note, rev. 2.05 MCU: ATmega8, 4MHz crystal, Vcc = 5V (important for SHT11 calculations) sensor: SHT11
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
sht_value temperature; error=sht_softreset(); _delay_ms(10); //Warten if (error) { sprintf(buffer, "SHT11 Error (SoftReset) %i\n", error); uart_puts(buffer); } error=sht_measure(&humidity, &checksum, HUMI); _delay_ms(10); if (error) { sprintf(buffer, "SHT11 Error (HUMI) %i\n", error); uart_puts(buffer)
in „Temperatur Feuchtigkeitssensor SHT7x Software/ hardware Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11_AVR_Example.c
/****************************************************************************** * Function: sht11_handler() * * Description: This is the background SHT sensor interface routine. It is called * by the timer every 5ms. The sensor requires about 200ms to complete * a measurement. Each sensor interaction
in „LPC2148 und SHT11“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Sht11.a51
Messzyklus vorbei mov a,r0 sendadez mov a,#55 sendadez mov a,r1 sendadez jmp start; ; !! ANGEPASST FÜR SHT 11 !!! I2C_BUS_START: wait_bus_start: setb SCL jnb SCL,wait_bus_start setb SDA nop clr SDA nop clr SCL nop setb SCL nop setb SDA nop ret ;--------------------------------------------------------------
in „Tips für i2c?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sht11_einzel.c
//#define DATA PORTB.B5 #define DATA DDB5_bit #define SCL PORTB.B7 //#define mdelay asm nop #define mdelay delay_ms(1); volatile int i = 0; volatile unsigned int j = 1; // _____________________________________________________ ________ // DATA: |_______| // _ _ _ _ _ _ _ _ _ ___ ___ // SCK : __| |__| |__| |__| |__| |__| |__| |__| |__| |______| |___| |______ void itoa(char* Buffer, int z ) { int i = 0; int j; char tmp; unsigned u; if( z < 0 ) { Buffer[0] = '-'; Buffer++; u = ( (long)-(z+1) ) + 1; } else { u = (long)z; } do { Buffer[i++] = '0' + u % 10; u /= 10; } while( u > 0 ); for( j = 0; j <
in „SHT11 am ATMega16 - ich dreh gleich durch :(“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
1-Wire-Slave_SHT11.bas
************************** 'Compiler : BasCom 'Hardware: : ATmega8 (mit ext. Quarz oder Oszi) ' : SHT11 an PORTD.6 (Data, ueber 10k an VCC) und PORTD.7(Sck) ' : LED an PORTB.0 als Rueckmeldung ' : 1-Wire-Anschluss an PORTD.2 'Function : Emulation 1-Wire Slave mit SHT11 'Clock frequency : 8,000000 MHz
in „1-Wire OW-wire slave device <=4MHz low current AVR assembler ATmega8“ · Projekte & Code ·
-
Datei
main.c
/** \file main.c \author Tomasz Ostrowski \date August 2007 Main file of SHT11 sensor library test project. Compiler: avr-gcc (WinAVR 20060421) Based on Sensirion sample code app note, rev. 2.05 MCU: ATmega8, 4MHz crystal, Vcc = 5V (important for SHT11 calculations) sensor: SHT11
in „Unabhängiger Timer gesucht“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
dbsht1x7xdeutschdk0704.pdf
]XOHW]W▯ GLH▯ NOHLQHQ▯ 0LNURVHQVRUHQ▯I U▯GLH▯UHODWLYH▯)HXFKWH▯XQG▯GLH▯7HPSHUDWXU▯▯ Maße▯▯▯[▯[▯PP SHT11▯▯XQG▯GLH▯JHULQJH▯6WURPDXIQDKPH▯▯ ZHOFKH▯ DXI▯ HLQHP▯ HLQ]LJHQ▯ &KLS▯ DXI▯ ELVKHU▯ XQHUUHLFKWH▯ PDFKHQ▯ GDV▯ %DXWHLO▯ ]XU▯ XOWLPDWLYHQ▯ /|VXQJ▯ VHOEVW▯ I U▯ $QZHQGXQJHQ▯ PLW▯ K|FKVWHQ▯ $QVSU FKHQ▯ ZLH
in „Auswertung Luftfeuchtesensor“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Sht11_neu.a51
Messzyklus vorbei mov a,r0 sendadez mov a,#55 sendadez mov a,r1 sendadez jmp start; ; !! ANGEPASST FÜR SHT 11 !!! I2C_BUS_START: wait_bus_start: setb SCL jnb SCL,wait_bus_start setb SDA nop clr SDA nop clr SCL nop setb SCL nop setb SDA nop CLR SCL ; TAKT AUF LOW, lt. Transmission Start Bedingung ret ;-----
in „Tips für i2c?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
hallo.c
0x80; SFIOR=0x00; // LCD module initialization lcd_init(); // sample program that shows how to use SHT11 functions // 1. connection reset // 2. measure humidity [ticks](12 bit) and temperature [ticks](14 bit) // 3. calculate humidity [%RH] and temperature [°C] // 4. print temperature, humidity s_connectionreset
in „SHT11 Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
hallo.c
0x80; SFIOR=0x00; // LCD module initialization lcd_init(); // sample program that shows how to use SHT11 functions // 1. connection reset // 2. measure humidity [ticks](12 bit) and temperature [ticks](14 bit) // 3. calculate humidity [%RH] and temperature [°C] // 4. print temperature, humidity while(1
in „SHT11 Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
hallo.c
0x80; SFIOR=0x00; // LCD module initialization lcd_init(); // sample program that shows how to use SHT11 functions // 1. connection reset // 2. measure humidity [ticks](12 bit) and temperature [ticks](14 bit) // 3. calculate humidity [%RH] and temperature [°C] // 4. print temperature, humidity while(1
in „SHT11 Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHT71.txt
$crystal = 3686400 $hwstack = 64 $swstack = 64 $framesize = 80 $baud = 9600 'Routine to read the SHT11 Humidity sensor chip 'By Stuart Leslie 'Contact stu@4sightinc.com with any questions 'Uses BascomAVR 'a .01 uf capacitor across VCC and Ground on the SHT11 really cleans up the data 'a pullup is required
in „Zwei SHT71 an einem ATmega8“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
dataword_01_15.bas
'Routine to read the SHT11 Humidity sensor chip 'By Stuart Leslie 'Contact stu@4sightinc.com with any questions 'Uses BascomAVR 'a .01 uf capacitor across VCC and Ground on the SHT11 really cleans up the data 'a pull-up is required
in „SHT11 - Umstellung auf niedrigere Sensorausgabe“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
tmote-sky-datasheet.pdf
/Temperature Sensor The optional humidity/temperature sensor is manufactured by Sensirion AG. The SHT11 and SHT15 models may be directly mounted on the Tmote module in the U3 component position. The SHT11/SHT15 sensors are calibrated and produce a digital output. The calibration coefficients are stored
in „MSP430 - Beste Möglichkeit der Kommunikation“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHTxx_Sample_Code.c
//release DATA-line SCK=1; //clk #9 for ack error=DATA; //check ack (DATA will be pulled down by SHT11) SCK=0; return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- char s_read_byte(unsigned char ack) //--------------
in „Tips für i2c?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHTxx_Sample_Code.c
//release DATA-line SCK=1; //clk #9 for ack error=DATA; //check ack (DATA will be pulled down by SHT11) SCK=0; return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- char s_read_byte(unsigned char ack) //--------------
in „SHT1x an msp430“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHTxx_Sample_Code.c
//release DATA-line SCK=1; //clk #9 for ack error=DATA; //check ack (DATA will be pulled down by SHT11) SCK=0; return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- char s_read_byte(unsigned char ack) //--------------
in „SHT15 sample code“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.c
//release DATA-line SCK=1; //clk #9 for ack error=DATA; //check ack (DATA will be pulled down by SHT11) SCK=0; return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- char s_read_byte(unsigned char ack) //--------------
in „folgender code nicht compilierbar“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
error,checksum; DDRB = 0xFF; sei(); lcd_init(LCD_DISP_ON); lcd_clrscr(); lcd_gotoxy(0,1); lcd_puts(" SHT11 test"); sensor_connectionreset(); lcd_gotoxy(0,2); lcd_puts(" ......done"); for(;;) { error=0; error+=sensor_measure((unsigned char*) &humi_val.i,&checksum,HUMI); //measure humidity error+=sensor_measure
in „SHT11 Problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
RH_Modul.c
//release DATA-line SCK=1; //clk #9 for ack error=DATA; //check ack (DATA will be pulled down by SHT11) SCK=0; return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- char s_read_byte(unsigned char ack) //--------------
in „folgender code nicht compilierbar“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
temp.c
#asm("nop"); #asm("nop"); //clk #9 for ack error=PIND.6; //check ack (DATA will be pulled down by SHT11) #asm("nop"); #asm("nop"); #asm("nop"); SCK=0; DDRD.6=1; //Data return error; //error=1 in case of no acknowledge } //-------------------------------------------------------------------------------
in „Temperatur/Feuchte Sensor SHT15 WILL NICHT“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHT.c
clk #9 for ack _delay_ms(1); error= (PINF & (1<<PINF0)) ; //check ack (DATA will be pulled down by SHT11) SCK(0); return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- char s_read_byte(unsigned char ack) //-------------
in „Prolbem AVRStudio mit GCC und Log10 ??“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD_BOARD.c
PORTD = 0x00; while (1) { MK3_LCD_CLEAR(); sht_measure(Temperatur, *p_checksum, TEMP); // Messung SHT11 anstossen MK3_LCD_PRINT_UINT(Temperatur); // Wert auf LCD anzeigen _delay_ms(500); } return 0; } //-----------------------------------------------------------------------------
in „SHT11 an ATmega2560 Es funktioniert nicht“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHTxx.h
char s_measure(unsigned char *p_value, unsigned char *p_checksum, unsigned char mode); void calc_sht11(float *p_humidity, float *p_temperature); #endif
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHTxx.h
char s_measure(unsigned char *p_value, unsigned char *p_checksum, unsigned char mode); void calc_sht11(int16_t *p_humidity, int16_t *p_temperature); #endif
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
prog.txt
'Routine to read the SHT11 Humidity sensor chip 'Orginal By Stuart Leslie 'Changes and Extensions by Kristina Wetzke 'Uses BascomAVR 'Variablen Dim Messergebnis As Word Dim Command As Byte Dim Tt As String * 20 Dim Ff As String
in „SHT11 - Umstellung auf niedrigere Sensorausgabe“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
libsht.c
nop"::); asm volatile ("nop"::); if (SHT_DATA) error =1; //check ack (DATA will be pulled down by SHT11) CLEAR_SHT_SCK; return error; //error=1 in case of no acknowledge } //---------------------------------------------------------------------------------- unsigned char sht_read_byte(unsigned char ack
in „Lib für Sensirion SHT1x Sensor an AVR“ · Projekte & Code ·
-
Datei
SHTxx.c
to %RH) \param *p_temperature pointer to temp. to recalculate (14 bit ticks to deg) */ void calc_sht11(float *p_humidity, float *p_temperature) { const float C1=-2.0468; //for 12 bit const float C2= 0.0367; //for 12 bit const float C3=-0.0000015955; //for 12 bit const float T1= 0.01; //for 14 bit at
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
SHTxx.c
to %RH) \param *p_temperature pointer to temp. to recalculate (14 bit ticks to deg) */ void calc_sht11(int16_t *p_humidity, int16_t *p_temperature) { const float C1=-2.0468; //for 12 bit const float C2= 0.0367; //for 12 bit const float C3=-0.0000015955; //for 12 bit const float T1= 0.01; //for 14 bit
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
) * * * RFM12-Lib: * ---------- * -Benedikt K. (http://www.mikrocontroller.net/topic/71682) * * * SHT11-LIB * --------- * -A.K./Thorsten S. (http://www.mikrocontroller.net/topic/145736) * * * allgemeiner Programmablauf: * --------------------------- * -es werden zyklisch die verschiedensten angeschlossenen
in „Wetterstation Windrichtung kodieren und dekodieren“ · Mikrocontroller und Digitale Elektronik ·