Orca: Difference between revisions
Created page with "=== Links === frequency counter using RP2040 - https://iosoft.blog/2023/08/21/picofreq_python/ 2 channel A/D (stackable) - https://community.element14.com/products/roadtest/rv/roadtest_reviews/1582/sound_measurement_an" |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
2 channel A/D (stackable) - https://community.element14.com/products/roadtest/rv/roadtest_reviews/1582/sound_measurement_an | 2 channel A/D (stackable) - https://community.element14.com/products/roadtest/rv/roadtest_reviews/1582/sound_measurement_an | ||
6 channel ADC - https://www.pishop.us/product/6-channel-esp32c3-adc-hat/ | |||
Pair RPi to Android - https://bluedot.readthedocs.io/en/latest/gettingstarted.html | |||
=== Bluetooth === | |||
Starting with this link, https://grandorimichael.medium.com/setting-up-a-raspberry-pi-to-send-nmea-messages-via-bluetooth-to-atak-for-external-gps-integration-07e7f8bf3048 | |||
This is the summary: | |||
<code>sudo apt install bluetooth pi-bluetooth bluez python3-bluez blueman</code> | |||
<code>pip3 install dbus-python</code> | |||
Then run the bluetooth connection agent: | |||
<code>python agent.py > agent.log &</code> | |||
Then run the gnss producer: | |||
<code>python gnss_producer.py</code> |
Latest revision as of 15:44, 23 February 2024
Links[edit | edit source]
frequency counter using RP2040 - https://iosoft.blog/2023/08/21/picofreq_python/
2 channel A/D (stackable) - https://community.element14.com/products/roadtest/rv/roadtest_reviews/1582/sound_measurement_an
6 channel ADC - https://www.pishop.us/product/6-channel-esp32c3-adc-hat/
Pair RPi to Android - https://bluedot.readthedocs.io/en/latest/gettingstarted.html
Bluetooth[edit | edit source]
Starting with this link, https://grandorimichael.medium.com/setting-up-a-raspberry-pi-to-send-nmea-messages-via-bluetooth-to-atak-for-external-gps-integration-07e7f8bf3048
This is the summary:
sudo apt install bluetooth pi-bluetooth bluez python3-bluez blueman
pip3 install dbus-python
Then run the bluetooth connection agent:
python agent.py > agent.log &
Then run the gnss producer:
python gnss_producer.py