PyObject* py_setImageSensor(PyObject *self, PyObject *args)
{
  return py_setSensor(self, args, "ImageLabel");
}
Esempio n. 2
0
PyObject* py_setGraphSensor(PyObject *self, PyObject *args)
{
  return py_setSensor(self, args, "Graph");
}
Esempio n. 3
0
PyObject* py_setBarSensor(PyObject *self, PyObject *args)
{
  return py_setSensor(self, args, "Bar");
}
Esempio n. 4
0
PyObject* py_setRichTextSensor(PyObject *self, PyObject *args)
{
  return py_setSensor(self, args, "RichTextLabel");
}