Telecom Design SDK – TD_USER_Loop working way

After some discussions this afternoon with TD support and get a good advice from them, this post details some notice about TD_USER_Loop working way and power saving.

For those like experienced with Arduino, Telecom Design loop is not working like

while(1) {
   loop();
}

But it is called on Interrupt ; I don’t know why but I was expecting it to be called every tick (32KHz) which was a wrong assumption. In fact, this procedure is called on wake up from any interrupt. The frequency of call can’t be determined, it can be not called in a minute if no events occurs. That is why schedulers helps you to have a predictable call.

Telecom Design TD1207 – low cost sigfox transceiver

TD1208/TD1207

TD1208/TD1207

The Telecom Design TD1207 has been released. In fact this chip is a TD1208 you can’t reflash and you have to use with the builtin modem firmware. The datasheet is the same as 1208 the main difference is that you have no information about RAM and FLASH size. The TD1207 is at a lower price than the TD1208 (about -2$).

SigFox Down-Link is now available for TD chips

I was waiting for it since a long time, now it is ready ! The down-link code is available on the Telecom Design SDK version 5.0.0.

Thank to this upgrade we are now ready to receive 4 messages a day on a device and ready for device actions !

I recommend to reinstall the SDK or at least to clean all the previous build as in my case, updating from github created a lot of build issues.

Stay tuned, I’ll try and give some feedback soon !

Myteepi kickoff on crowdsourcing

imagemtpSince this morning, myTeepi project has been launched on the Ulule crowdfounding platform. This solution is a smart way to care of your distant house, it works in a context with NO internet, NO phone … No power supply ! Yes it is !

Take a look here : http://fr.ulule.com/myteepi-connecte/

 

Telecom Device TD1205 – Sigfox – Test

TD1205 - sigfox

TD1205 – sigfox

The TD1205 device is more than the usual Telecom Design Sigfox embedded circuit as TD1204 and TD1208, they are a all in one chip providing GPS antenna and RF antenna. Ready to use, to be clear you just need to plug a battery to use it.

In my point of view, for many applications not requiring more than 2 GPIOs, this product is really easy and chip way to design a SigFox product. As it costs around 55$ and you just have to add box & battery id sounds like the most affordable for small quantities. But …

This post is detailing what is specific to this chip ; read more following the link

Continue reading

SigFox arduino Raspberry PI hacking board

sigfox hack board

sigfox hack board

I assume you know a little bit who I am and what I’m doing, I’m not the one to by > 100€ to buy a one shot development board kit to test & hack a device like the Telecom Design chip. So basically I built my own with the objective to work with multiple configuration.

My “cahier des charges” was to make a board able to be installed as a dauther board on a raspberry PI,  able to support an arduino, able to run autonomously and being able to own a TD1204 as a TD1208.

It was a huge work to route it and I must recognize that it do not have all the GPIO connected as I expected but it exists, it works and it help me to build my first SigFox prototypes with success.

So, now, I propose to distribute this board to those of you looking for a such swiss knife.

Continue reading

TD1204 – How to use GPS device for geolocalization with Sigfox

The TD1204 is the GPS & Accelerometer version of the sigfox Telecom Design chip. After a previous post about the use of the accelerometers (here) I’m describing how to use the GPS module.

The embedded GPS is based on a UBX G7020 chip. This chip will give you the date, time, longitude, latitude, altitude, speed and direction of the device when activated.

Read more for programming details

Continue reading