Recent Posts

Search the DAFNE Online Forums

15,751 posts found

Jan 7, 2010
Sam 64 posts

Topic: General Discussion / HbA1c

Hi Karen

Oh it doesn't half make you feel great. At least you know what your doing is right. I am pushing myslef to get below 7% then I can consider pregnancy. Although not for a few years yet but that is my main goal. The last thing I want is a rational reading findin out I'm pregnant and pushing to get tight control.

I have to say though the day I do get told the good news I will be exremley nervous, one cos i will be my first and 2 hypos, my diabetes in general. I see us females are well looked after anyway so here's to motherhood lol!!!

S x
 
Jan 7, 2010
Sam 64 posts

Topic: Site Development / Recipes

Mark

That would be good - thanks.
 
Jan 7, 2010
NiVZ 82 posts

Topic: Site Development / Meter Upload Development

Hi Marke,

The UltraSmart code is a fair bit behind the UltraEasy. What I'll try and do is get it into a state where it connects to the meter and then just dumps the raw hex requests and responses onto the screen. That way more people can have a go at decoding them.

In the meantime, for anyone who fancies a go at some code cracking, here is some code, shamelessly borrowed from someone else's attempt:


std::cout << " glucose level";
int bloodglucoselevel = 0;
bloodglucoselevel = (int) ((unsigned char) buf[6] & 0x03) << 8;
bloodglucoselevel |= (unsigned char)buf[5];
std::cout << " " << bloodglucoselevel << " mg/dL";
if(buf[6] & 0x4) std::cout << " control";
switch(buf[6] >> 4)


I'm afraid I'm struggling to understand the C++ logic operators.


I'm afraid I don't have the details of a low reading I was struggling with (and I'd have to go hypo again to re-create them!). However, two normal readings are:

If buff[5] is hex 'EC' and buff[6]is hex '20' then the BG reading should be 236 (in US format) which is then divided by 18 to give UK format of 13.1

Another reading is buff[5] is hex '95' and buff[6] is '50' then the BG reading should be 149 (in US format) which is then divided by 18 to give UK format of 8.2

Unfortunately, both these examples work if you just convert buff[5] to decimal and divide by 18, ignoring buff[6] altoghether. however, I know for high and low readings this did not work and that the value in buff[6] is significant for these.

Thanks,

NiVZ
 
Jan 7, 2010
Derek Brown 32 posts

Topic: General Discussion / Need a kick up the backside! :(

Hi everyone

Thanks so much for all the replies and encouragement, just a little bit can help a long way.

Just thought I'd give an update on how things have went in the last wee while, especially with the xmas temptation not long passed.

On the downside my Hba1c has increased from 8.8 to 9.4 BUT I now see that as a minor blip, not the end of the world.

On the upside thanks to regularly taking my Ramapril and Simvistatin my blood pressure has reduced, 120/80 last check, and the cholesterol has reduced from 6.7 to 4.8.

Icing on the cake though is the readings for the last couple of days, I'm absolutely chuffed with these. There are a couple of reds but they're not double figure so I see them as a positive thing Very Happy. My new year resolution is to test religiously, always write it down and make sensible and appropriate adjustments, slowly but surely.

Hope everyone had a sensible ;-) New Year and all the best ahead for 2010 with your diabetes control and life in general.

Derek
 
Jan 7, 2010
marke 655 posts

Topic: Site Development / Meter Upload Development

Hi,
Bit shifting, bit stuffing I should coco, for my sins I started life in 'low level' hardware programming before 'maturing' to websites. If you can email mail
us the C++ or the link where you got it I would be glad to take a look. Also any other software you have developed for the Ultra Smart. I have one of these meters so can test it as well. To be honest it would be fun to get my hands dirty with some 'real' code again, instead of all this web stuff :-)
Just email it to the address in the contact at the bottom of each page, I will receive it.
 
Jan 7, 2010
hankypanky 18 posts

Topic: General Discussion / Insulin Pump :)

hi sam Smile
i have been having issues witht he pump for example where to wear it and the tube too, i have been wearing it on my belt but keep banging it then the pump falls also when im working i have it in my pocket and that too is a pain as my fags and mobile all dont go in but im working on it i have used an elasticated belt ( like the ones in the 80's like a money belt with 4 silver buckle things that you push though then they lock) dont lol at me, im trying my thigh since yesterday and having the tube going up through my boxers (oops) but that seems to be ok but overall i am NOT missing the stinging each time i injected "ouch" i have to be patient and keep going with it as in the long run i can see it working well whew no more jabs,
Steve H

p.s. hope your doing ok in whatever your diabetes is going and hope you never ate loads like me over xmas and new year (ooooops agan )
happy new year to you and yours, speak soon take care .
 
Jan 7, 2010
NiVZ 82 posts

Topic: Site Development / Meter Upload Development

Hello,

Just to say I haven't forgotten about this. I can get the UltraEasy working, but unfortunately it appears there aren't that many people on here that use this meter.

Work on the UltraSmart has stalled. I can get the data from the meter onto the PC and I managed to figure out the date part of the entry, but I'm struggling to convert the computer (hex) numbers to real BG numbers. Some work ok, but really high or really low numbers don't seem to follow the same pattern.

Unfortunately Lifescan give you the technical specification for all meters EXCEPT the UltraSmart. Other people have managed it, so it is do-able. I've even got a C++ program that is supposed to be able to do it, but I'm struggling to understand it. Something about Bitshifting and bitstuffing. Don't suppose Marke or Simon know anything about this?

The UltraSmart would be the best meter to figure out, since it stores BG, Carbs, QI and BI taken. The Optium Xceed also looks fairly straight forward, but it is BG only and I don't have one to test with Surprised(

NiVZ
 
Jan 7, 2010
NiVZ 82 posts

Topic: General Discussion / recording, meters, software & DAFNE

Hello,

Just to say I haven't forgotten about this. I can get the UltraEasy working, but unfortunately it appears there aren't that many people on here that use this meter.

Work on the UltraSmart has stalled. I can get the data from the meter onto the PC and I managed to figure out the date part of the entry, but I'm struggling to convert the computer (hex) numbers to real BG numbers. Some work ok, but really high or really low numbers don't seem to follow the same pattern.

Unfortunately Lifescan give you the technical specification for all meters EXCEPT the UltraSmart. Other people have managed it, so it is do-able. I've even got a C++ program that is supposed to be able to do it, but I'm struggling to understand it. Something about Bitshifting and bitstuffing. Don't suppose Marke or Simon know anything about this?

The UltraSmart would be the best meter to figure out, since it stores BG, Carbs, QI and BI taken. The Optium Xceed also looks fairly straight forward, but it is BG only and I don't have one to test with Surprised(

NiVZ
 
Jan 7, 2010
hankypanky 18 posts

Topic: General Discussion / recording, meters, software & DAFNE

one touch, ultra smart it does your bg + you can enter insulin amount and also how many carbs too, i used this metre for ages and its always good to look at your patterns

Steve H
 
Jan 6, 2010
Rosemary 3 posts

Topic: Carbohydrate Counting / Watch out - Corn on the cob!

I had a problem with Corn on the Cob as well. I counted it during my Dafne course and it resulted in low blood sugars. Was told not to count it. Have carried on not counting it and seem to be ok with that. Go with whatever is best for you.
 
Jan 6, 2010
Rosemary 3 posts

Topic: General Discussion / HbA1c

I did the Dafne course in July and my HbA1c was 7.7. I am due at the hospital next week and am deperate to find out what it is now.
I have lost almost 2 stone and one of my friends said I now weigh and look exactly the same as I did before I was diagnosed in 1989!!! (apart from the wrinkles and some grey hairs!!) This made me feel great.
 
Jan 5, 2010
Mark Wilcox 6 posts

Topic: Site Development / Deleting Multiple Diary Entries

Hi. Is there any way of deleting multiple diary entries, without having to select each one at a time?

Best regards,

Mark.
 
Jan 4, 2010
marke 655 posts

Topic: Site Development / Recipes

Sam,
I will try to look at doing some pages to allow this kind of info to be entered in the near future. I have had a few problems recently getting my development system to work again after upgrading to windows 7, not microsofts fault I should add for once ;-) Its working
again now so I will try to come up with something.
 
Jan 3, 2010
Karen Westwood 38 posts

Topic: General Discussion / Forever chasing my tail - Any suggestions please

Happy New Year Liz, hope you had a good Christmas.

Just wondering how you are getting on with your results - have you managed to find out the levels of insulin that work for you yet?

Karen x

 
Jan 3, 2010
Karen Westwood 38 posts

Topic: General Discussion / HbA1c

Hi Sam,

Happy New Year to you too!

Thats great news with you HbA1c result. It feels great doesn't it when you see the results for the hard work that you have put in.

I attended DAFNE the last week in July 09 and my HbA1c at the time was 8.5% When I went to the clinic at the end of November it was 6.7%. The only time I have ever had results that good before was during my 2 pregnancies. My Cholestrol level has only reduced to 3.6 due to my change in diet which has helped me shift 5 and a half stone since June last year. Heres to more weight loss and keeping going with the DAFNE principles in the next 12 months.

Keep up the good work and hopefully you will see your result reduce even further at your next clinic appointment.

Karen x
 
Jan 3, 2010
Sam 64 posts

Topic: Site Development / Recipes

Okay here's a recipe, sorry it's taken so long!! I've made this and the CP value has been spot on with my BGs, rather than be boring I thought I'd go for the pudding. Hopefully it's simple enough for something to be devloped out of and easy for other people to read and make. I had this plain however icing sugar, jam etc can be added if prefered, you would just to to work out CP value. I have also marked the CP value next to the ingredients that have CPs in them, this was per 100g.

Title: Plain Sponge Cake

Ingredients:
8 eggs (seperated)
190g Sugar / 190 CP
95g Flour / 67CP
55g Corn Flour / 46CP
45g melted butter
1 tsp Vanilla extract

Total CPs = 303 CP (7inch round cake tin / 8 portions / 1 portion = 4CP)

Bake in pre heated oven at 180 degrees for 30 mins.

Method:
1. Seperate the egg yolks and whites
2. Mix the yolks with 2 tbls sugar until creamy
3. Mix the whites adding the rest of the sugar gradually until stiff/white
4. Add the yolk mixture to the whites folding together
5. Sive the flour/corn flour into the main mixture and fold all together
6. Add the melted butter and vanilla extract and again fold all together
7. Place a piece of baking paper onto your baking tray and pour mixture into this
8. Put in a pre heated oven for 30 mins at 180 degrees.

Add icing sugar on top or eat plain whatever you prefer. You can cut this into as many portions as you want. I got 8, could have got more I guess it depends on how much of a sweet tooth you have!!

Let me know your thoughts.

Sam x
 
Jan 2, 2010
Sam 64 posts

Topic: General Discussion / Insulin Pump :)

Hey Steve

How you getting on with your pump? Hope you're managing okay, interested to know how it feels etc.

Sam x
 
Jan 2, 2010
Sam 64 posts

Topic: General Discussion / HbA1c

Hi All

Happy New Year!

Just wanted to share that in Aug 09 before I attended the DAFNE course in Sept my HbA1c was 9.5%
I was at the clinic last week and I'm down at 8.4% woohoo!!!!
I'm over the moon and just wanted to say that by following the rules it actually does work. My eating habits haven't changed, I still have a dessert after dinner, I have a drink at weekends but I manage my insulin and carb portions. I honestly thought I'd still be around the 9ish mark but I'm not, and I hope to keep coming down.

Hope the news is good for you guys and you're seeing the results. It means a lot to know the theory does work!!

Sam x
 
Dec 30, 2009
Stew B 123 posts

Topic: General Discussion / Exercise and diabetic control

I normally exercise during the early evening, before my evening meal and well after my lunchtime QA has peaked. A couple of weeks ago I went for a run an hour or so after lunch, when my QA was still "active", and I had a terrible time - heavy legs, no energy etc. My pre-run BG was fine - about the same level as it would be when I run in the evenings, but there had been a much larger than usual drop during the run.

I guess this can be put down to the effect of "active" insulin, but the question is what should I do under similar circumstances in the future (other than avoiding exercise until any QA has peaked).? I guess the choices are to drop the QA ratio at the previous meal or to load up with extra carbs before running (regardless of the BG level at the start). Or is there another solution?

Just when I thought I knew what I was doing...

Stew
 
Dec 28, 2009
ob 1 post

Topic: General Discussion / Need a kick up the backside! :(

Hi Derek
I really really empathise with you. I did Dafne only two weeks ago and thought the whole thing made so much sense and was really practical, but I have lost my way again as regards proper recording. My HBA1c is at 8.4 so not disgraceful, but whilst I carry all the stuff, diary, pen, etc with good intentions I just can't seem to get my act together. I think what frustrates me most is no clear patterns and every time I think I have the ratios cracked, I skip a day or three of monitoring and I am back to square one. I know I am late to your post, but I guess tomorrow, post xmas I must put my foot down with myself and try to get focused properly! - GOOD LUCK with yours. OB