Page 182 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 182

<tr>

                  <td>  $row[time]  </td>
                  <td>  $row[price]  </td>

                  <td>  $row[gift]  </td>
               </tr>

            ";
            }

            mysqli_close($conn);
            ?>

            </table>







            다.  아두이노  -  라즈베리파이  연결  프로그램  소스


            from  time  import  localtime,  strftime

            import  serial
            import  MySQLdb



            ser  =  serial.Serial("/dev/ttyUSB0",9600)



            while  1:

                        conn  =  MySQLdb.connect("localhost","root","root","doll")



                        with  conn:
                                    curs  =  conn.cursor()

                                    s  =  ser.readline()
                                    ser.write("a")

                                    s  =  s[10:21]
                                    sql  =  "select  *  from  card"

                                    curs.execute(sql)



                                    check  =  0




                                                         -  175  -
   177   178   179   180   181   182   183   184   185   186   187