New Product: The Navigator Flight Controller

Поділитися
Вставка
  • Опубліковано 22 сер 2024
  • The Navigator is a robotics flight controller for the Raspberry Pi 4. It has an onboard IMU, compass, barometer, and ADC sensors as well as 16 PWM outputs and numerous serial and I2C expansion ports. The Navigator is used on the BlueROV2 underwater vehicle in conjunction with the BlueOS software, but can also be used for a wide range of robotics applications!
    It can be used on ROVs, surface vessels, drones, ground robots, and more using the open source ArduPilot flight control software. The Navigator schematic design is open source and available for reference.
    To learn more, please visit the product page:
    bluerobotics.c...
    #robotics #ardupilot #raspberrypi #blueos #drone #opensource

КОМЕНТАРІ • 132

  • @stephencronin5122
    @stephencronin5122 2 роки тому +18

    So great to see how far this company has come since the original kickstarter

  • @shanieboi86
    @shanieboi86 2 роки тому +21

    Looking forward to this when it gets a little cheaper 😀

    • @BlueRobotics
      @BlueRobotics  2 роки тому +18

      Totally! The electronics supply world is crazy right now! We intended for this product to be much less expensive but that's just not possible. We're building the next batch right now and multiple parts are multiple times more expensive than they should be. One of them is $31 right now when it should be around $2. Ouch! This current price allows us to continue making them and having them in stock.

    • @HuaweiBaru
      @HuaweiBaru 2 роки тому

      It's get cheaper if the board manufactured in china....lol
      Cmiiw

  • @BrownMInc
    @BrownMInc 2 роки тому +3

    This is SUCH great news!! My friends and I wanted to build an ROV last year but halted due to costs and trying to find a Pixhawk

  • @avi-brown
    @avi-brown 2 роки тому +1

    I love everything Blue Robotics does. Ordering one of these now.

  • @sUASNews
    @sUASNews 2 роки тому +3

    That looks fantastic, well done! Most interesting drone thing I have seen in ages.

  • @Andrew-rc3vh
    @Andrew-rc3vh 2 роки тому +5

    Hi there - nice board.
    I'd just like to mention that I've been working with I2C devices but have found they have various shortcomings and one being that lines are prone to picking up glitches that can cause the device to hang so it kills the entire bus until you cycle the power. The other problem is devices that connect to I2C operate in many different ways and is generally about getting and setting a combinations of registers which needs a custom software library to operate them. Also the address range is not that great if you want to run many peripherals. With small microcontrollers you do not want a copy of every library of every chip and besides you can't future-proof it.
    Anyway, what might be a better solution is something I was looking at which is part of the BLE specification. The sensor interface can be done on a one wire bus(called a micro LAN), the data-rate is low so it keeps interference down so you can have a longer bus, it has a larger address range and all the sensors fit a standard interface known as GATT. So lets say you want to pluck the value it currently reads then these will all be at a predefined addresses so one piece of software works for all. This system is designed for wireless bluetooth but on the market are many one-wire sensors. It's worth keeping an eye on this tech as it is developing fast.

    • @MrSiciro
      @MrSiciro 2 роки тому

      I had a Navio2 and it would regularly shutdown inflight and Emlid was never able to figure out what the causes were

    • @cyberspider78910
      @cyberspider78910 2 роки тому

      I2C could be a problem. Every device needs its own library... :(

  • @SomeTechGuy666
    @SomeTechGuy666 2 роки тому +3

    I wish it had a CANBus port or two.

  • @danekunderhill4812
    @danekunderhill4812 2 роки тому +1

    I love it!
    Wallet just told me to jump;)

  • @roysigurdkarlsbakk3842
    @roysigurdkarlsbakk3842 2 роки тому +4

    hm… wouldn't it be better to just use a microcontroller for the realtime bits and then a pi for the heavier stuff? That's what Klipper (3d printer firmware) does, and it works very well.

    • @ripper121
      @ripper121 2 роки тому

      Was also my thought.
      Because the rpi4 could hang up.
      A uC would not hang up so easily

  • @Rainbow__cookie
    @Rainbow__cookie 2 роки тому +1

    I would love to build my own drone one day
    I would still need the raspberry pi for the camra feature

  • @jeffcarter4500
    @jeffcarter4500 2 роки тому +2

    Awesome! Can't wait to get one

  • @ttaylor9916
    @ttaylor9916 4 місяці тому

    great idea... but $320 for just the expansion board :) keep at Blue robotics, make it cheaper, and for non-blue applications, and maybe you could become the new standard architecture for bigger fpvs... ?

  • @marceloniendicker8335
    @marceloniendicker8335 2 роки тому +1

    Absolutely amazing. Great job

  • @robbyjacobson1024
    @robbyjacobson1024 2 роки тому +1

    This is awesome, I will have to figure a way to get one for my classroom!

  • @TKSubDude
    @TKSubDude 2 роки тому +3

    Curious as to if this could be adapted to an RC aircraft with a tied in GPS to perform preplanned flight paths with camera support to be used as a semi-autonomous drone mapping and property management device for large farms and ranches. A pilot launches the plane then hands over control to the autopilot to map/record the property. Raspberry pi is a very efficient platform to base this on and 20 min mapping/observations should be well within the power levels of onboard batteries.

    • @esalexander5807
      @esalexander5807 2 роки тому

      I can't see why that wouldn't be possible, since Navigator is already compatible with multiple ArduPilot firmwares, although it would presumably take some development work to get the mapping working. Maybe simplest to do live recording while operating, and do the processing and map creation in post.
      Depending on what's involved though it may also be possible to do real-time mapping with a light-weight computer vision pipeline, and/or use a camera with onboard processing that can do most of the grunt work (e.g. maybe an OpenCV AI Kit camera).

  • @ToshiLab
    @ToshiLab 2 роки тому +4

    Because your board does not have an independent microcontroller, I guess now the RPi and the Linux distro will be running of the control systems. How do you guarantee strict timing constraints for the controls (as it would normally happen with an RTOS)?

    • @BlueRobotics
      @BlueRobotics  2 роки тому +2

      We currently don't use an RTOS patch in Linux. Some Linux autopilots do use the preempt patch that allows true real time performance. That may be something we consider in the future, but for now we have the flight control software set to the highest priority in the kernel scheduler and that is working really well.

    • @ToshiLab
      @ToshiLab 2 роки тому +3

      @@BlueRobotics Thanks for the clarification. I do like the Navigator approach from a DIY/Maker point of view, because I could work on only one platform on top of Linux. Very convenient. However, for a more production-level application, I think having an independent uC would a more robust solution. IMHO, having a firmware with only safe-critical controls, like pos-hold and stabilization, and adding all the high level businness logic to a companion computer (like navigation, obstable avoidance) would be the sweet spot.
      Nevertheless, I do look forward to your new innovations. :)

    • @BlueRobotics
      @BlueRobotics  2 роки тому +1

      @@ToshiLab Definitely see your opinion and it's valid! We do have to be careful with the software on the Raspberry Pi to keep things stable. Even with the Navigator it would be possible to keep the core tasks on the Navigator and use a separate Companion computer for tasks that don't make sense on the Pi. For instance, you could have a separate computer to do computer vision processing and share the results with the Navigator/Raspberry Pi.

  • @blackIce504
    @blackIce504 2 роки тому

    I don't have any use for this but i am glad its here and i hope i will have a use one day, so i can get it. great project.

  • @Liquid_Economy
    @Liquid_Economy 2 роки тому

    Very nice! But a I will wait for a while to buy it. The current price is insane!

  • @TerryLawrence001
    @TerryLawrence001 2 роки тому +1

    Nice! Maybe someday when pPi4 are available again! Maybe Pi5s will be easier too get?

    • @BlueRobotics
      @BlueRobotics  2 роки тому +1

      You can buy a Raspberry Pi 4 together with the Navigator 🙂

    • @TerryLawrence001
      @TerryLawrence001 2 роки тому

      @@BlueRobotics I love what you guys do for the ROV world, but sorry, I am done with RPi's

  • @rhadiem
    @rhadiem 2 роки тому

    Please make a small version for sub250g recreational builds. This looks awesome.

  • @mikenomatter
    @mikenomatter 2 роки тому +1

    Guys, with this pricing policy you should teach Ilon how to make money. You really want $320 for a board with a couple of sensors? I wish people in my country would buy that for at least a third of the price...

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      Hi Mike, we totally understand your concern here and we didn't want to sell it for this price either, but with the current electronics supply chain situation it's our only option. We're paying 10x the normal price for some of the components on here and we'd rather have it available, even at a high price, then not available at all! Hopefully that changes in the future!

  • @DM-lw6qx
    @DM-lw6qx Рік тому

    Nice design

  • @neonicblader
    @neonicblader 2 роки тому

    Interesting

  • @JohnHansknecht
    @JohnHansknecht 2 роки тому

    A bit overkill for what I am thinking about. Perhaps you can design a "Lite" model. Would have GPS and two motor outputs. One to control a trolling motor, and another to control a stepper or servo to control trolling motor direction by 180 degrees. If you have seen the i-pilots on modern trolling motors, it is obvious that a market exists for people to upgrade old $50 trolling motors instead of paying $1000 to $2000 for the modern trolling motors.

  • @doom_obsession4960
    @doom_obsession4960 2 роки тому +1

    Wow this is impressive! il make sure to try it out
    Maybe alongside an AI specialised board to make a perfect moving robot!

  • @PeterScream
    @PeterScream 2 роки тому

    Interesting product. Are u sure u want to name soft “BlueOS” when “BluOs” is in the market ?

  • @hansu7474
    @hansu7474 Рік тому

    I hope this is something that we can use for our project and make our lives easier!
    I'd like to find out more about the capabilities of this flight controller. Where should I begin?

    • @BlueRobotics
      @BlueRobotics  Рік тому

      Hi there! You can learn more here: bluerobotics.com/store/comm-control-power/elec-packages/navigator/

  • @timtuxworth
    @timtuxworth 2 роки тому +2

    No CAN port?

    • @BlueRobotics
      @BlueRobotics  2 роки тому +2

      No built in CAN port, but you could add CAN (or any peripheral) via a USB adapter.

  • @Gabriel-um9hm
    @Gabriel-um9hm 2 роки тому

    If only raspberry pies were available... Looks great though!

    • @esalexander5807
      @esalexander5807 2 роки тому +1

      You can opt to get a Pi 4 together with the Navigator :-)

    • @jnick6
      @jnick6 Рік тому

      I can supply, I have limited, be quick

  • @antidecepticon
    @antidecepticon 2 роки тому

    use b-roll for the close up shots.

  • @jackhildebrand4323
    @jackhildebrand4323 2 роки тому +1

    The only issues is Raspberry Pi 4 are no longer available... Most of the approved vendors listed on the Raspberry web site no longer carry them....

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      You can buy a Raspberry Pi 4 together with the Navigator 🙂

    • @jnick6
      @jnick6 Рік тому

      I can supply you, drop me a line. be quick.

  • @fazrulrusdi9557
    @fazrulrusdi9557 2 роки тому

    Awesome

  • @stephengould9385
    @stephengould9385 6 місяців тому

    I am working with a missionary group. We have a need to modify the location stored in the return to home function to a new location in the flight computer I was wondering if you know, if this can be done with your drone control card.

  • @AngryRoomba692
    @AngryRoomba692 Рік тому

    Is the navigator able to attach to other sbc like lets say a ROCKPro64? It seems like such a cool product, but sadly the raspberries are all out of stock, with no end in sight.

  • @Quantum_Dots
    @Quantum_Dots 2 роки тому +3

    Can blueOS be used with current pixhawk and raspberry pi configuration ?

    • @BlueRobotics
      @BlueRobotics  2 роки тому +1

      Yes, BlueOS will run on the Raspberry Pi 3 with the Pixhawk as well. You can read more and update here: discuss.bluerobotics.com/t/blueos-official-release/12024

  • @ivorjawa
    @ivorjawa 2 роки тому +2

    Where do you run real-time code?

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      We don't have a realtime kernel patch but we are running the autopilot code as the highest priority in the scheduler. There's a lot of power and cores in the Raspberry Pi 4 and this hasn't been an issue, but of course it is a valid concern.

    • @ivorjawa
      @ivorjawa 2 роки тому

      @@BlueRobotics I really prefer having a two system approach. It doesn’t cost that much more to add another ARM MCU, and writing real-time state machines is easier than trying to outguess a scheduler. Bonus, each system can watchdog the other.

  • @TristanGrimaux
    @TristanGrimaux 2 роки тому

    Amazing!

  • @akserc
    @akserc 2 роки тому

    Awesome!

  • @m7mds91
    @m7mds91 2 роки тому

    Amazing 🤩 ..

  • @dvsmotions
    @dvsmotions 2 роки тому +5

    No way I would trust RPi for flight control. I'll stick with microcontrollers.

    • @dollarbutt
      @dollarbutt Рік тому

      Ya absolutely not. It's clock speed (rpi4) is slower than the old school f3 controllers.

    • @choasisgoated
      @choasisgoated 2 місяці тому

      But let’s say you need to do onboard compute. What would you do? I guess you could slave a flight controller

  • @DM-lw6qx
    @DM-lw6qx Рік тому

    I wonder how a gps yaw system would work. 🤔 no needful the magnometer

  • @sportbikeguy9875
    @sportbikeguy9875 2 роки тому +1

    youtube algorithm sent me here.... i am not dissapointed..

  • @kartoffelwaffel
    @kartoffelwaffel 2 роки тому +2

    what's the speed of the control loop?

    • @jlchulilla
      @jlchulilla 2 роки тому +1

      Indeed. Doesn't sacrifice any measurable performance compared with a standalone pixhawk?

  • @orion_13
    @orion_13 2 роки тому

    I want to build a power wheel chair with this. Is that possible?

  • @bernyshomstein4191
    @bernyshomstein4191 2 роки тому +1

    Would ROV manipulators go through this?

    • @BlueRobotics
      @BlueRobotics  2 роки тому +2

      Yes! The Navigator can control manipulators like the Newton Gripper with PWM signal, or more complex manipulators such as those from BluePrint Labs, which use a serial port signal.

    • @bernyshomstein4191
      @bernyshomstein4191 2 роки тому +1

      @@BlueRobotics Thanks.

  • @dmitrykh9183
    @dmitrykh9183 2 роки тому

    Hope that Pi 4 is more stable that 2-3xx. Older versions were too unpredictable to put them on something flying...

  • @LeRainbow
    @LeRainbow 2 роки тому +1

    Cool stuff but what I don't understand is this: I am running a 30.5 mm x 30.5 mm STMF4 FC (Mamba F405 MK2) which runs Ardupilot just the same as this however it is MUCH smaller and lets you solder your cables instead of having to plug them in with extremely proprietary JST-GH plugs. Sure, you need to solder on your sensor suite as needed however isn't this the more efficient way to do it? Never understood the size of the Pixhawk, either. I understand this is a development board but you're in the business of making these for small robotics applications, right? Live video from the Raspberry PI is sent over 802.11n/ax WiFi is extremely laggy, no? Better to use a purpose built unit like an analog 5.8GHz VTX or DJI's 5.8 GHz digital video transmitter that offer low latency at quite the range.

    • @OldManCassius
      @OldManCassius 2 роки тому +2

      First off, the JST-GH is anything but proprietary, you can get sets of HUNDREDS of connectors for ~$20 on Amazon with 2 day delivery anywhere. It's nice having plugs because outside of the hobbyist space most people either don't know how to solder or are bad at it AND the plugs make it extremely straightforward and kinda foolproof (you don't have to worry about tx/rx pairing or sdl/scl pairing, it's done for you). And yeah, the navigator is larger but you have a TON more flexibility and processing power than you do on your F4 flight controller. On a miniquad it's fine having a slowish processor and one or two UARTs but that doesn't really work on a Rover/Sub. The huge number of PWM outputs, UARTs, and I2C is a must when you're getting into more specialized tasks (like the subs this board focuses on), and that extra flexibility takes space.
      In other words, your question is like asking why someone would use a dumptruck when a pickup and a shovel could do the same thing. Different tools for different jobs.

    • @LeRainbow
      @LeRainbow 2 роки тому

      @@OldManCassius thanks!

    • @esalexander5807
      @esalexander5807 2 роки тому

      On the video front, it's perhaps worth noting that Blue Robotics works primarily with tethered ROVs, and the video for those vehicles is transmitted over ethernet via the tether (wifi doesn't work underwater).
      Other vehicle types are likely to either not have a live video feed (they may just do onboard recording instead, or have no video at all), or may have an external way of transmitting it (in the same way there's no RC receiver/transmitter or GPS receiver built in - that's unnecessary extra cost for some use-cases that can't make use of those features).

  • @gearhed78
    @gearhed78 2 роки тому

    Can you talk more about how the video streaming will be integrated?

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      Hi Brad, the camera is connected by USB or the CSI camera connector. Our BlueOS software, which is running on the Raspberry Pi, has a camera manager that detects the cameras and allows them to be set up to stream to a port. For instance, for video in QGroundControl, we stream the video to a UDP port. There's a lot of flexibility built in for different cameras and stream types.

    • @gearhed78
      @gearhed78 2 роки тому

      @@BlueRobotics What is the stream latency? Any more info/documentation on this?

  • @user-ec8mo1jn4m
    @user-ec8mo1jn4m 2 роки тому

    Noob here.
    Is this better than cube orange?

  • @__rajesh-vq3nm
    @__rajesh-vq3nm 7 місяців тому

    can i used for AUV ?

  • @thebeautifulones5436
    @thebeautifulones5436 2 роки тому

    I'm going to use this to make a drug running drone submarine

  • @ChadKovac
    @ChadKovac 2 роки тому

    That looks awesome. Can you make them a ton smaller?

    • @xWood4000
      @xWood4000 2 роки тому +1

      Hopefully they can make a raspberry pi zero version, but I have a feeling it doesn't have enough IO

    • @ChadKovac
      @ChadKovac 2 роки тому

      @@xWood4000 might be a slimmed down version. I've been wanting to make my FPV quad a little more fun with programmable maneuvers.

    • @esalexander5807
      @esalexander5807 2 роки тому +2

      There are schematics, pinouts, and part numbers provided in the technical details, so perhaps there could be a community-led effort to design a smaller one for boards like the RPi Zero 2W (potentially without some of the peripherals, in a 'slimmed down' version as you've suggested).
      I'd guess that Blue Robotics won't be designing and selling another model in the near term given the current Navigator has just been released, and is sufficient for their existing vehicles.

    • @rhadiem
      @rhadiem 2 роки тому

      @@xWood4000 perhaps esp32?

  • @ZephodBeeblebrox
    @ZephodBeeblebrox 2 роки тому

    Hmm... Wonder how that'd work with a wingbourne drone.

  • @davidlee50
    @davidlee50 8 місяців тому

    I just need a cub scout to explain it to me, sry.

  • @Dronistic
    @Dronistic 2 роки тому

    Muy buen9

  • @Mattans101a
    @Mattans101a 2 роки тому

    Does it compatible with ROS ?

  • @cinemoriahFPV
    @cinemoriahFPV 2 роки тому

    It the RC input a full Uart compatible with CRFS?

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      Hi HersheyFPV, yes it is compatible with CRFS. The "RC" input is a UART with RX only. If duplex communication is required, then one of the serial connectors can be used.

  • @boonchaan
    @boonchaan Рік тому

    does it work with jetson nano?

    • @BlueRobotics
      @BlueRobotics  Рік тому +1

      Hi! These do not with Jetson Nanos! It's something we are thinking about :)

  • @iiiiil8396
    @iiiiil8396 2 роки тому

    px4?

  • @funkynerd_com
    @funkynerd_com 2 роки тому

    Very cool, but wow it is expensive.

    • @esalexander5807
      @esalexander5807 2 роки тому +1

      Chip shortage is a right pain for everyone at the moment, and if it was being sold at unsustainably low prices (compared to current component costs) it would likely end up selling out rapidly and becoming unpurchaseable / having extensive wait times like many other electronics at the moment (including alternative flight controllers).
      Hopefully chip shortage calms down soon so prices can reduce to friendlier levels, although unfortunately that likely won't be as soon as any of us would ideally like.

    • @GeoffCook1000
      @GeoffCook1000 2 роки тому +1

      This would have cost thousands a few years ago.

  • @twoshedsjackson6478
    @twoshedsjackson6478 2 роки тому

    Shame you haven't been able to buy a Raspberry Pi for love nor money anywhere in the world for months now.

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      You can buy a Raspberry Pi 4 together with the Navigator 🙂

  • @nielsstergaard4262
    @nielsstergaard4262 2 роки тому

    Your website is either hacked or is suffering from too aggressive marketing for VPN software. Too bad as I find the product interesting.

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      Hi Niels, are you saying there are VPN advertisements appearing on our website?
      We're aware there are some issues with technical details loading incorrectly at the moment, which we're working to fix, but there definitely shouldn't be any advertisements. If there are we would greatly appreciate any information you can provide about what you saw - please feel free to send us an email at support@bluerobotics.com

  • @rmworldnews5430
    @rmworldnews5430 10 місяців тому

    Please do you have a discord channel?

  • @Jerseylance1
    @Jerseylance1 Рік тому

    Can this controls AX-12 servos?

    • @BlueRobotics
      @BlueRobotics  Рік тому +1

      The AX-12 servos use serial communication from a UART. There are three UART ports on the Navigator that could be used for this, but we don't think it's supported by ArduPilot, which is the default vehicle control software used on the Navigator. If you are able to write your own software, then it could work!

  • @habiks
    @habiks Рік тому

    Why is the price so high?

    • @BlueRobotics
      @BlueRobotics  Рік тому

      Hi Habiks, the price is high because the components are quite expensive right now due to shortages! We have to pay A LOT more for some of them and keeping the price high helps us keep it available. Hopefully we can make it more affordable eventually!

  • @CountDown2012
    @CountDown2012 2 роки тому

    The price is too high. Good luck to sell it en masse.

  • @ronkirkpatrickma
    @ronkirkpatrickma 2 роки тому

    what about lidar connection?

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      The Navigator will work with any sensor that is supported in ArduPilot, so there are a number of lidar sensors that can be used!

  • @tacocat6035
    @tacocat6035 Рік тому

    Cost more than navio2, much more

  • @MarineNinja
    @MarineNinja 2 роки тому

    Hi! What is the ground robot name?

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      Hi there! It is a Rover Zero from Rover Robotics: roverrobotics.com/

  • @snap4ward
    @snap4ward 2 роки тому

    In the recent years, your prices put your products out of reach for most hobbiests.

    • @GeoffCook1000
      @GeoffCook1000 2 роки тому

      Marine technology has traditionally been very expensive. Blue Robotics low prices have changed the industry. Not long ago this would have cost thousands.

    • @snap4ward
      @snap4ward 2 роки тому +1

      @@GeoffCook1000 can't totally agree not totally disagree!. It is a very specialized area of course but, same company used to focus more on the hobbiest. I have a number of the older products back when they took open source seriously. Just going to have to look elsewhere it seems.

    • @ZeeCaptainRon
      @ZeeCaptainRon 2 роки тому +1

      Do you know all hobbyists? Have you polled them all to see if most of them think this is too expensive? I don't think it's too expensive for what it does.

    • @snap4ward
      @snap4ward 2 роки тому

      @@ZeeCaptainRon well I hope you buy one then. Give a try pricing out the BOM for the pi hat and then you might understand the markup here. Again I do value their contribution but it is overpriced.

  • @evangelosdiamantisjr.9373
    @evangelosdiamantisjr.9373 2 роки тому

    I am afraid i cannot afford it at 320$.

  • @willridgway2513
    @willridgway2513 2 роки тому +1

    Shut up and take my money

  • @SK-bl1lp
    @SK-bl1lp 7 місяців тому

    $320 for just a pcb with a bunch of connectors and gpio chip? are you serious? ) RPI PilotPi is only $100

    • @JoeSheisty-eh5jj
      @JoeSheisty-eh5jj 2 місяці тому

      who asked?

    • @SK-bl1lp
      @SK-bl1lp 2 місяці тому

      @@JoeSheisty-eh5jj have you bought?

    • @JoeSheisty-eh5jj
      @JoeSheisty-eh5jj 2 місяці тому

      @@SK-bl1lp lol yeah i have i was messing with ya but it is super reliable and a great upgrade from the pixhawk. The raspberry pi and the navigator are more organized and much more efficient. It was worth it for our underwater robot

  • @foxabilo
    @foxabilo 2 роки тому

    Shame buying a Pi is nearly impossible.

    • @esalexander5807
      @esalexander5807 2 роки тому

      You can opt to get a Pi 4 together with the Navigator :-)

    • @jnick6
      @jnick6 Рік тому

      drop me a line, I have limited stock

  • @piconano
    @piconano 3 місяці тому

    You can't be selling many at $320 for a HAT.

  • @oplavevski
    @oplavevski 2 роки тому

    Your website is not working

    • @BlueRobotics
      @BlueRobotics  2 роки тому

      Hi Ognen, we're aware there are some issues right now with loading content correctly, which we're working hard to fix. If there's something else going on we would appreciate if you can send us an email about it at support@bluerobotics.com

  • @peepopalaber
    @peepopalaber 11 місяців тому

    Complete overpriced ...