Hi, how can I identify the Nano from the command line (or python)?
Currently I do:
with open('/sys/module/tegra_fuse/parameters/tegra_chip_id', 'r') as f:
board = f.readline().strip()
if board == "64":
self.data['model'] = 'TK1'
elif board == "33":
self.data['model'] = 'TX1'
elif board == "24":
self.data['model'] = 'TX2'
But the Nano identifies as chip id 33 (ie same as TX1).