LDM

Поділитися
Вставка
  • Опубліковано 4 вер 2024

КОМЕНТАРІ • 212

  • @chadx8269
    @chadx8269 Місяць тому +37

    Nice Work, enjoy your channel.
    The PTAHADC could be calibration values of Pressure sensors based on Temperature.
    You have shown PTAHADA, A is for Altitude and
    PTAHADV, V for Velocity.

  • @knietiefimdispo2458
    @knietiefimdispo2458 Місяць тому +28

    The two different Air Speeds seem to be IAS (Indicated Air Speed) and TAS (True Air Speed). TAS is IAS corrected by temperature and altitude.

  • @fredfred2363
    @fredfred2363 Місяць тому +10

    Yeah, the pressure sensors monitor altitude and air speed (pitot tube).
    Exact same system used in light aircraft.
    Don't forget, in your experiment you're probably reading pressure correction, as there is ambient pressure around. Depends on how the sensor is configured.
    It is possible to use new digital MEMS microphones in exactly the same way now (home weather stations).
    Great reverse engineering! Big clive would be proud. 😀🇬🇧👍🏻

  • @JustLennyBenny
    @JustLennyBenny Місяць тому +36

    Nice work Mr. Michel, interesting to see their design is not extreme, rather robust.

    • @lubumbashi6666
      @lubumbashi6666 Місяць тому +6

      I think the word you are looking for is "crude". I wouldn't be surprised if the STM32 code is not locked down. It is probably just running Betaflight. If I were designing that I would have included anti-tamper tech to make RE much harder. E.g. it would be simple matter to erase everything after launch, run from RAM. Hopefully the Ukrainians can download the code.

    • @JustLennyBenny
      @JustLennyBenny Місяць тому +1

      @@lubumbashi6666 Im sure you prob know more then me, but factor in also the production cost on a large scale, might influence such decision making. I can be wrong ofc.

    • @user-lo6hg3np8s
      @user-lo6hg3np8s Місяць тому

      @@lubumbashi6666 скачают и что?

    • @lubumbashi6666
      @lubumbashi6666 Місяць тому

      @@JustLennyBenny I was wrong, this is just an air data module collecting pressure data for altitude and airspeed. It doesn't do any flight control. It's not that interesting, it's just a component, and what it's doing is not sophisticated, no need to lock it down.

    • @henria.277
      @henria.277 23 дні тому

      The flight computers do not run betaflight. It is proprietary software but rather simple compared to the Pixhawk solution ukrainians use. They run on an FPGA, so no reversing for you. ​
      The Russians made significant changes to the base design. Flight computer and navigation modules have been changed as well as structural changes.
      @lubumbashi6666

  • @AeroGraphica
    @AeroGraphica 3 дні тому

    No one is talking about your accent because you are good at what you do 😄
    Thanks for sharing !

  • @robmacl7
    @robmacl7 Місяць тому +14

    The part choice is very much what you would see in a western design. Use of the stm32 in particular suggests familiarity with US/Europe hobby designs. But having a separate "air data computer" is more of a traditional aerospace engineering architecture.

    • @lubumbashi6666
      @lubumbashi6666 Місяць тому +1

      It is probably running something like Betaflight. It is real time and with a processor like M0+ there isn't much scope for fancy comms, so talking to satellites and overall guidance is probably on a different board.

    • @lo2740
      @lo2740 Місяць тому +3

      lol, nope in a MIL spec design, very far from that. Also that board layout is very poor and certainly not up to any western military standard, or even industrial/commercial. The datas in plain ASCI via RS232 without even a crc is also quite pathetic, i cannot think of doing such thing even in a basic comemrcial project, at the very least packed structure with checksum.

    • @MrCarGuy
      @MrCarGuy Місяць тому +4

      ​@@lo2740Isn't that the entire point? Lack of adherence to quality standards and cheap mass production. Western equivalent costs what again?

    • @ismt101
      @ismt101 Місяць тому

      ​​@@lo2740 LoL. These shahed drones are very much reliable and cheap and that is the sole point of modern kamikaze drone warfare. They get the work done.

    • @jonathanbuzzard1376
      @jonathanbuzzard1376 Місяць тому +1

      @@MrCarGuy The thing is board layout is not a production cost, it is a design cost, and frankly just show that it was not done by someone with experience as good layout doesn't take more time than bad layout for an experienced PCB designer. Protecting the messages with a CRC so you know you are getting good data is an undergraduate assignment if even that. You could just use Google and cut/paste the code in a few minutes. That all these are missing shows that while the concept might be good the execution is terrible.

  • @coolm98
    @coolm98 Місяць тому +3

    A man of taste I see, recognizing your usage of (probably mil spec) solid round milled pins/crimps for your jumpers/measurement test leads. I thought im the only one 🤤

    • @javaguru7141
      @javaguru7141 Місяць тому

      Can you elaborate? I can't find the ones you mean in the video. Thanks

  • @grhinson
    @grhinson Місяць тому +69

    I wonder if they use PCBway

    • @Elec-DIY
      @Elec-DIY Місяць тому +9

      They don't seem to have the PCBway tracking silkscreen code on them, although I think there's an option to avoid it.

    • @rkan2
      @rkan2 Місяць тому +10

      Probably a similiar service, who it is, doesn't really matter. They could even have their own China imported PCB factory...

    • @avadhutagita3741
      @avadhutagita3741 Місяць тому

      "I wonder if they use PCBway"
      Who?

    • @Yulian.Mladenov
      @Yulian.Mladenov Місяць тому +3

      @@avadhutagita3741 The Iranians.Shahed drone manufacturers.

    • @serjioalvarez
      @serjioalvarez Місяць тому

      @@rkan2 Five factory's

  • @tHaH4x0r
    @tHaH4x0r Місяць тому +24

    Quite simple, which makes sense. Cheap to produce and less to go wrong.
    I am surprised by the shear volume of data that it throws onto the serial bus. Firstly If the data is only used within the drone I didn't expect strings, rather just mapping the values directly to bytes. Secondly I didn't expect it to display things like mach number. For anything connected to that serial port it is probably much quicker to simply take the airspeed to calculate the machnumber yourself, compared to the extra wait and processing of the serial string.
    Perhaps they are using some kind of 'off-the-shelve' radio serial link to send this straight back to a PC for direct viewing. Which makes me wonder, how does the navigation work? As there's no GPS here it must be somewhere else and connect through that 9pin connector. It doesn't seem to squirt out any data request messages on the serial bus, so then how is it getting that kind of navigation info?
    Or perhaps this module is only for the air pressure and temperature calculations, making most processing on the drone quite distributed. But again, if the serial bus is only used 'internally' in the drone, I don't understand why they transmit the information over serial in string format.

    • @nullptr472
      @nullptr472 Місяць тому +11

      The processor consuming this data likely has an excess of processing power vs. the cost of doing string processing. Binary communication on the otherhand increases the cost with respect to communication between teams responsible for different parts of the drone and makes basic tooling more difficult -- eg. if you were validating the module with a test fixture using csv allows you to directly dump the data and throw it into a spreadsheet.
      Mach number is not solely dependent on airspeed. Keeping the 'intelligence' for this calculation in the instrument makes sense

    • @tHaH4x0r
      @tHaH4x0r Місяць тому +18

      @@nullptr472 I seriously doubt that there's a big team involved in this product, at least the electronics side. The design as shown is quite simple, and is even lacking some proper filtering and protection on the PSU input. (At least they put TVS diodes on the RS232 lines).
      My point was not about the processing power of processing strings persé, rather about the time it takes to transmit. The Shahed seems to have a max airspeed of 185kmh, so for the accuracy stated it could easily fit in a 16 bit value. Now it is transmitting 5 bytes for the same information. There's about 4 values per line, so that could save 12 bytes. You can skip the commas, another 5 bytes. Skip that weird pre-amble (PTAHAD*,B) which is constant anyway, saves you 7 bytes. Drop /r/n and you save 2 more.
      Thats 26 bytes per line even with such simple minimal effort. At 19.2kBaud that would shrink the time to transmit by almost 14ms. That is quite significant for the minimal amount of effort required.
      Even if time delays or data rate are not a problem (which it probably isnt), it means that you could slow the bus datarate down and get things more robust.
      Anyone that is able to design and test such boards, has practically no difference in basic tooling between raw bytes, or string data. Most serial loggers can display and log raw serial data without any trouble, never mind the abundance of cheap logic analyzers and oscilloscopes, or writing a simple python script of a few lines. If this serial data is used by another uc, it might even be easier to process the raw byte data rather than having to decode the string (always tedious). Also whether this was designed by a team or not, just having a list the byte structure commands is not any more difficult than having a list of possible strings and their structure to communicate. There is still the same number of inter-team communication interfaces to keep track of, just in a different format.
      tl;dr In my opinion, it is not any more difficult to use bytes, nor would it cause more difficulty in working with teams.
      Honestly I strongly suspect the choice of using strings is more down to quickly wanting to hack something together, or not having the knowledge to do it in a better way. An experienced engineer wouldn't have much trouble implementing it with raw data values, but for someone only used to arduinos and/or less experience with embedded, it seems more challenging than just throwing strings around.
      Also regarding the mach number, this device is not going supersonic. I doubt the mach number is relevant at all for their control as stated the max airspeed is

    • @posmoo9790
      @posmoo9790 Місяць тому +7

      When you don't have a parasitic arms industry to feed you can make some pretty cool stuff for a reasonable price.

    • @cogoid
      @cogoid Місяць тому +14

      This is just the *Air Data Computer*, which means it measures the air speed and barometric pressure. The flight controller is a separate module. The jamming resistant navigation receiver is another unit, and the radio link is yet another. And then there is other stuff such as engine controller, power systems, etc.

    • @nullptr472
      @nullptr472 Місяць тому +3

      @@tHaH4x0r I take your point about data latency and channel capacity
      > Honestly I strongly suspect the choice of using strings is more down to quickly wanting to hack something together, or not having the knowledge to do it in a better way. An experienced engineer wouldn't have much trouble implementing it with raw data values, but for someone only used to arduinos and/or less experience with embedded, it seems more challenging than just throwing strings around.
      The whole philosophy behind this drone is being low-cost and still effective. Part of that must come from lower development costs and understanding the 'good enough' point during development. Based on real-world performance they've clearly met the 'good enough' threshold. With respect to the 'cost' of a string protocol I do not doubt that tooling could be created to perform whatever binary conversions are required pretty easily, however, the cheapest tools are the ones that don't exist and the ability to 'eyeball' some raw output without consulting a spec is valuable (eg. sanity checking).
      Iran has some pretty sophisticated weapons systems so I have no doubt their weapons developers have access to good talent (I seriously doubt these people are 'arduino jockies' or whatever). My money is on the developers of this system being expeditious (if you want to call it 'hacking something together' that's your prerogative), and again the proof is in the results.

  • @mattwietlispach7606
    @mattwietlispach7606 Місяць тому +6

    Very cool Michel! I remember when Collins was developing these types of air pressure sensors in the early 80s and it took a lot of experimentation back then to get it right. They were used, of course, as sensor inputs for the air data computers at the time. I wonder if the same sensor technology went into this drone's sensors? Now we take for granted that things like 3" backup indicator sensors are as small as these. Makes me curious how these sensors work.

    • @6Diego1Diego9
      @6Diego1Diego9 Місяць тому +1

      there's absolutely no way this is the same technology. for example the ADC is probably much less accurate than whats used in commercial aerospace

    • @fredfred2363
      @fredfred2363 Місяць тому

      Yeah, the old technology has been surpassed years ago. You can actually get a flight controller board for a drone/quad thing that has all this on board- for "altitude hold" for hovering like an aerial platform.

    • @tHaH4x0r
      @tHaH4x0r Місяць тому +1

      No idea how the sensors worked in the 80s, but these types of pressure sensors are generally MEMS. They contain a membrane separating two cavities. One cavity is connected to the input, and the other is either sealed (for absolute pressure sensors) or fed to the other input (differential pressure sensors).
      Deflection of the membrane is measured through capacitive or strain gauge sensors, of which the signal is processed and scaled/calibrated.
      Could you elaborate on the technology those early generation sensors were using? I am sure it would be very interesting.

    • @6Diego1Diego9
      @6Diego1Diego9 Місяць тому

      @@tHaH4x0r they were probably all analoge

    • @satipsrl5207
      @satipsrl5207 Місяць тому

      you can find a lot of pressure sensores , absolute differential, pwm output , linear output....just click at rs components catalogue

  • @plemli
    @plemli Місяць тому +10

    06:05 value 23.1 could be pressure in inches of mercury (782 hPa)

    • @piotrbudowlaniec9160
      @piotrbudowlaniec9160 Місяць тому +11

      Or temp in C degre

    • @bobsmith369
      @bobsmith369 Місяць тому +1

      @@piotrbudowlaniec9160 The temperature probe seems to be external, unless one was connected for the test

  • @UFAnders
    @UFAnders Місяць тому

    Add this subject matter to the list of reasons I appreciate your channel!

  • @gutsshots1063
    @gutsshots1063 Місяць тому +3

    T’a fait du bon boulot 😉 merci

  • @sashatc
    @sashatc Місяць тому +1

    C most likely stands for conditions and have one or two temperature measurements and also has to have QNH/pHg sea level atmospheric pressure - only question where this data would come from as it is weather dependent at sea level, maybe read from RS232

  • @Frankey2310
    @Frankey2310 Місяць тому +4

    You don't know the "signification" of 23.1? What's the room temperature in your lab, Michel?
    It would make total sense for this slightly bizzare board (simultaneously over- and under-engineered) to measure air temperature, as it infuences air density, a factor in the pitot-static airspeed formula. It's not THAT significant, though, so one could just get away with reading temperature inside that cast iron box instead of overboard.
    If I was a betting man, I'd say the sensor is inside the absolute pressure sensor, which is a common thing and which explains why it would vary as you compress/decompress the air in its inlet (aside from just other components heating up the PCB).

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +3

      I have the datasheet of this sensor (next video) and there isn't any temperature measurement inside, except for correction purposes.
      Edit 2024/07/18: You're maybe right, it seems that the temperature can be read from the part.

  • @rfekztjpkrpd4988
    @rfekztjpkrpd4988 Місяць тому +5

    Kinda interestting that they don't use smaller (0402, 0603) caps for e..g the microcontroller.
    Also no glue or anything for the DCDC

    • @serjioalvarez
      @serjioalvarez Місяць тому +2

      Потому что 1206 Россия производит сама.

    • @martin-vv9lf
      @martin-vv9lf Місяць тому

      they should put the smt components on one side for cheaper assembly.

  • @minglv
    @minglv Місяць тому +11

    What are the models of the two atmospheric sensors?

  • @cogoid
    @cogoid Місяць тому +6

    Nice. I wonder if this thing prints any additional information immediately after it powers up? Maybe it reports the version of firmware or something like that?

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +5

      There is nothing but a first string with incorrect values.

    • @hamzaarif7249
      @hamzaarif7249 Місяць тому +1

      @@lelabodemichel5162 waiting for a video on anti tank missile

    • @youtubeurevil
      @youtubeurevil Місяць тому

      @@lelabodemichel5162 Can you not do a memory read on the micro controller? Compiled program should be in there ( i bet it involves a lot of AD conversion and a simple algorythm stolen from somebody )

  • @Mr1Spring
    @Mr1Spring Місяць тому +22

    Very nice. Can you read out the memory?

    • @VEC7ORlt
      @VEC7ORlt Місяць тому +7

      What is there to read?
      Init
      Read sensor
      Put to UART
      GOTO 10?

    • @Mr1Spring
      @Mr1Spring Місяць тому +2

      @@VEC7ORlt firmware in the microcontroller

    • @VEC7ORlt
      @VEC7ORlt Місяць тому +1

      @@Mr1Spring I know what it is, I just transcribed/disassembled it for you.

    • @Mr1Spring
      @Mr1Spring Місяць тому +4

      @@VEC7ORlt well, dissasmbly of the code might reveal something interesting like who programmed it, what tools they used etc. Forensic stuff.

    • @ergosum5260
      @ergosum5260 Місяць тому

      @VEC7ORlt scaling values woukd be useful as well as the input source (pins) for the unknown numbers like 0.07
      Possibly a missing temperature sensor.

  • @mirzahosein2261
    @mirzahosein2261 Місяць тому +4

    great work..

  • @fredfred2363
    @fredfred2363 Місяць тому +4

    The pressure sensors are similar to car MAP sensors.

    • @satipsrl5207
      @satipsrl5207 Місяць тому +1

      generally are bridged resistors in elastometric matrice configured as wheatstone bridge , also versions with op amp buffer inside...devices in car map sensors are can bus networked for avoiding disturbances and auto calibration facilities

  • @keysejkeysej
    @keysejkeysej 15 днів тому

    M. Waleczek- very Polish sounding name ;) do you have family in PL? greetings from Poland- you have tremendous knowlage and passion to this!

  • @user-wd9uz1ng4p
    @user-wd9uz1ng4p Місяць тому +6

    Can we have an open-source Shared?

    • @user-sr6pi5lp3q
      @user-sr6pi5lp3q Місяць тому +1

      Electronic - why not? Seems not to be very complicated compared to open source fpv.

  • @revetastogne
    @revetastogne Місяць тому

    Hi Michel! I'm curious, where did you get that shahed part? Was it from Ukraine? How it ended up in your hands and with what purpose?

  • @BorgeltInstruments
    @BorgeltInstruments Місяць тому

    I'm a little surprised that as they use an STM micro that they don't use the STM LPS22H absolute pressure sensors. They are so good you can do airspeed by connecting one to pitot and one to static.
    I've built thousands of devices similar to these for our sailplane instruments and other sailplane instrument manufacturers do the same.

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому

      There is no reason for that, these two things are uncorrelated. There are other factors like price and availability.

    • @BorgeltInstruments
      @BorgeltInstruments Місяць тому

      @@lelabodemichel5162 the LPS22H is about the cheapest pressure sensor you can buy and readily available. I suspect the Shahed's avionics was designed before about 2017.

  • @VV0RK
    @VV0RK Місяць тому +6

    how does one acquire one of these?

    • @ivekuukkeli2156
      @ivekuukkeli2156 Місяць тому +5

      These devices or parts are sold in internet; country of origin Ukraine, not a suprise.

    • @arnoldn2017
      @arnoldn2017 Місяць тому +2

      I sugggest that you wait patiently at a potential target of the Shahed 136

    • @dammitdad
      @dammitdad Місяць тому

      If these boards are from Ukraine I would be suspicious. There is no reason for Iran to use American parts.

    • @tylerhayslett9073
      @tylerhayslett9073 Місяць тому +5

      Yes there is, Iran doesn't have a domestic tech industry that produces competing parts.

    • @BertoldVdb
      @BertoldVdb Місяць тому +1

      ​@@dammitdadWhy not? These components are all so standard that their trade can't be effectively restricted. Also everything has at least one second source (except maybe the pressure sensors, idk which ones they are)

  • @ArnaudContet
    @ArnaudContet Місяць тому

    The altitudes correspond to feet, not meters.

  • @reinerfranke5436
    @reinerfranke5436 Місяць тому +3

    As the STM get so rare at the pandemic that washing machine controller get desoldered the secondary sanction should be increased level by level. Not as this complete stop any chips go there but it will have the opportunity to uncover the hidden traces of delivery.

    • @JonaJona
      @JonaJona Місяць тому

      How do you want to achieve that? Stop producing electronics for western companies in China entirely? They probably have enough STMs stockpiled in China for years of Shahed manufacturing

    • @artip777
      @artip777 Місяць тому +6

      Oh my dear! You're make me donate my washing machine! 😁 STM32 контроллеры не самые последние на свете. Есть CH32V, а также отечественные контроллеры. Вы переоцениваете свои санкции.

    • @reinerfranke5436
      @reinerfranke5436 Місяць тому

      @@artip777 Yes, do not overestimate life. Btw there is a chinese STM which remove some bugs, exact which are coded out for the orginal. This stop car manufacture for simply hardware swap.
      You make me curious as i know chips very well. What mean domestic STM?

    • @artip777
      @artip777 Місяць тому +1

      @@reinerfranke5436 I meant not the STM, Russia produces variety of MCUs. Like Микрон, Ангстрем, Миландр and НИИЭТ. All of them already under sanctions for 2-5 years. That's simple to swap this hardware, not a big deal.

    • @fluke196c
      @fluke196c Місяць тому +1

      @@artip777 Оставайся сильным товарищ

  • @craigrmeyer
    @craigrmeyer Місяць тому +1

    How did you get this PCB anyhow?

  • @ivekuukkeli2156
    @ivekuukkeli2156 Місяць тому +5

    It is very clear, that there are very few countries in the world, which design electronic components. Manufacturing is more diversited, for example: chips in Germany, packing in Vietnam, storage in Usa, selling in internet.

  • @ermuhambetcalmenov8104
    @ermuhambetcalmenov8104 Місяць тому

    Thank you sir

  • @norm2007
    @norm2007 Місяць тому +1

    Bonjour Michel, beau travail! On peut comprendre que c'est un morceau d'épave de drone ou de ce qu'il en restait.

    • @Nayel-Khouatra
      @Nayel-Khouatra Місяць тому

      Je me demande quand-même où il peut les trouver 😂 actuellement je suis en train de développer un drone agriculteur et j'ai besoin de ce genre de capteurs mais je sais pas où en trouver ni comment les choisir, je me demande s'il est possible de trouver sur eBay cette carte électronique peut-être que je pourrais l'utiliser sur le drone

    • @mohamedbelafdal6362
      @mohamedbelafdal6362 Місяць тому +1

      @@Nayel-Khouatra si tu veux une large selection d'électronique pour des essaies je recommande aliexpress, mais il faudrait s'orienter vers un fournisseur plus fiable comme LCSC ou un autre fournisseur européen

    • @Nayel-Khouatra
      @Nayel-Khouatra Місяць тому

      @mohamedbelafdal6362 Je commande souvent sur Aliexpress. Récemment, j'ai passé une commande chez JLC PCB pour un montage avec des composants de LCSC. Tout se passe bien jusqu'à présent, mais je ne sais pas comment choisir les capteurs différentiels. Aurais-tu des conseils à ce sujet ?

  • @TheRadeonVideo
    @TheRadeonVideo Місяць тому +2

    DB9 connector, RS-232, NMEA-like protocol and overall "generic" design. Looks like it is some off-the-shelf sensor, or local clone of such part.

    • @user-qm7ii8fq9e
      @user-qm7ii8fq9e Місяць тому +1

      what connectors & phys you prefer & why?

    • @topduk
      @topduk Місяць тому

      Later on the strings are likely combined with the positioning output stream and the line prefix would just serve to differentiate.

  • @AndyHullMcPenguin
    @AndyHullMcPenguin Місяць тому +1

    Did you figure out the temperature sensor? I would guess it will be a jellybean part, probably a 10K ptc.

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +1

      It has a small impact in one output value, nothing relevant. The value must be below 150 Ohms, because a resistor of 470 Ohms is connected to the TL431 which gives a constant current of 2.5/470=5,3mA. Therefore the maximum resistance is (3.3-2.5)/5.3mA = 150 Ohms, even less because I have supposed a complete saturation of the transistor.

    • @cogoid
      @cogoid Місяць тому +3

      ​@@lelabodemichel5162 Maybe they use Pt100, a 100 Ohm platinum resistance thermometer?

    • @tomhajjar8257
      @tomhajjar8257 Місяць тому

      @@lelabodemichel5162 FWIW, Temp vs VTH curve is "linear" (1-2.7v) if R25=1000. Nonlinear if R25=100 (2.2-3.2v). Cannot say if this is relevant...

  • @Vatsek
    @Vatsek Місяць тому

    Good job, keep working.

  • @user-mi1fk7uc8p
    @user-mi1fk7uc8p Місяць тому

    If someone wonder what does the first word in line mean - it s a "bird da/dc"

  • @meysamabedi4806
    @meysamabedi4806 Місяць тому +6

    thanks plz analyze gnss or flight of shahed

    • @fredfred2363
      @fredfred2363 Місяць тому +3

      Yeah, I wonder if they use a stock sat nav chip or actually do circular maths to work out coordinates.
      Means there must be a programming interface just before launch, to determine route via waypoints and final destination.

    • @BertoldVdb
      @BertoldVdb Місяць тому +4

      The Shahed GNSS receiver is a very complex board with two dual input SDR chips and a big FPGA. It does the position calculation internally.

    • @henria.277
      @henria.277 23 дні тому

      ​@@fredfred2363 the Russians use the Kometa-M modules for GNSS. Everything is done in FPGA so no chance to analyze the code.

  • @dmytromykhailiuta9268
    @dmytromykhailiuta9268 Місяць тому

    why is 232, 485 or CAN not good?

  • @therealspixycat
    @therealspixycat Місяць тому

    Which pressure sensors are used?

  • @qazwsxqaz3163
    @qazwsxqaz3163 Місяць тому

    Пробовали ли вы считать код из контроллера?

  • @bimbomix9917
    @bimbomix9917 Місяць тому

    la classe

  • @SalihGoncu
    @SalihGoncu Місяць тому

    But why convert the data to ascii to transmit to the flight controller? It will have to convert it back to binary at that end. - They could have optimized it a bit more. Also PCB size could have been 1/3 of what it is there. Anyway, we learn that rocket science isn't that hard.

    • @BertoldVdb
      @BertoldVdb Місяць тому +1

      It seems to speak nmea0183. TAH is not a registered vendor code.

    • @rezah336
      @rezah336 Місяць тому

      this is just a drone, rockets is another thing and much more advanced

    • @SalihGoncu
      @SalihGoncu Місяць тому

      @@rezah336 actually no. Basic principles are the same. Guiding something in 3D without visual reference is the rocket science.

    • @rezah336
      @rezah336 Місяць тому

      @@SalihGoncu rockets flies so much faster, much harder to control and be accurate

    • @SalihGoncu
      @SalihGoncu Місяць тому

      @@rezah336 the theory and principle does not change.

  • @H33t3Speaks
    @H33t3Speaks 26 днів тому

    You can probably knock these out
    of the sky with radar pulses.

  • @anonanon5146
    @anonanon5146 Місяць тому

    OK, Glowie

  • @gumse666
    @gumse666 Місяць тому +1

    No checksum or crc

    • @akahenke
      @akahenke Місяць тому

      He is only showing the strings that are sent over serial, depending on how RS232 is used it should have checksum buildt in to the protocol.

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +1

      The two characters at the end of each string following the * is the checksum.

    • @gumse666
      @gumse666 Місяць тому

      @@lelabodemichel5162 ok, yes I see now that it's a hex value

  • @EngineerAnandu
    @EngineerAnandu Місяць тому +1

    02:46 sir please include digital schematic instead of paper schematic.thanks

  • @robertmonroe9728
    @robertmonroe9728 Місяць тому

    What is the sensor manufacturer?

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +2

      Silicon Microstructures Incorprated

    • @serjioalvarez
      @serjioalvarez Місяць тому +1

      @@lelabodemichel5162 All SMI sensors have the SMI label on top. And also the marking of the first pin. Here - clean ceramics. It's interesting what's on the other side. Are there any markings?

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +3

      @@serjioalvarez Response on next video

  • @nalakabandara5399
    @nalakabandara5399 Місяць тому

    Hi Mr.Michel,let me know how much accurate this pressure sensor to measure attitude..its practically can be use to measure attitude ,and display on screen

  • @dammitdad
    @dammitdad Місяць тому +1

    Why didn't they use ESP processor? This board doesn't do anything complicated. All the necessary parts can be sourced from China

    • @topduk
      @topduk Місяць тому +2

      That's an STM32G series, the question is really why not the Chinese version of the STM32F103.

  • @ural859
    @ural859 29 днів тому

    The descendants of the prince of Persia are a smart people.

  • @ramjet4025
    @ramjet4025 Місяць тому

    great explanation. Now to show the item on Amazon and Ebay or where Iran obtained them

  • @paulpaulzadeh6172
    @paulpaulzadeh6172 Місяць тому +1

    🇮🇷🇮🇷🇮🇷🇮🇷💪💪💪💪💪❤️❤️❤️

  • @questy44
    @questy44 Місяць тому +16

    The PCB is poorly designed

    • @yottakm3764
      @yottakm3764 Місяць тому +3

      could you state why ?

    • @questy44
      @questy44 Місяць тому +11

      @@yottakm3764 - Crystal XTL1 is connected trough via's which is something you avoid if possible, as it may cause excessive stray inductance.
      - There is no reason to default to 1206 or 1210 packages, especially if there is already a TSSOP package on the board. Any monkey can solder 0805 and 0603
      - All of the capacitors are too far away from their intened pins, especcially bad are the row of capacitors under the STM32
      - This board could have easilly been single sided which would have cut costs and difficulty
      - The return currents of the STM32 pass by the sensor, prefferebly you would place the sensor on the edge of the board, as far away from the input connector and other circuitry as possible.
      - General component placement and routing just looks quite random and poorly done.

    • @cyberphox1
      @cyberphox1 Місяць тому +5

      You have a point but being pragmatic it is good enough as it only has a single use. It’s just works

    • @oleshalka
      @oleshalka Місяць тому +5

      @@questy44russian armed forces thank you for your support 💀🤦‍♂️

    • @codewarrior3903
      @codewarrior3903 Місяць тому +1

      @@questy44You sir just contributed to the Iranian war effort 😅.

  • @chrisbaldi5395
    @chrisbaldi5395 Місяць тому

    ok, so this is just the "avionics" module of the drone. Do you also have the "brain" which controls it and guides the drone to the designated GPS location?

    • @lelabodemichel5162
      @lelabodemichel5162  Місяць тому +3

      I have other boards from this drone but I don't know their functionalities.

  • @vpsr-014
    @vpsr-014 Місяць тому

    STM32G071 microcontroller I used in my water ionizer product 😂😂😂 wtf.

  • @EvgenyUskov
    @EvgenyUskov Місяць тому

    did not Russia already lose in May 2022?

  • @mrshyman1257
    @mrshyman1257 Місяць тому

    Датчик сеорости .

  • @arabelgarbo1869
    @arabelgarbo1869 Місяць тому

    1013.25 mbar - 200mbar = 813.25 mbar ( according to height vs altitude graph ) this should be +/ - 2000 Meters = 6000 feet (6188) !!!! when did Russians get rid off the metric system??
    It is a DID device in a device with western spice

    • @cogoid
      @cogoid Місяць тому

      I do not remember the date, but it was somewhat recently, on a historical time scale. Specifically for reporting flight level in aviation, Russians have indeed switched from meters to feet, to be like the rest of the world, and to avoid possible confusion.
      But I doubt that this is the reason for what we see in this device. It probably simply emulates some commercial Pitot sensor with an industry standard interface. We don't even know where this was designed, but it is probably manufactured in China.

  • @annaoaulinovna
    @annaoaulinovna 21 день тому

    its a bad low level technology

  • @sergeyogurtsov2869
    @sergeyogurtsov2869 Місяць тому +2

    Поделка студентов. Серьезный инженер так не сделает.

  • @xb1t2mm3ujf2
    @xb1t2mm3ujf2 Місяць тому

    It's full of Russian parts :-))))

  • @gunlover92
    @gunlover92 Місяць тому

    I get the whole cost at scale principal but everything I've seen about shahed uav are very primitive by today's standards I could build something of better quality myself (not that I would mr. Fbi sir)

    • @user-lo6hg3np8s
      @user-lo6hg3np8s Місяць тому

      а зачем? накрутить стоимость?