Comments on: Satellite communication with RockBLOCK http://www.makersnake.com/rockblock/ Fri, 08 Dec 2017 18:31:47 +0000 hourly 1 http://wordpress.org/?v=4.1 By: Makersnake http://www.makersnake.com/rockblock/#comment-40692 Fri, 08 Dec 2017 18:31:47 +0000 http://www.ambglobal.com/?p=1#comment-40692 Yes of course, you can configure the data to be sent to any website/email address!

]]>
By: Kadu http://www.makersnake.com/rockblock/#comment-39899 Thu, 30 Nov 2017 23:26:34 +0000 http://www.ambglobal.com/?p=1#comment-39899 Hi MakerSnake ! I want to send datas to my own website , this is possible with this modle?

]]>
By: Makersnake http://www.makersnake.com/rockblock/#comment-38794 Tue, 21 Nov 2017 13:19:41 +0000 http://www.ambglobal.com/?p=1#comment-38794 CSQ=0 means that you’ve got no signal. Make sure that your RockBLOCK is outside with a clear view of the sky!

]]>
By: Makersnake http://www.makersnake.com/rockblock/#comment-38793 Tue, 21 Nov 2017 13:03:37 +0000 http://www.ambglobal.com/?p=1#comment-38793 It means that you’ve got no signal with the satellites! You need to make sure your RockBLOCK is outside with a clear view of the sky (ensuring the antenna is facing up!).

]]>
By: Caio Breno http://www.makersnake.com/rockblock/#comment-38477 Sat, 18 Nov 2017 20:22:41 +0000 http://www.ambglobal.com/?p=1#comment-38477 Hi,

the AT+CSQ command always returns 0. What can it be? Do I need to do any type of registration before trying to send a message?

Thanks!

]]>
By: Kadu http://www.makersnake.com/rockblock/#comment-37302 Wed, 08 Nov 2017 23:07:29 +0000 http://www.ambglobal.com/?p=1#comment-37302 Hi Makersnake!

When I was running this code , the output message was “rockBlockTxFailed” ! This have some relationship with signal strength?

OBS:When i execute the command AT+CSQ this return 0

]]>
By: Makersnake http://www.makersnake.com/rockblock/#comment-34832 Wed, 18 Oct 2017 13:31:20 +0000 http://www.ambglobal.com/?p=1#comment-34832 Yep the RI function is used to notify you that there’s a message in the satellites waiting to download (without having to do a speculative session – that could incur a credit cost).

This feature depends on a number of factors (e.g. RockBLOCK must transmit regularly, remain powered and retain a clear view of the sky at all times etc). My Python library doesn’t currently fully support this feature, but I hope to add better support for it in the future!

]]>
By: Mark http://www.makersnake.com/rockblock/#comment-34744 Tue, 17 Oct 2017 17:27:12 +0000 http://www.ambglobal.com/?p=1#comment-34744 Hi,

I am trying to understand the operation of the ring indicator, does it do something when there is a message waiting? I don’t see the state change during any testing?

]]>
By: Anton http://www.makersnake.com/rockblock/#comment-31623 Thu, 05 Oct 2017 09:32:29 +0000 http://www.ambglobal.com/?p=1#comment-31623 thanks a lot! – What a silly mistake on my end …. was indeed the baud rate
works like a charm now :)

]]>
By: Makersnake http://www.makersnake.com/rockblock/#comment-31433 Mon, 25 Sep 2017 13:16:05 +0000 http://www.ambglobal.com/?p=1#comment-31433 Always best to take a look at the library around line 80 (https://github.com/MakerSnake/pyRockBlock/blob/master/rockBlock.py#L80)

It looks like an Exception is being thrown during initial connection; so I would guess that it cannot open the port correctly.

Indeed, this line looks to be to blame: rockBlock.rockBlock(“/dev/ttyS0 19200″, self)

Try without specifying the baud-rate and it should work fine:

rockBlock.rockBlock(“/dev/ttyS0″, self)

]]>