Cooking with Vera
From MiOS
(Difference between revisions)
(→Example) |
(→Ingredients) |
||
Line 13: | Line 13: | ||
*Vera (tested with firmware 1.5.622) | *Vera (tested with firmware 1.5.622) | ||
*RFXtrx433 USB transceiver (tested with firmware v51; recommended firmware: minimum v58???, support for negative temperatures: v66???) | *RFXtrx433 USB transceiver (tested with firmware v51; recommended firmware: minimum v58???, support for negative temperatures: v66???) | ||
− | *RFXtrx433 plugin | + | *RFXtrx433 plugin: http://code.mios.com/trac/mios_rfxtrx |
*Rubicson thermometer 48659 | *Rubicson thermometer 48659 | ||
**http://www.kjell.com/sortiment/hus-halsa-fritid/kokstillbehor/matlagningstermometrar/tradlos-stektermometer-p48659 | **http://www.kjell.com/sortiment/hus-halsa-fritid/kokstillbehor/matlagningstermometrar/tradlos-stektermometer-p48659 | ||
Line 24: | Line 24: | ||
*Personal Barbecue Assistant (PBA) plugin | *Personal Barbecue Assistant (PBA) plugin | ||
*Your favourite food | *Your favourite food | ||
− | |||
==Directions== | ==Directions== |
Revision as of 17:37, 18 April 2013
Contents |
Disclaimer
USE AT YOUR OWN RISK
Please note that the United States Department of Agriculture recommends a temperature of at least 63 °C (145 °F) for beef, veal, lamb steaks and roasts in order to prevent foodborne illness.
Ingredients
- Vera (tested with firmware 1.5.622)
- RFXtrx433 USB transceiver (tested with firmware v51; recommended firmware: minimum v58???, support for negative temperatures: v66???)
- RFXtrx433 plugin: http://code.mios.com/trac/mios_rfxtrx
- Rubicson thermometer 48659
- http://www.kjell.com/sortiment/hus-halsa-fritid/kokstillbehor/matlagningstermometrar/tradlos-stektermometer-p48659
- Suspected clones (untested):
- Manuals:
- Personal Barbecue Assistant (PBA) plugin
- Your favourite food
Directions
- Connect the RFXtrx433 to your Vera
- Install the RFXtrx433 plugin
- Install and setup the PBA plugin:
- Set ThermometerDeviceID to the device id of your wireless thermometer ("RFX Temp T9/...").
- Setup a scene with trigger "Target temperature is reached"/"Yes" and add whatever action you would like to have executed when the target temperature is reached (e.g., switch on the table light, switch on a siren, switch off the oven, play an announcement (see example below), send an email or a SMS to your guests, ...).
- Restart LuaUPnP
- Select food and gradation or set a custom target temperature (via PBA tab)
- Enjoy your meal!
Example
Example action for announcement using SAD for Squeezebox (http://wiki.micasaverde.com/index.php/Squeezebox#SAD_-_Squeezebox_Server_Announcement_Device):
PBA_DEVICE_ID = 111 PBA_SERVICE_ID = 'urn:upnp-ap15e-com:serviceId:PBA' local ft = luup.variable_get( PBA_SERVICE_ID, 'FoodText' , PBA_SERVICE_ID ) local gt = luup.variable_get( PBA_SERVICE_ID, 'GradationText', PBA_SERVICE_ID ) local announcement = 'Your meal is ready' -- for custom target temperature if ft ~= '' and gt ~= '' then announcement = 'Your ' .. tostring( ft ) .. ' is ' .. tostring( gr ) end ???urlencode( announcement ) local announcement = ''http://translate.google.com/translate_tts?tl=en&q=' .. announcement LMS_Say( LMS_ip , -- IP address of LMS LMS_port , -- CLI Port of LMS (default: 9090) player_id , -- MAC address of player message1 , -- line 1 message2 , -- line 2 message_duration, -- in seconds announcement , -- audio announcement 5 , -- duration of announcement in seconds 5 ) -- number of announcements