#!/usr/bin/env python
# -*- coding: utf-8 -*-

import samsung_phone.calendar

item = samsung_phone.calendar.Item()
item.start = [2008,  8,  8,  8,  8,  8]
item.end = [2008,  8,  8,  8,  8,  8]
item.repeat_until = [2008,  8,  8]
#item.details = "[W]Ort: bei mir...Hallo!..In diesem Termin möchte ich mir dir deine A&E (= \"Arbeits- und Entwicklu"
item.details = "" #"foo\"bar"
#[W]Ort: bei mir...Hallo!..In diesem Termin mxchte ich mir dir deine A&E (= \"Arbeits- und Entwicklu"
item.location = "bei mir" # specially broken: location = "bei mir", subject = "a\"b"
item.subject = "a\"b"
#A&E - Danny Mil"
                
connection = samsung_phone.Connection() # "/dev/rfcomm0")
connection.append(item)

#for item in connection.get_all():
#  print item
  
