I’m developing simple application with SailfishOS to control the GPIO pins of the raspberry (must to be running webiopi on the raspberry). Running this application in the emulator i can turn on/off led and other things.
Category: SailfishOS
SailfishOS SDK
Now is available SailfishOS SDK alpha version, the first impression is very good. Developing’ve found a bug in documentation of DatePickerDialog, Vesa-Matti Hartikainen suggest me to change the code in
Button {
id: button
text: "choose a date"
onClicked: {
var dialog = pageStack.openDialog("Sailfish.Silica.DatePickerDialog", {
year: 2012,
month: 11,
day: 23
});
dialog.accepted.connect(function() {
button.text = "you chose: " + dialog.dateText
})
}
}
and now it is ok.