0

我已经阅读了许多其他似乎相关的问答,但无法在此处找到问题所在。

我在 Raspberry Pi 上使用了以下 perl 脚本。我希望将温度数据从 I2C 传感器记录到 sqlite3 数据库。下面的程序在从命令行运行时有效,但在从 cron 运行时无效。

我假设从 cron 运行时 i2cget 的值不正确,但我不确定如何确定我的环境 i2cget 需要正常工作的部分。

#!/usr/bin/perl

#printf '%d\n' `i2cget -y 1 0x48 0x0`
$temp = `i2cget -y 1 0x48 0x0`;
#$temp = sprintf("%d\n", $temp);
$temp = hex($temp);
#print $temp, "\n";

use DBI;

#/home/techplex/ece331/project2_temp_data_grapher/
$dbh = DBI->connect( "dbi:SQLite:tempdata.db" ) or die "Cannot connect: $DBI::errstr";

$dbh->do( "CREATE TABLE IF NOT EXISTS temperature (timestamp datetime, temperature float);" );
$dbh->do( "INSERT INTO temperature (timestamp, temperature) VALUES (datetime('now', 'localtime'), $temp);" );

$dbh->disconnect;

我已将此行添加到我的 crontab 中:

*/1 * * * * cd /home/techplex/temp_data_grapher; ./datalogger.pl
4

2 回答 2

2

您需要在 perl 脚本中指向 i2c 的完整路径:

$temp = `/full/path/to/i2cget -y 1 0x48 0x0`;
于 2013-04-28T03:06:30.560 回答
1

尝试分析 cron 环境与命令行:

从命令行:

set > command.lis

暂时将其添加到您的 crontab 中,得到结果后将其删除:

* * * * * set > /home/techplex/crontab.lis

(假设 /home/techplex 是一个目录并且存在。并且是您的主目录,请根据需要进行更改。)

现在你有两个文件。

diff crontab.lis command.lis

将向您展示您的环境中的不同之处。

于 2013-04-28T03:04:59.260 回答