-
Thread
3,7V LiPo Akku für Projekt gesucht
zyklusverbrauch = wifi_mAsec + (sensor_dauer * sensoren_mA) + deepsleep_mAsec; Laufzeit = cap_mAs / zyklusverbrauch [/code] Ist an meiner Berechnung etwas falsch?
schon weh. x-Sekunden Senden mal Strom = Milliamperesekunden x-Sekunden Sensoren mal Strom = mAs x-sekunden Schlaf mal Strom = mAs Summe der mAs pro Tag durch Sekunden pro Stunde teilen, so schwer?
-
Thread
Programm läuft träge
0 Const Measure_success = 0 Const Measure_failed = 1 Const Measure_request = 2 Dim Frequency As Long Dim Capt_prev_val As Word Dim Capt_curr_val As Word Dim Measure_result As Long Dim Capt_result As Word At Measure_result Overlay Dim Ovf_result As Word At Measure_result + 2 Overlay Dim Ovf_ctr As Word Dim Ovf_exeed_ctr As Byte Dim Grad As Word Dim Grad1 As Word Dim Rpm As Word Dim F_str As String * 10 Dim Got_edge As Byte Dim Measure_status As Byte Config Timer1 = Timer , Prescale =
-
Thread
The NSA Back Door to NIST
Vorgang empfindlich bremsen würden. Hingegen ist es sehr viel effizienter, per CSPRNG den Schlüssel für AES zu generieren und dann mit AES CBC weiter zu arbeiten. CSPRNG = cryptographically secure pseudo-random number generator https://en.wikipedia.org/wiki/Cryptographically_secure_pseudorandom_number_generator
diesem (und anderen) Verfahren problemlos voneinander > unabhängige vollständig zufällig erzeugte AES-Schlüssel verwenden. Also > auch solche, die mit echtem Hardware-Zufall erzeugt werden. Die AES ist dann uninteressant, der Schlüssel dafür kann noch so zufällig sein, wenn die RSA angreifbar ist
-
Thread
ESP8266 & Visual Basic MAC Adresse und IP
[code] Public Shared Sub DisplayDnsConfiguration() Dim adapters As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces() Dim adapter As NetworkInterface For Each adapter In adapters Dim properties As IPInterfaceProperties = adapter.GetIPProperties
[code] 'Declaration Public Shared Function GetAllNetworkInterfaces As NetworkInterface() 'Usage Dim returnValue As NetworkInterface() returnValue = NetworkInterface.GetAllNetworkInterfaces() [/code] have phun ;-)
-
Thread
Excel VBA - Wert in Hex mit führenden Nullen
Dann programmiers Dir doch : [code] Public Function dez_to_hex(ByVal wert As LongLong, ByVal stellen As Byte) As String Dim l As Byte dez_to_hex = Hex(wert) l = Len(dez_to_hex) If l < stellen Then dez_to_hex = String$(stellen - l, "0") + dez_to_hex End Function
DEZINHEX nicht kennt. Frank O. schrieb im Beitrag #7401402: > Public Function dez_to_hex(ByVal wert As LongLong, ByVal stellen As > Byte) As String > Dim l As Byte > dez_to_hex = Hex(wert) > l = Len(dez_to_hex) > If l < stellen Then dez_to_hex = String$(stellen - l, "0") + > dez_to_hex
-
Thread
Umstieg auf C
, das seien eigenständige Datentypen? Lies den Standard (Seite 39 ff.): > An object declared as type _Bool [...] > An object declared as type char [...] > There are five standard signed integer types, designated as signed char, > short int, int, long int, and long long int. > For each
designated with the keyword > unsigned) [...] > There are three real floating types, designated as float, double, and > long double. Was genau lässt die Vermutung offen, dass die Typen nicht eingenständig sind? W.S. schrieb im Beitrag #4645970: > Wir hatten so ein Thema vor geraumer > Zeit
-
Thread
Autoladegerät. Ic durchgebrannt leider keine Beschriftung. Bauteilidentifizierung.
immerhin eine Siebspule am Eingang... > > Nö, das ist die Speicherdrossel. Nö, das gewendelte Ding as Federdraht ist die Siebdrossel, Du meinst die mit Cu gewickelte Speicherdrossel.;-)) wendelsberg
wendelsberg schrieb im Beitrag #5398595: > Nö, das gewendelte Ding as Federdraht ist die Siebdrossel, Du meinst die > mit Cu gewickelte Speicherdrossel.;-) Nö, das gewendelte Ding dient einfach nur dazu die Platine mit dem Bippus am KFZ Bordspannungsstecker zu verbinden
-
Thread
Helmut SINGER AACHEN
Aspekten zusammenhängen. Tobias P. schrieb im Beitrag #5286563: > Der > Verkäufer sagt 'sold as-is, untested' und verlangte zu Begin 1000$. Dann ist es meist auch defekt. Glaube mal nur nicht, das der Anbieter keine Kenntnis darüber besitzt, was mit dem angebotenen Gerät ist. Zudem ist es
Ralph B. schrieb im Beitrag #5286971: > Tobias P. schrieb: >> Der >> Verkäufer sagt 'sold as-is, untested' und verlangte zu Begin 1000$. > > Dann ist es meist auch defekt. Glaube mal nur nicht, das der Anbieter > keine Kenntnis darüber besitzt, was mit dem angebotenen Gerät ist. Das
-
Thread
Schwungrad-Drehknopf
://www.patent-de.com/20040205/DE10126077B4.html Auswerteschaltung Als Aufnehmer schlage ich AMS AS5020, AS5040, AS5043 (10 Bit, können auch ein Drücken erkennen, wenn sich der Magnet ans IC nähert) oder IC-MA DFN10 (8 Bit) vor.
Ergänzung: AS5045 hat 12 Bit 0,08789° AS5030 (8 Bit) und AS5140 (10 Bi) gibt es auch noch. Habe gerade die Patentschrift mit super präzisen Zeichnungen durchgelesen, das Ding ist ja sehr kompakt, hätte ich nicht
-
Thread
Uart unter Bascom
Declare Function mpfange_daten(dat As String) As Byte Function empfange_daten(dat As String) As Byte Local Z As Byte Waitms 20 Dat = "" Do n Z = Inkey()
nicht ganz, eher so: Declare Function mpfange_daten(dat As String) As [b]String[/b] Function empfange_daten(dat As String) As [b]String[/b] Local Z As Byte Waitms 20 Dat = "" Do n
-
Thread
Kodierfehler, welche ich nicht gelöst bekommen habe
required as left operand of assignment lcd_m50530.c:133: error: lvalue required as left operand of assignment lcd_m50530.c:134: error: lvalue required as left operand of assignment lcd_m50530.c:135: error: lvalue required as left operand of assignment lcd_m50530.c:148: error: lvalue required as left operand of assignment lcd_m50530.c:164: error: lvalue required as left operand of assignment lcd_m50530.c:181: error: lvalue
-
Thread
B ASCOM, mega8, Zeit anzeigen
Programmierer das endlich lernen? ATMega8, Seite 5 If the internal Calibrated RC Oscillator is used as chip clock source, PB7..6 is used as TOSC2..1 input for the Asynchronous Timer/Counter2 if the AS2 bit in ASSR is set. The various special features of Port B are elaborated in 'Alternate Functions
Hi Aus dem Datenblatt: To use a 32.768 kHz watch crystal as the clock source for the device, the Low-frequency Crystal Oscillator must be selected by setting the CKSEL Fuses to “1001”. The crystal should be connected as shown in Figure 11. By programming the
-
Thread
ds18s20 mit Bascom unter Proteus
Versuche zum Testen mal den Code hier: Dim Id(8) As Byte , Answer(9) As Byte Dim T As Integer Dim Temp As Single Dim Celsius As String * 5 1wreset Id(1) = 1wsearchfirst() Main: Do 1wverify Id(1) 1wwrite &H44 Waitus 800 1wverify
-
Thread
Quelltext für Beenden in VB.net Gesperrt
[c] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click End End Sub [/c] So hab ich das bei mir. Ist in Visual Studio 2005 geschrieben. Gruß Tobi
dass die elegantesten Möglichkeiten ... 1. Möglichkeit: Private Sub btnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClose.Click Me.Close() End Sub 2. Möglichkeit: Private Sub btnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles
-
Thread
ATtiny84 Pin Change Interrupt
GIMSK |= _BV(PCIE0); GIMSK |= _BV(PCIE1); PCMSK0 |= _BV(PCINT10); // Use PB2 as interrupt pin ADCSRA &= ~_BV(ADEN); // ADC off set_sleep_mode(SLEEP_MODE_PWR_DOWN); // replaces above statement sleep_enable(); // Sets the Sleep
GIMSK |= _BV(PCIE0); GIMSK |= _BV(PCIE1); PCMSK1 |= _BV(PCINT10); // Use PB2 as interrupt pin ADCSRA &= ~_BV(ADEN); // ADC off set_sleep_mode(SLEEP_MODE_PWR_DOWN); // replaces above statement sleep_enable(); // Sets the Sleep Enable bit inthe MCUCR
-
Thread
Wir bauen uns einen Nuklearen-Raketenatrieb.
Manly (5:35): > [...] the criticality is maximized to burn as much fuel as possible > before it expands into space. It's kind of like trying to replicate > the prompt criticality conditons [of] the excursion that destroyed > the Chernobyl reactor, but then,
Johann L. schrieb im Beitrag #7330233: > Manly (5:35): >> [...] the criticality is maximized to burn as much fuel as possible >> before it expands into space. It's kind of like trying to replicate >> the prompt criticality conditons [of] the excursion that destroyed >> the Chernobyl reactor, but then
-
Thread
ENC28J60 wird heiss
Power Save Enable bit . . . When PWRSV = 0: The bit is ignored; the regulator always outputs as much current as the device requires.
... schrieb im Beitrag #2371490: > the regulator always outputs as much current as the > device requires. Woher weiss der Regulator das nur...?
-
Thread
AVR bootloader kernel ATmega32 *nix
etc etc. ) >>Each VDD and VSS pin pair should have >>a 0.1 μF ceramic bypass capacitor placed as close to >>the pins as possible. >>Relatively high currents are necessary >>to operate the twisted pair interface, so all wires >>should be kept as short as possible and reasonable >>wire widths
-
Thread
Brauche Unterstützung beim OV7670 (bzw. SCCB)
the WCK and RCK are kept running at least 1MHz at all times. The faster one of WCK and RCK is used as the DRAM refresh timing clock and has to be kept free running. When irregular FIFO I/O control is needed, keep the clock free running and use /WE or /RE to control the I/O as follows: [... dann folgt
im Nachgang: Revision-History von Irfanview sagt, dass Version 4.34 im Jahr 2012 n.Chr. rauskam - as time goes by ...
-
Thread
Auflösungswechsel
public struct DISPLAY_DEVICE { public int cb; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] public string DeviceName; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)] public string DeviceString; public int StateFlags; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)] public string DeviceID; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)] public string DeviceKey;
-
Thread
spice model +syntax für Übertrager gesucht
LTspiceXVII zu öffnen. In Firefox musst du einen Rechtsklick auf den Filenamen machen und dann "Save as" wählen. Natürlich könnte man auch umständlich den Text jetzt selber kopieren und in eine Datei mit der Endung .asc speichern. Siehe Diskussion hier: https://www.mikrocontroller.net/topic/496527#new
LTspiceXVII zu öffnen. In Firefox musst du einen Rechtsklick auf den Filenamen machen und dann "Save as" wählen. Natürlich könnte man auch umständlich den Text jetzt selber kopieren und in eine Datei mit der Endung .asc speichern. Siehe Diskussion hier: Beitrag "Angehängte LTSpice-Files *.asc"
-
Thread
Viele ESP8266 vernetzen?
https://gitlab.com/painlessMesh/painlessMesh/-/wikis/home > Every node acts as an accesspoint (AP) for other nodes to connect to and as a client to connect to one AP of another node. There is a limit of 4 station nodes per AP for ESP8266 and 10 for ESP32.
Latenzen so manchen Streich spielen. Netz Werk schrieb im Beitrag #6205385: >> Every node acts as an accesspoint (AP) for other nodes to connect to and as a > client to connect to one AP of another node. There is a limit of 4 > station nodes > per AP for ESP8266 and 10 for ESP32. Auch das
-
Thread
VB.NET NewLine "0a" Chr
ein. Aktueller Code: [code]Imports System.IO.Ports Public Class Form1 Dim data_received As String Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged Dim theText As String = TextBox1.Text End
End If End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Timer1.Interval = 300 Timer1.Enabled = False End Sub Private Sub Button1_Click(ByVal sender As System.Object
-
Thread
Keine AliExpress-Lieferungen nach Deutschland Gesperrt
Ich habe mal direkt bei Aliexpress nachgefragt: "According to German VAT regulation, AliExpress as a marketplace is required to collect relevant German VAT related information from sellers. As such, some sellers’ products may be tentatively blocked for purchase by a buyer located in Germany until
habe mal direkt bei Aliexpress nachgefragt: > > "According to German VAT regulation, AliExpress as a marketplace is > required to collect relevant German VAT related information from > sellers. As such, some sellers’ products may be tentatively blocked for > purchase by a buyer located in Germany
-
Thread
C versus Assembler->Performance Gesperrt
changing differential channels. Once a differential channel has been selected, the gain stage may take as much as 125µs to stabilize to the new value. Thus conversions should not be started within the first 125µs after selecting a new differential channel. Alternatively, conversion results obtained within
in widespread use throughout the money transaction and point-of-sale industry. Peripherals such as the currency detectors for coins and banknotes found in a diverse range of automatic payment equipment such as transportation, ticketing, payphones, amusement machines, and retail cash management use
-
Thread
Wie funktionieren verschlüsselte FW-Updates?
Also doch AES Verschlüsselung mit einem festen Schlüssel ... !? :-O
speziellen, oder war > sie nur so allgemein? Also sowohl, als auch. Habe ihr einen STM32. Der hat AES und (3)DES als HW-Engine. Aber nur, weil der Controller AES in HW kann heißt es ja nicht, dass es die bevorzugte und/oder beste Methode ist.
-
Thread
Überschreitung einer Linie AVR - GPS
[code] PA1 + tAs * dA = PB1 + tBs * dB [/code] Dies ist eine Vektorgleichung, da ja jeder Punkt dir x und y beschrieben ist. Also haben wir da in Wirklichkeit 2 Gleichungen [code] PA1x + tAs * ( PA2x - PA1x ) = PB1x + tBs * ( PB2x - PB1x ) PA1y + tAs * ( PA2y - PA1y ) = PB1y + tBs * ( PB2y - PB1y ) [/code] Das sind 2 Gleichungen in 2 Unbekannten (tAs und tBs) und das lässt sich lösen. Heraus kommt eine Lösungsformel, die den ganzen Zirkus den
-
Thread
Verkaufe diverse Bauteile
von Firmen aus der Umgebung. England 436A LM324N 475x TSL LM324N 5093 126x Portugal 8922AS SN74121N 100x MCP616 (I/P TPV 0827) 300x ST Electronics IRFP150 60x ST Electronics BYW99P200 90x Phillips BYV32F-200 50x NE555N 195x DIP8 Schalter 41x WC3 UAA180 19x T74LS193B1
Halbleiter? https://www.ebay.de/fdbk/feedback_profile/ankalotta?filter=feedback_page%3ARECEIVED_AS_SELLER&_trksid=p2047675.m3561.l2560
-
Thread
Grafik-Algorithmus gesucht
du dich z.B. in die X - Richtung änderst, umso mehr änderst du deine Punkte in X Richtung dim g as graphics = Me.CreateGraphics With g .ScaleTransform(Pixel) ......was man halt so braucht end with dim p as pen = New .......(color, with) For i as integer = 0 to DeltaAktuell redim p (color, with jetzt von i abhängig) dim Punkte() as PointF = {NewPointF(x1 + i,y1+i),x2,y2)} p.draw.....(punkte) EndFor Weiß nicht was du machst, dies wäre VB. Leider habe ich hier keine Software, der Code geht natürlich nicht, aber vl erkennst
-
Thread
Studio 6.1 Rebuild fails
Du ein rm ohne vorherigen Bindestrich stehen. [code] # Other Targets clean: -$(RM) $(OBJS_AS_ARGS) $(EXECUTABLES) -$(RM) $(C_DEPS_AS_ARGS) rm -rf "DotUhr.elf" "DotUhr.a" "DotUhr.hex" "DotUhr.lss" "DotUhr.eep" "DotUhr.map" "DotUhr.srec" [/code] Wenn eine der Dateien, die beim letzten
ohne vorherigen Bindestrich > stehen. > > [code] > # Other Targets > clean: > -$(RM) $(OBJS_AS_ARGS) $(EXECUTABLES) > -$(RM) $(C_DEPS_AS_ARGS) > rm -rf "DotUhr.elf" "DotUhr.a" "DotUhr.hex" "DotUhr.lss" "DotUhr.eep" > "DotUhr.map" "DotUhr.srec" > [/code] > Wenn eine der Dateien, die beim
-
Thread
Wellenwiderstand mit µC messen
and watch the display. Vary the frequency until you see that the capacitive reactance is the same as the inductive reactance (the 'dots' on the CRT will be exactly vertically aligned) as you switch from short to open. Then read the reactance and you have the answer. For example I have found rolls of RG58 as low as 42 ohm and as high as 62 ohm. It is a lesson to never pay attention to "RG" numbers ever again.
-
Thread
ATSAM4E8C SPI Hilfe
-mcpu=cortex-m4 -mthumb -D__SAM4SD32C__ -nostartfiles -L ../CMSIS_Atmel/Device/ATMEL/sam4s/source/as_gcc -T ../CMSIS_Atmel/Device/ATMEL/sam4s/source/as_gcc/sam4sd32c_flash.ld -Os -o spitest.elf ../CMSIS_Atmel/Device/ATMEL/sam4s/source/as_gcc/startup_sam4s.c spitest.c [/pre] ergibt den angehängten
pin; // Enable Pull up p_pio->PIO_OER = MOSI | SPCK | NPCS0 | aktuel_CS; // Configure pin as output p_pio->PIO_ODR = MISO; // Configure pin as input p_pio->PIO_PDR |= pin | aktuel_CS; // Remove the pins from under the control of PIO /* assign port B to periph. A and
-
Thread
Atmega ISR Prolog dauert zu lange - verschieben möglich?
OCF1A); // clear OCF1A flag (which is always set before), otherwise interrupt will directly fire as soon as enabled. Clearing is done by writing 1. TCCR1B |= (1<<WGM12); TIMSK1 |= (1<<OCIE1A); } else{ TIMSK1 &= ~(1<<OCIE1A); TCCR1B &= ~(1<<WGM12); } } [/c] Compiler
SNIFFER_STATE_RESET 42 INT1_vect: push r16 in r16, _SFR_IO_ADDR(PORTB) ; read PORTB as fast as possible push r17 in r17, _SFR_IO_ADDR(SREG) ; save SREG sbrc r16, 3 ; PB3 == LOW? rjmp INT1_SCK_HIGH INT1_SCK_LOW: lds r16, TCNT1
-
Thread
Bascom I2C Sensor ansprechen
hwstack = 128 $framesize = 128 $swstack = 128 $baud = 38400 $baud1 = 9600 Open "COM2:" For Binary As #2 Config Sda = Portd.5 Config Scl = Portd.4 Wait 2 Dim Highbyte As Byte Dim Lowbyte As Byte Dim Temp1 As Single Temp1 = 0 Do I2cstart Waitms 10 I2cwbyte 84 Waitms
occurs when a new START condition is issued between a START and STOP condition. This is referred to as a REPEATED START condition, and is used when the Master wishes to initiate a new transfer without relinquishing control of the bus. After a REPEATED START, the bus is considered busy until the next STOP
-
Thread
Atmega88 = Anfänger benötigt Hilfe!!
= 0x000102 avrdude: Expected signature for ATMEGA88PA is 1E 93 0A avrdude: safemode: lfuse reads as 0 avrdude: safemode: hfuse reads as 0 avrdude: safemode: efuse reads as 0 avrdude: NOTE: FLASH memory has been specified, an erase cycle will be performed To disable this feature, specify
0x85 != 0x00 avrdude: verification error; content mismatch avrdude: safemode: lfuse reads as 0 avrdude: safemode: hfuse reads as 0 avrdude: safemode: efuse reads as 0 avrdude: safemode: Fuses OK avrdude done. Thank you. Weiß da jemand Rat?? Danke.
-
Thread
Agilent Multimeter über LAN bedienen
Programmzeile) , dann gibt es einen Fehlermeldung (s.Anlage) Private Sub Command4_Click() Dim ioMgr As VisaComLib.ResourceManager Set ioMgr = New VisaComLib.ResourceManager Dim instrument As VisaComLib.FormattedIO488 Set instrument = New VisaComLib.FormattedIO488 Set instrument.IO = ioMgr.Open("TCPIP0::A-34461A-05403.fritz.box::5025::SOCKET") Dim idn As String instrument.IO.Timeout = 5000 Dim dblData As Double Dim strReply As String instrument.WriteString "MEAS:VOLT:AC? 100" instrument.WriteString "MEAS:VOLT:DC? 1000" instrument.WriteString
-
Thread
TLS1.2/TLS1.1 ist schon wieder aus
ab, welche Ciphers der Client bei 1.0/1.1 mag. In 1.0/1.1 bietet der Server nur ECDHE_ECDSA_WITH_AES_128/256_CBC_SHA an. Wer das bei 1.0/1.1 nicht verdaut, sondern z.B. auf die älteren RSA/DHE Varianten besteht, der hat Pech.
> In 1.0/1.1 bietet der Server nur ECDHE_ECDSA_WITH_AES_128/256_CBC_SHA an. Jau, das wird es sein - CBC wird exklusiv nur bei Verfahren mit Elliptischen Kurven angeboten, die mein Browser nicht kann. Schon verrückt: Clients die EC können, können
-
Thread
Jobchancen mit diesem Lebenslauf als Ingenieur
Gerade in einem anderen Forum gelesen: "Its easier to get Hartz4 than a job as engnieer"
Rasenmäher schrieb im Beitrag #4686205: > "Its easier to get Hartz4 than a job as engnieer" Ja natürlich ist es das. Hartz4-berechtigt ist so gut wie jeder, immerhin wollen wir hier keine Leute haben die auf der Straße verhungern. Für den Job-as-engineer muss man schon mehr
-
Thread
bitte kleines beispiel zu pin change-interrupt
DDRx Register selects the direction of this pin. If DDxn is written logic one, Pxn is configured as an output pin. If DDxn is written logic zero, Pxn is config- ured as an input pin. If PORTxn is written logic one when the pin is configured as an input pin, the pull-up resistor is activated. To
switch the pull-up resistor off, PORTxn has to be written logic zero or the pin has to be configured as an output pin. The port pins are tri-stated when reset condition becomes active, even if no clocks are running. If PORTxn is written logic one when the pin is configured as an output pin, the port
-
Thread
[V] Leerplatinen für Bastelprojekte aus alten Elektronikzeitschriften
Beitrag #7866883: > So isses zumindest bei Elecrow Zitat von elecrow: What will be regarded as different designs? Basically, if the traces/ silkscreen in your PCB is different, as long as it can be separated, no matter by v-cut, millings, or drill holes, it will be regarded as different designs
look the same, but if there is no any connection to make them into one panel, and it needs to be sent as single piece, it will be also considered as different designs. bei JLCPCB steht es weniger versteckt direkt in der Eingabemaske
-
Thread
Newbi Frage
Private Sub PDU_Str_Click() strPDU.Text = Tel_Nr + SMS_Msg() End Sub Function SMS_Msg() As String Dim intLaenge As Integer Dim intLaengenZaehler As Integer Dim intCount As Integer Dim intPDULaenge As Integer Dim intBitZaehler As Integer Dim intSchleifenZaehler As Integer Dim bytTmp As Byte Dim bytLo As Byte Dim bytHigh As Byte Dim bytMsgIn(0 To 1024) As Byte Dim bytMsgOut(0 To 1024) As Byte 'Arrays löschen (bzw mit "0" vorbelegen) For intN = 0 To 1024
-
Thread
Flash probleme
############# | 100% 0.09s avrdude: Device signature = 0x1e9307 avrdude: safemode: lfuse reads as EF avrdude: safemode: hfuse reads as D9 avrdude: erasing chip avrdude: safemode: lfuse reads as EF avrdude: safemode: hfuse reads as D9 avrdude: safemode: Fuses OK avrdude done. Thank you.
############# | 100% 0.01s avrdude: Device signature = 0x1e9307 avrdude: safemode: lfuse reads as E1 avrdude: safemode: hfuse reads as D9 avrdude: erasing chip avrdude: safemode: lfuse reads as E1 avrdude: safemode: hfuse reads as D9 avrdude: safemode: Fuses OK avrdude done. Thank you.
-
Thread
Kleines Matheproblem (Positionsbestimmung)
den Entfernungen AS und BS gleich ist, eine Gerade bilden. Aber das ist, wie die Grafik zeigen soll, *nicht* der Fall. (Unter anderem deswegen ist auch die von X4U vorgeschlagene Methode des Bogenschnittes nicht anwendbar
zwischen den Entfernungen AS und BS gleich ist, eine Gerade > bilden. Aber das ist, wie die Grafik zeigen soll, nicht der Fall. > (Unter anderem deswegen ist auch die von X4U vorgeschlagene Methode des > Bogenschnittes nicht
-
Thread
Einfache Lichtorgel bauen, aber wie ?
schrieb im Beitrag #3495249: > http://www.produktinfo.conrad.com/datenblaetter/100000-124999/116246-as-01-de-3_Kanal_Lichtorgel.pdf > (Seite 20) 404. That’s an error. The requested URL /datenblaetter/100000-124999/116246-as-01-de-3_Kanal_Lichtorgel.pdf was not found on this server. That’s all
im Beitrag #3495249: >> > http://www.produktinfo.conrad.com/datenblaetter/100000-124999/116246-as-01-de-3_Kanal_Lichtorgel.pdf >> (Seite 20) > > 404. That’s an error. Nunja, Lichtorgeln sind aus der Mode gekommen.
-
Thread
Starke Verzerrung mit LM358-Verstärker bei 15 kHz
Übernahmeverzerrungen des LM324/358/321, allerdings mit 0.5V/us auch eine miese slew rate. The old LM741 looks as though it would be quite unusable, as its very limited 0.5 V/μs slew rate allows a full output swing only up to 4.4 kHz. Horrific as it may now appear, audio paths full of LM741s were quite common
potentially damaging current flow due to the input diode. Even if the GND > pin is also grounded, such as in single supply applications, there is a > possibility that the input ground will be negative relative to the op > amp’s internal ground node. Ground differences occur when there is poor > layout
-
Thread
Coldcap Attiny85 Betriebszeit ausrechnen
Dann rechnen wir doch mal selber: 3599,5s/h * 12µA = 43.194µAs/h 0,5s/h * 7mA = 3,5mAs/h = 3.500µAs/h 43.194µAs/h + 3.500µAs/h = 46.694µAs/h 46,694µAs/h * 1h/3600s = 12,97µA Jetzt zum Kondensator: Q = C * U U_max = 5V U_min = 2,8V C = 6F Q = C * (U_max - U_min) = 6F * (5V - 2,8V) = 13,2As = 13.200.000µAs 13.200.000µAs * 1h/3600s = 3.666,67µAh Also hat deine Schaltung eine rechnerische Laufzeit von: 3.666,67µAh / 12,97µA = 282,7h 282,7h * 1d/24h = 11,77 Tagen Als Gegenprobe
-
Thread
Sensor über I²C-Bus auslesen - Bascom-Code
Stopbits = 1 , Databits = 8 , Clockpol = 0 'Konfiguration COM-Port 1 Open "com1:" For Binary As #1 'COM1 aktivieren. Declare Sub Showtemperatur() Const Hyt221write = &H90 Const Hyt221read = &H91 Dim Hyt221high As Byte Dim Hyt221low As Byte Dim Temperatur As Integer Dim Nachkommastelle As String * 2 I2cinit Start: Showtemperatur Wait 2 Goto Start Do Sub Showtemperatur() I2cstart I2cwbyte Hyt221read I2crbyte Hyt221high
-
Thread
4-bit Microcontroller / Microprozessoren?
get further away from the difficulties of Life and closer to the construction of a computer that is as easy to program as any other."
Algol-30 https://en.wikipedia.org/wiki/LGP-30 Auch schön: "The LGP-30 was commonly referred to as a desk computer." Jetzt versteht man auch woher der Ausdruck kommt, nur heisse Luft zu produzieren.
-
Thread
die Betty-Fernbedienung von Pollin als ARM-Eval Board
############################################################# CC = $(ARMPATH)/$(TOOLPREFIX)gcc AS = $(ARMPATH)/$(TOOLPREFIX)as LD = $(ARMPATH)/$(TOOLPREFIX)ld OC = $(ARMPATH)/$(TOOLPREFIX)objcopy OD = $(ARMPATH)/$(TOOLPREFIX)objdump CPUFLAGS = -mcpu=arm7tdmi-s OPTFLAGS = -O0 CFLAGS = -Wall
Fernbedienung mit den zusätzlichen Spässchen von Boop, wie dem Funkscanner Teil. Die Jungs hier machen as anderes, sie machen aus der Betty eine ARM Spielwiese für den LPC2200 - das hat nur wenig mit der Eigenschaft als Fernbedienung zu tun.
-
Thread
Sensor autark betreiben mit einem Thermogenerator
year1999/p024c.htm ...once the device starts, a bootstrap effect allows the input voltage to drop as low as 0.6 V at a 1 mA output current...
Mischkristall-Transistoren wie den BFP620, wo die mit ihrer Schaltschwelle liegen weiß ich nicht. Wo liegt eigentlich GaAs? Daraus werden aber nur FET hergestellt.