-
Thread
Servo mit Millis anstatt delay steuern.
as long as button is pressed Serial.println("Start is being held"); if(ps2x.Button(PSB_SELECT)) Serial.println("Select is being held"); if(ps2x.Button(ORANGE_FRET))
[c] if(ps2x.Button(PSB_PAD_DOWN)) { //will be TRUE as long as button is pressed Serial.println("down just pressed"); servoblau.write(90); //Position 1 ansteuern mit dem Winkel 0° delay(1000); //Das Programm stoppt für 3 Sekunden servoblau.write
-
Thread
Galliumnitrid Transistoren
Transistors ob er sich lohnt in den meisten seiner Anwendungen. Die Antwort war, in Halbleitern aus GaAs gefunden, anstatt Silizium. GaAs hat typischerweise rund sechs Mal die Elektronenmobilität von Silicon und bietet das Potenzial für deutlich schnellere Transistoren. GaAs hat auch bewiesen, weniger rauschend
so dass die beiden Hauptprobleme in einem HF-Transistor, Geschwindigkeit und Rauschen, von der GaAs-Transistors gelöst wurden. Die Realität war nicht so gut wie ursprünglich erwartet. Es hat fast zwei Jahrzehnte gedauert bis GaAs-Komponenten, den Übergang von den frühen Produktionskomponenten zu
-
Thread
12v Strom Zähler selber bauen.
'LCD Display konfigurieren Config Portd = Output Config Portc = Input Dim Ad As Word Dim U As Single Dim I As Single Dim W As Single Dim W2 As Single Dim W3 As Single Dim I2 As Single Dim I3 As Single Cls Config Adc = Single , Prescaler = Auto , Reference = Avcc
-
Thread
Wie sicher ist die Cloud?
könnte das schon zu > Sicherheitsproblemen führen. Für als sicher erachtete Verfahren wie z.B. AES gibt es keine bekannten sogenannten "known plaintext"-Angriffe, das sollte also kein Problem sein.
direkt für die Blockchiffre verwendet, sondern statt dessen einen langen Sessionkey (z.B. 256 Bit für AES) zufällig erzeugt und den dann mit einem langsamen Verfahren mit dem kurzen Schlüssel überchiffriert (Hybridverfahren, PGP läßt grüßen). Um AES direkt zu brechen ist die Schlüssellänge zu groß. Und
-
Thread
2 funktionen vereinen
übergibst einen Zeiger. [c] void do_sum(int cmd, void* data) { if (cmd == 0) { AvgStruct *as = (AverageStruct*)data; as->sum += as->a; as->sum += as->b; as->sum += as->c; } else if (cmd == 1) { MedianStruct *ms = (MedianStruct*)data; ms->sum += ms->a; ms->sum
Zeiger, ist also langsamer. [c] struct MyStruct { int type; union { struct AvgStruct as; struct MedianStruct ms; }; }; void do_sum(struct MyStruct data) { if (data.type == 0) { data.as.sum += data.as.a; data.as.sum += data.as.b; data.as.sum += data.as.c;
-
Thread
ATtiny Interner Oszilator Problem
crystal = 9600000 $hwstack = 8 $swstack = 16 $framesize = 32 Open "comb.3:9600,8,n,1" For Output As #1 Open "comb.4:9600,8,n,1" For Input As #2 Dim Empfangen As String * 4 Config Portb.0 = Output Config Portb.1 = Output Do Input #2 , Empfangen If Empfangen = "up" Then 'Portb.1 = 0 'Portb.0
versuch mal die Polarität mit "inverted" zu tauschen. Open "comb.3:9600,8,n,1,inverted" For Output As #1
-
Thread
Kilometerzähler für mehrere Fahrer - Bascom EEPROM Problem
As Eram Word Dim Kilometer As Eram Word Dim Driver1kmlast As Eram Word Dim Driver2kmlast As Eram Word '----------------------------- Reset Driver Kilometer ------------------------- If Swreset
Byte Dim Drivernr As Byte Dim Edriver1km As Eram Word Dim Driver1km As Word Dim Edriver2km As Eram Word Dim Driver2km As Word Dim Ekilometer As Eram Long Dim Kilometer As Long Dim Edriver1kmlast As Eram Word
-
Thread
Probleme UART, Baudrate Atmege8
********************** Config Serialin = Buffered , Size = 20 , Bytematch = 13 Dim Serinpstr As String * 20 Dim Seroutstr As String * 20 Dim Cr_received As Bit Dim Strsize As Byte enable interrupts do if cr_received = 1 then gosub parser 'wenn return empfangen wurde loop end
****************** > Config Serialin = Buffered , Size = 20 , Bytematch = 13 > > Dim Serinpstr As String * 20 > Dim Seroutstr As String * 20 > Dim Cr_received As Bit > Dim Strsize As Byte > > enable interrupts > > do > > if cr_received = 1 then gosub parser 'wenn return empfangen wurde
-
Thread
ATmega1280 Blockiert
############# | 100% 0.01s avrdude: Device signature = 0x1e9703 avrdude: safemode: lfuse reads as FF avrdude: safemode: hfuse reads as DE avrdude: safemode: efuse reads as FD avrdude: erasing chip avrdude: try to set SCK period to 5e-007 s (= 2000000 Hz) avrdude: set SCK frequency to 1500000
0x0c != 0xff avrdude: verification error; content mismatch avrdude: safemode: lfuse reads as FF avrdude: safemode: hfuse reads as DE avrdude: safemode: efuse reads as FD avrdude: safemode: Fuses OK avrdude done. Thank you.
-
Thread
[MySQL] Durchschnitt aus aufeinanderfolgende Datensätzen
von ukug14) auf MySQL umgeschrieben. Folgendes ist dabei raus gekommen: [pre] SELECT DAY(Zeit) AS tag, HOUR(Zeit) AS stunde, MINUTE(Zeit) AS minut, Zeit, Avg(P_TOT_W) AS VarValue FROM Energie.data WHERE Zeit >= cast((now()) as date) AND Zeit < cast((now(
bekommen. Nach einigen Versuchen ist nun folgendes dabei heraus gekommen: [pre] SELECT DAY(Zeit) AS tag, HOUR(Zeit) AS stunde, MINUTE(Zeit) AS minut, SECOND(Zeit) AS sec, truncate(round(SECOND(Zeit) / 21,1), 0) as rounded, Zeit, Avg(P_TOT_W) AS VarValue FROM Energie.data WHERE
-
Thread
variabler Port in Bascom
Config Rows = Output Config Cols = Output Config Timer0 = Timer , Prescale = 8 Dim A As Integer Dim Temp As Byte Temp = 0 Dim Tdata1 As Byte Dim Tdata2 As Byte Dim Tdata3 As Byte Dim Tdata4 As Byte Dim Tdata5 As Byte Dim Tdata6 As Byte Dim Tdata7 As Byte
Config Cols = Output Config Timer0 = Timer , Prescale = 8 Porta.0 = Portd.7 Dim A As Integer Dim Temp As Byte Temp = 0 Dim Tdata1 As Byte Dim Tdata2 As Byte Dim Tdata3 As Byte Dim Tdata4 As Byte Dim Tdata5 As Byte Dim Tdata6 As Byte Dim Tdata7 As Byte
-
Thread
VB2008 Zahl von Kleinsteuerung konvertieren 65534 = -0.2?
folgt probiert, aber leider rundet mir VB was weg. Function CorrectNumber(ByRef Analogflag As String) As String Dim Zahl As Double Zahl = Val(Analogflag) If Zahl >= 32767 Then CorrectNumber = ((65535 - Zahl) * -1) / 10 Else CorrectNumber
Function ' Dezimal nach Binärzahl umwandeln Public Function Decimal2Binary(ByVal Dec As Integer) As String Return Convert.ToString(Dec, 2) End Function ' Binärzahl nach Dezimal umwandeln Public Function Binary2Decimal(ByVal Bin As String) As Integer Dim
-
Thread
Falscher Assembler aufgerufen?
Da wird doch vermutlich ein Makefile verwendet? 1. Dann kontrolliere doch mal, ob da drin AS definiert wird (also in der Art AS =...irgendwas...). 2. Dann setz doch da mal rein: AS = avr-as oder: AS = gcc
Hersteller: openSUSE Installiert: Ja Status: aktuell [/code] Der Assembler wohnt hier: /usr/avr/bin/as ist ein Link auf /usr/bin/avr-as. Aber das bestärkt mich in der Auffassung, dass der falsche as aufgerufen wird, denn das Build liefert: [code] ... as -v -mmcu=attiny85 -o src/timer.o /tmp/cc5DvSGe.s
-
Thread
Zwei RC-Glieder seriell - Spannung am zweiten Kondensator?
Heaviside's transform! The voltage source that switches from Vs to Vz at t=0 may be represented as a series connection of two voltage sources. One switches off from Vs to zero, the other switches on from zero to Vz. If the unit step is denoted as u(t), the voltage applied to the input is: [math]V_i
for a simplification. Right? Let's assume tau1 >> tau2. Let's also assume f > 1/( 2 * PI * tau1). As before I am interested in what time it takes for Uc2 to reach a certain level. I did a simulation of the above. At the given frequency Uc1 approximately appears as a triangular waveform. That is,
-
Thread
[Bascom] Variabele in EEPROM
1200 Config Portb.0 = Input Config Portb.1 = Input Config Porta = Output Dim Count1 As Byte Dim Count2 As Byte Dim Countee As Eram byte Count2 = 0 Count1 = 0 Count2 = Countee Do If Pinb.0 = 1 Then Count1 = Count2 + 1 Waitms 500 End If Countee = Count1 If Pinb
baud = 1200 Config Portb.0 = Input Config Portb.1 = Input Config Porta = Output Dim Count As Byte Dim Countee As Eram Byte At 3 ' neue zelle ;) Dim Dummy As Byte 'Count = 0 Count = Countee Do If Pinb.0 = 1 Then Count = Count + 1 Gosub Write2ee Waitms
-
Thread
ATTiny13A ADC - Was ist falsch im Code?
Alex schrieb im Beitrag #2818630: > "Using the ADC Interrupt Flag as a trigger source makes the ADC start a > new conversion as soon as the ongoing conversion has finished. The ADC > then operates in Free Running mode, constantly sampling and updating the > ADC Data
Alex schrieb im Beitrag #2819043: > "Using the ADC Interrupt Flag as a trigger source makes the ADC start a > new conversion as soon as the ongoing conversion has finished. The ADC > then operates in Free Running mode, constantly sampling and updating the > ADC Data
-
Thread
Basic-Interpreter auf einem AVR
number. If there are any cycles (circles) in the call graph, there is an entry for the cycle-as-a-whole. This entry shows who called the cycle (as parents) and the members of the cycle (as children.) The `+' recursive calls entry shows the number of function calls that were internal to the
number. If there are any cycles (circles) in the call graph, there is an entry for the cycle-as-a-whole. This entry shows who called the cycle (as parents) and the members of the cycle (as children.) The `+' recursive calls entry shows the number of function calls that were internal to the
-
Thread
Woher Impulstrafo für S/PDIF bzw AES/EBU?
Hat jemand einen Tip woher man Impulstrafos für S/PDIF bzw AES/EBU Schaltungen bekommen kann?
Den Murata DA101C habe ich schon erfolgreich für AES eingesetzt.
-
Thread
Parser für Grammatiken
nicht abc. A: a{a}Cd{d}. C: b Wiegesagt gibt es aber in der BNF keine Mittel die Anzahl der as mit der Anzahl der bs durch eine Bedingung zu verknüpfen. Gruss Oops
Hi, als es drauf ankam, bin ich an folgendem Bsp gescheitert: A -> aAS |c S -> b ich hab 2 Ideen, mir sind beide logisch, ich weiß aber nicht welche die richtige ist: [c] public static A(){ if str[pos]='a'{ pos++; if (A()==true) { if S() ==true)
-
Thread
C# listView Spaltenbreite ändert sich
Public Class hp Private Structure ControlPositionType ' legt die Structure fest Dim m_Left As Single Dim m_Top As Single Dim m_Width As Single Dim m_Height As Single Dim m_Font_hoch As Single Dim m_font_fett As Boolean End Structure Private m_Con_pos(5, 100) As
global_form_breit = 1280 ' Größe der Entwicklungsgröße Private global_form_hoch = 700 Private form_geladen As String Private Sub hp_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load call pos_sichern () ' form_geladen = "ja" end sub Sub pos_sichern () ' liest die Werte
-
Thread
Die I2C Schnittstelle eines PIC16F876A initialisieren
clock = FOSC/(4 * (SSPADD + 1)) //Bit5 Enables the serial port and configures the SDA and SCL pins as the serial port pins SSPCON1 |=0x28; // Bit rücksetzen //Register&=~BIT; // Bit toggeln //Register^=BIT; //for (i=0;i<6000000000;i++) //{ // PORTA = 0xff; // //PORTA = 0x00;
clock = FOSC/(4 * (SSPADD + 1)) //Bit5 Enables the serial port and configures the SDA and SCL pins as the serial port pins SSPCON1 |=0x28; // enable all interrupts GIE = 1; // Bit rücksetzen //Register&=~BIT; // Bit toggeln //Register^=BIT; //TransmitData(Adresse); //Daten
-
Thread
Hilfe beim Uhr programmieren
Declare Sub Minutew Declare Sub Onoff Declare Sub Licht Declare Sub Stellenmenue Dim Stellenstunde As Byte Dim Stellenminute As Byte Dim Konfiguration As Byte Dim Anaus As Byte Dim Messung As Word Messung = Getadc(0) Cls Time$ = "00:00:00" Date$ = "01/01/00" Do If Konfiguration = 1
einen Fehler findet warum mein > Licht sich nicht einschaltet. [pre] .... Dim Stellenstunde As Byte Dim Stellenminute As Byte Dim Konfiguration As Byte Dim Anaus As Byte Dim Messung As Word Messung = Getadc(0) ; <------ hier wird der ADC abgefragt ; soll so sein
-
Thread
C-Interpreter zum Steuern/Erfassen
static) P-code verification and dynamic checks. * For porting purposes, pawn is written in ANSI C as much as possible; Big Endian versus Little Endian is handled. * To suit internationalization and localization, pawn supports Unicode/UCS-4 and UTF-8, as well as codepages. The compiler can convert
been fitted on an Atmel ATmega128 microcontroller, a Philips LPC2138 (ARM7 core with 32 kiB RAM), as well as on a Texas Instrument's MSP430F1611 (MSP430 core with 10 kiB RAM and 48 kiB Flash ROM). * Documenting the source code can be done with "documentation comments"; the pawn compiler extracts
-
Thread
Gehalt/Gehaltsentwicklung Informatiker/Ingenieure 2020
gelegentlich deswegen ein Lob - hust. Unsere Leitenden Angestellten müssen m.W. nicht stempeln. Work as long as you want;-)
schrieb im Beitrag #6538588: > > Unsere Leitenden Angestellten müssen m.W. nicht stempeln. Work as long > as you want;-) Sobald der Bundestag das Gesetz zur Arbeitszeiterfassung des EUGH in Deutschland umsetzt, ist Schluss mit "Work as long as you want". Das wird wohl spätestens Ende 2021
-
Thread
DS18S20 zeigt falsche Werte an?
-------------------------- ' variablen '----------------------------- 'temperatur Dim Chex As String * 2 Dim I As Byte Dim Tmp As Byte Dim Stemperatur As String * 5 Dim Twert As Integer Dim Halb As Byte Dim 1w_id(8) As Byte ' ID Dim Scratchpad(9) As Byte ' ScratchPad '----------------------------- ' MAIN '----------------------------- Call Init 'Now search for the first device on the bus 1w_id(
-
Thread
DCF-Uhr mit Pollin DCF-Modul in Bascom
, Parity = Even , Stopbits = 1 , Databits = 8 , Clockpol = 0 'nicht veränderbar Dim Text As String * 14 '14 Zeichen max in einer Zeile Declare Sub Position(byval X As Byte , Byval Y As Byte) 'Positionszeiger Declare Sub Nprint
löschen Waitms 50 Portb.2 = 0 'Für Pon low Dim I As Integer Dim Sec_old As Byte , Dcfsec_old As Byte Dim Wochentag As String * 12 , Wochentag_old As String * 12 Dim Zeit As String * 10 Dim Datum As String * 10 , Datum_old As String * 10 Config
-
Thread
Elektrotechnik vs. Informatik (m, 30 jahre alt)
hier. Wenn du das machst, was du liebst wirst du früher oder später immer erfolgreich sein. Simple as that
> Wenn du das machst, was du liebst wirst du früher oder später > immer erfolgreich sein. Simple as that Er hat es bisher nicht getan und wird es auch weiterhin nicht tun.
-
Thread
Erster und letzter Wert in Excel vba
Tipps! Mein Code sieht jetzt folgendermaßen aus: Sub LetzteEins() Dim intRow, intColumn As Integer Dim Bereich As Range For intRow = 1 To 4 For intColumn = 1 To 4 If Cells(intRow, intColumn).Value = 1 Then x = intRow y = intColumn
und sogar mit Buchstaben zurechtkommt. [code] Public ErstenUndLetztenWertFinden() Dim iRow As Long Dim iColumn As Long Dim sSucheNach As String Dim fErsterGefunden As Boolean Dim rngTabelle As Range Dim rngAktuelleZelle As Range 'Hier werden dem VBA die Adressen der Zellen
-
Thread
8 Kanal 50Ms/s AVR Logic-Analyzer
x 16Bit CMOS Dynamic RAM with Fast Page Mode Würde der gehen? Alternativ habe ich 8Stk Alliance AS7C256-20PC gefunden?!
Gerät nachbauen und scheitere warscheinlich am SRam. Ich habe noch welche des Typs W2464AK-20 und AS7C256-20PC gefunden. Könnten die evtl. auch laufen ? Danke !!!
-
Thread
Schleife + Verzögerung (mega8/Bascom)
Also, bis lang habe ich das hier: $regfile = "m8def.dat" $crystal = 3686400 Dim X As Word Dim Y As Word Dim Z As Word Dim B As Bit Do While Y = Y 'Einfach mal "laufen" lassen If X <> X Then ' Wenn X sich geändert hat X = Getadc(0) Cls Upperline Lcd X B
Versuchs mal damit: $regfile = "m8def.dat" $crystal = 3686400 Dim X As Word Dim Y As Word Dim Z As Word Dim B As Bit X = Getadc(0) Do While Y = Y 'Einfach mal "laufen" lassen Endlosschleife? b=0 If X <> Getadc(0) Then ' X = Getadc(0) Cls
-
Thread
AVR Butterfly AVRProg
############# | 100% 0.00s avrdude: Device signature = 0x1e9405 avrdude: safemode: lfuse reads as E2 avrdude: safemode: hfuse reads as 98 avrdude: safemode: efuse reads as FF avrdude: reading input file "maingcc.hex" avrdude: input file maingcc.hex auto detected as Intel Hex avrdude: writing
### | 100% 0.01s avrdude: failed to write flash memory, rc=-1 avrdude: safemode: lfuse reads as E2 avrdude: safemode: hfuse reads as 98 avrdude: safemode: efuse reads as FF avrdude: safemode: Fuses OK avrdude done. Thank you.
-
Thread
Entladungsschutz Arduino AA Akkus
filter capacitors *less than 5mm* apart. In addition, keep all connections to the FB and LX pins *as short as possible*. In particular, when using external feedback resistors, locate them *as close to FB as possible*." Wenn im Datenblatt dann kein /Beispiellayout/ zu finden ist, gibt es meist ein
switching-regulators/MAX1797EVKIT.html Und dort sieht man dann auf der Seite 4 der Doku, was mit "as short as possible" gemeint ist. Stefan ⛄ F. schrieb im Beitrag #6515266: > Dieser Aufsatz von dir wird viel zu selten empfohlen, finde ich. Vermutlich meinen manche, der wäre aufgrund des Alters
-
Thread
Micronucleus - USB-Bootloader für ATtiny
interrupts, see section * "Optional MCU Description" below, or you can connect D- to the interrupt, as * it is required if you use the USB_COUNT_SOF feature. If you use D- for the * interrupt, the USB interrupt will also be triggered at Start-Of-Frame * markers every millisecond.] */ [/code]
released the Trinket and Gemma dev boards which use the ATtiny85 and the same boot loader mechanisms as I did. Their boot loader is not as space efficient as micronucleus, as their goal was to work with an unmodified AVRDUDE executable. " https://github.com/adafruit/Adafruit-Trinket-Gemma-Bootloader
-
Thread
Den Begriff massiv aus dem deutschen Wortschatz entfernen
massive Anzahl an Suchergebnissen für massiv in den letzten 24 Stunden http://www.google.de/search?as_q=massiv&hl=de&num=10&btnG=Google-Suche&as_epq=&as_oq=&as_eq=&lr=lang_de&cr=&as_ft=i&as_filetype=&as_qdr=d&as_occt=any&as_dt=i&as_sitesearch=&as_rights=&safe=images
-
Thread
Mikrokontroller Problem: Uhrenquarz nach Reflow schwingt nicht
@Hanns: Werde die UB-Flags nächste Woche mal einpflegen. Du meinst nach dem setzen des AS2 Bits auf die UBs warten, richtig? [code] //Timer2 ASSR |= (1 << AS2); // Auf UBs warten: while(ASSR & 0x1F) { _delay_ms(1); } TCCR2A = 0x00; TCCR2B |= (1 << CS21) | (1 << CS20); TIMSK2
auf die Schnelle zusammengeschrieben. Teste ihn nächste Woche. [code] //Timer2 ASSR |= (1 << AS2); TCCR2A = 0x00; TCCR2B |= (1 << CS21) | (1 << CS20); TIMSK2 |= (1 << TOIE2); // Auf UBs warten: while(ASSR & 0x10) { _delay_ms(1); } // Interruptflag löschen: TIFR2 &= ~(1<<TOV2);
-
Thread
Bauteile auf Schaltplan bestimmen
bekommt man die? Oder kannst du mir sie geben? I wür sobad i i dr schaul zu anam blechtrottel kumm as aktuelle file abalada, kas dr den schicka. Falls du die i dr it vo dr htlr (halt as netzwerk) a kläle uskennsch kaschas unter am W laufwerk unter werkstadte elektronik magazin abalada. >> OT: Ich
> I wür sobad i i dr schaul zu anam blechtrottel kumm as aktuelle file > abalada, kas dr den schicka. Falls du die i dr it vo dr htlr (halt as > netzwerk) a kläle uskennsch kaschas unter am W laufwerk unter werkstadte > elektronik magazin abalada. I
-
Thread
Schaltregler Layout
Insbesondere der Eingangs C sollte näher an das IC. Laut TI: 'The input capacitor should be placed as close as possible to the IC pins as well as the inductor and output capacitor.' 5. Versuche die GND Leitung so breit wie möglich auszuführen. 6. Halte die FB Leitung so entfernt wie möglich von
Insbesondere der Eingangs C sollte näher an das IC. Laut TI: 'The > input capacitor should be placed as close as possible to the IC pins as > well as the inductor and output capacitor.' Wird gemacht! > 5. Versuche die GND Leitung so breit wie möglich auszuführen. Ja ich schaue mal, die noch
-
Thread
Eisenbahnsteuerung mit Atmega16
einen AVR als >Slave zu verwenden! Komisch. Atmel AppNotes: AVR311: Using the TWI module as I2C slave AVR312: Using the USI module as a I2C slave AVR315: Using the TWI module as I2C master Am besten erstmal an der Quelle suchen. MfG Spess
AVR als >>Slave zu verwenden! > > Komisch. Atmel AppNotes: > > AVR311: Using the TWI module as I2C slave > AVR312: Using the USI module as a I2C slave > AVR315: Using the TWI module as I2C master > > Am besten erstmal an der Quelle suchen. > > MfG Spess Vielen Dank. Das habe
-
Thread
avr-as .data Section Alignment
Liebe Forenten, ich finde keine Loesung, ein Array von Bytes im SRAM eines AVR an Adresse 0x100 zu legen. Das Assembler Programm hat das Byte Array wie folgt: [avrasm] #include <avr/io.h> .section .data .byte 1, 2, ... .section .text [/avrasm] Ich habe bereits versucht, es mit [code] avr-ld -Tdata=0x800100 -o main.elf main.o [/code] an die gewuenschte Adresse zu zwingen, hat aber auch nicht funktioniert.
-
Thread
[V] Agfeo AS40 mit Prozessormodul
Hallo, zum Verkauf steht die Anlage mit Verbindungsmodul und S0-Modul 440. Natürlich ist auchder Deckel und die Handbücher (Original nicht kopiert) dabei. Das sie mal mit einer anderen Anlage gekoppelt war (ISDN over IP) ist auch das Prozessormodul drin, das LAN Modul gibts aber nicht mehr. Dazu lege ich noch vier Systemtelefone ST30 in Weiss dabei. Preis 150 Euro vhb.
-
Thread
AS 30 Level Meter erweitern
Schönen guten Abend Kurz zu mir: Gelernter Elektriker Gebäudetechnik, Grundlagen der Schaltungstechnik vorhanden aber Transistoren und Digitalbausteine waren nie wirklcih meins. Undzwar geht es darum: Mein Patenkind hat sich dieses : https://www.amazon.de/DROK-Musik-Spektrum-LED-Display-Musikfreunde-Elektrische/dp/B01FS964B6/ref=sr_1_2/254-8956544-3026011?ie=UTF8&qid=1488905475&sr=8-2&keywords=LED+VU+Meter VU-Meter zugelegt, welches soweit wie gewünscht funktioniert. Aber jetzt kam er zu mir und fragte ob ich da nicht noch mehr LED's anbringen könnte Wie man so ist kann man die Wünsche nicht Abschlagen
-
Thread
wer wechselt mir den AS15-F
Samsung LE37B650 mit Helligkeitsproblem Rotstich und Kantenschatten. Meine Recherche ergab das man den AS15-F wechseln sollte. Ich kann zwar technisch und Löten usw... Aber diese größe ohne Werkzeug ist ein wenig zu arg.Es gibt zwar Anleitungen aber mit über 60 ist sowas nicht leicht zuhandeln. Es hatten
Guten Tag, ich schließe mich an. Wäre jemand bereit, ein T-Con-Board mit einem mitgelieferten AS15 (Auf Postweg) auszustatten? Wenn ja, bitte PN Viele Grüße aus Niederbayern Robert
-
Thread
ESP32 received as Json
JSON data int key1 = doc["key1"]; int key2 = doc["key2"]; // Process the data as needed Serial.printf("Got Ajax Json %d - %d - %d \n", key1, key2, total); } if (request->contentType() == "text/plain") { // Handle JSON data StaticJsonDocument<200
JSON data int key1 = doc["key1"]; int key2 = doc["key2"]; // Process the data as needed Serial.printf("Got Ajax 2 %d - %d - %d \n", key1, key2, total); Serial.println( " <-----"); Mein Java Script ist folgender function toggleCheckbox(element, Value) { var
-
Thread
Poti f. AS1701 dimensionieren
Ich möchte die Lautstärke, die der Verstärker IC AS1701 (Datasheet: https://media.digikey.com/pdf/Data%20Sheets/Austriamicrosystems%20PDFs/AS1701,06.pdf), ausgibt über einen Poti regeln. Welchen Widerstand sollte ein solcher Poti in etwa haben?
-
Thread
Midi mit Bascom und AVR
Bit Dim B3 As Bit Dim B4 As Bit Dim B5 As Bit Dim B6 As Bit Dim B7 As Bit Dim B8 As Bit Dim B9 As Bit Dim B10 As Bit Dim B11 As Bit Dim B12 As Bit Dim B13 As Bit Dim B14 As Bit Dim B15 As Bit Dim B16 As Bit Dim B17 As Bit Dim C As Bit ' 3. Byte Dim Rxbyte As Byte Dim I As Integer ' --------------------------------------------------------------- ' Anlauf nach
-
Thread
Brauche Hilfe wegen Zähler Bascom
sorte leer ist. $regfile = "8515def.dat" $crystal = 8000000 Ddrb = 255 : Portb = 0 Dim A As Byte Dim B As Byte Do Debounce Pind.0 , 1 , 5gramm_in , Sub Debounce Pind.1 , 1 , 5gramm_out , Sub Debounce Pind.2 , 1 , 10gramm_in , Sub Debounce Pind.3 , 1 , 10gramm_out , Sub Loop
8515def.dat" $crystal = 8000000 Enable InterruptsConfig Clock = SoftConfig Debounce 35 Dim Zeit as Long Dim Zeitverstrichen as LongDim G as Byte Dim M as Byte Dim N as Byte Dim Fehler as Byte 'Grundeinstellungen '(Aus reiner Vorsicht.Man weiß nie was unterschiedliche Compiler jeweils anders
-
Thread
XMEGA Hardware-Bug (Kritisch) Gesperrt
Wie kann ich das denn nun nachvollziehen? Habe avr-as und acra auf der Platte: [avrasm] $ cat rjmptest.asm .org 0x000 hier: rjmp dort nop dort: rjmp hier $ avr-as -mmcu avrxmega2 -als rjmptest.asm GAS LISTING rjmptest.asm
Neue Infos: > Thank you for sharing the sequence for testing. I tested with this as > well, and the code seems to enter into the endless loop as expected. > Can you please share a screen capture video of how the code behaves at > your end? Is it coming out of the loop in Xmega E
-
Thread
Batchdatei: Aufruf von rm produziert Fehler
batch file cannot contain more than either 2047 or 8191 characters (as appropriate to your operating system): cmd.exe /k ExecutableFile.exe parameter1, parameter2 ... parameterN This limitation applies to command lines that are contained in batch files when you
environment variables so that the environment variables contain less than either 2047 or 8191 characters (as appropriate to your operating system). For example, if the PATH environment variable contains more than either 2047 or 8191 characters (as appropriate to your operating system), use one or more
-
Thread
8CH AC-Dimmer, was haltet ihr von diesem Board?
5; unsigned char off = 95; void setup() { pinMode(channel_1, OUTPUT);// Set AC Load pin as output pinMode(channel_2, OUTPUT);// Set AC Load pin as output pinMode(channel_3, OUTPUT);// Set AC Load pin as output pinMode(channel_4, OUTPUT);// Set AC Load pin as output pinMode(channel_5, OUTPUT);// Set AC Load pin as output pinMode(channel_6, OUTPUT);// Set AC Load pin as output pinMode(channel_7, OUTPUT);// Set AC Load pin as output pinMode(channel_8, OUTPUT);// Set AC Load pin as output attachInterrupt(1, zero_crosss_int
-
Thread
C-Prog. (ATmega16) für IR-Sender
hier mal den Code wieder angehängt bekomme beim kompilieren folgende Fehler: 55: lvalue required as left operant of assignement 64: lvalue required as left operant of assignement Dann sind da noch mehrere Warnings aber solange es keine errors sind ;) Kann mir wer verraten was da falsch ist resp
unsigned char auf sich hat... muss da kein define oder so hin? resp. das ist doch wie bei VB das dim i as ... ??? oder nicht??